/** Shopify CDN: Minification failed

Line 20:24 Unexpected "{"
Line 20:33 Expected ":"
Line 20:40 Unexpected "{"
Line 26:24 Unexpected "{"
Line 26:33 Expected ":"
Line 34:24 Unexpected "{"
Line 34:33 Expected ":"
Line 41:24 Unexpected "{"
Line 41:33 Expected ":"
Line 50:24 Unexpected "{"
... and 33 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Section spacing */
#featured-two-products-{{ section.id }} {
  margin: 40px auto;
  padding: 0;
}

/* Titre */
#featured-two-products-{{ section.id }} .featured-two-products-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

/* --- Desktop --- */
#featured-two-products-{{ section.id }} .ftp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* Cartes produit */
#featured-two-products-{{ section.id }} .featured-product-card {
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 20px;
  border-radius: 12px;
  transition: box-shadow .2s ease, transform .2s ease;
  background: transparent;
}

#featured-two-products-{{ section.id }} .featured-product-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Contenu */
#featured-two-products-{{ section.id }} .featured-product-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}

#featured-two-products-{{ section.id }} .featured-product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 4px;
}

#featured-two-products-{{ section.id }} .featured-product-title a {
  color: inherit;
  text-decoration: none;
}

#featured-two-products-{{ section.id }} .featured-product-price {
  font-size: 16px;
  margin-bottom: 10px;
}

#featured-two-products-{{ section.id }} .price-now { font-weight: 700; }
#featured-two-products-{{ section.id }} .price-compare {
  margin-left: 8px;
  text-decoration: line-through;
  opacity: 0.6;
}

#featured-two-products-{{ section.id }} .featured-product-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 14px;
}

/* Boutons */
#featured-two-products-{{ section.id }} .btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

#featured-two-products-{{ section.id }} .btn.add-to-cart {
  background-color: #B778C5;
  color: #fff;
}

#featured-two-products-{{ section.id }} .btn.add-to-cart:hover {
  background-color: #9A5FA5;
}

#featured-two-products-{{ section.id }} .btn.choose-options {
  background: #111;
  color: #fff;
}

#featured-two-products-{{ section.id }} .btn.sold-out {
  background: #ddd;
  color: #777;
  cursor: not-allowed;
}

/* --- Mobile : carrousel horizontal --- */
@media (max-width: 749px) {
  #featured-two-products-{{ section.id }} .ftp-grid {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    padding-bottom: 8px;
  }

  #featured-two-products-{{ section.id }} .featured-product-card {
    display: inline-block;
    vertical-align: top;
    width: 82%;
    margin-right: 14px;
    white-space: normal;
    scroll-snap-align: start;
  }

  #featured-two-products-{{ section.id }} .featured-product-card:first-child {
    margin-left: 4px;
  }
  #featured-two-products-{{ section.id }} .featured-product-card:last-child {
    margin-right: 8px;
  }
}