/** Shopify CDN: Minification failed

Line 91:0 Unexpected "{"
Line 91:1 Expected identifier but found "%"
Line 92:2 Unexpected "<"
Line 96:9 Unexpected "{"
Line 96:18 Expected ":"
Line 96:27 Unexpected "<"
Line 97:8 Unexpected "{"
Line 97:17 Expected ":"
Line 97:34 Unexpected "<"
Line 103:5 Expected identifier but found "%"
... and 4 more hidden warnings

**/
.featured-product .product__media-list {
  width: 100%;
  margin: 0;
  padding-bottom: 0;
}

.featured-product .product-media-container {
  margin-bottom: var(--media-shadow-vertical-offset);
  max-width: 100%;
}

.featured-product .product__media-item {
  padding-left: 0;
}

.featured-product .placeholder-svg {
  display: block;
  height: auto;
  width: 100%;
}

.background-secondary .featured-product {
  padding: 2.5rem;
}

.featured-product .share-button:nth-last-child(2) {
  display: inline-flex;
}

.share-button + .product__view-details {
  display: inline-flex;
  float: right;
  align-items: center;
  min-height: 4.4rem;
}

.share-button + .product__view-details::after {
  content: '';
  clear: both;
  display: table;
}

@media screen and (min-width: 750px) {
  .featured-product .product__media-item {
    padding-bottom: 0;
  }

  .background-secondary .featured-product {
    padding: 5rem;
  }

  .product--right .product__media-wrapper {
    order: 2;
  }
}

@media screen and (min-width: 990px) {
  .background-secondary .featured-product:not(.product--no-media) > .product__info-wrapper {
    padding: 0 0 0 5rem;
  }

  .background-secondary .featured-product:not(.product--no-media).product--right > .product__info-wrapper {
    padding: 0 5rem 0 0;
  }

  .featured-product:not(.product--no-media) > .product__info-wrapper {
    padding: 0 7rem;
  }

  .background-secondary .featured-product {
    padding: 6rem 7rem;
    position: relative;
    z-index: 1;
  }
}
{% for product in section.settings.products %}
  <div class="product-card">
    <a href="{{ product.url }}">
      <img src="{{ product.featured_image | img_url: 'medium' }}" alt="{{ product.title }}">
    </a>
    <h3>{{ product.title }}</h3>
    <p>{{ product.price | money }}</p>

    <!-- Buy Now button -->
    <a href="{{ product.url }}" class="btn btn--primary">Buy Now</a>

    <!-- Cash on Delivery button -->
    {% if shop.payment_gateways contains 'cash_on_delivery' %}
      <form method="post" action="/cart/add">
        <input type="hidden" name="id" value="{{ product.variants.first.id }}">
        <button type="submit" class="btn btn--secondary">Cash on Delivery</button>
      </form>
    {% endif %}
  </div>
{% endfor %}