/** Shopify CDN: Minification failed

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

**/


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