/** Shopify CDN: Minification failed

Line 169:18 Unexpected "{"
Line 169:27 Expected ":"
Line 170:18 Unexpected "{"
Line 170:27 Expected ":"
Line 177:18 Unexpected "{"
Line 177:27 Expected ":"
Line 178:18 Unexpected "{"
Line 178:27 Expected ":"
Line 179:18 Unexpected "{"
Line 179:27 Expected ":"
... and 8 more hidden warnings

**/
.featured-collection--wrapper.stacked {
  display: grid;
  grid-template-columns: repeat(var(--column_count, 2), 1fr);
  align-items: flex-start;
  gap: 10px;
}
.section-featured-collection .section-wrapper {
  overflow: hidden;
}

@media (min-width: 768px) {
  .featured-collection--wrapper.carousel.column-count-5 .product--card {
    flex: 0 0 20%;
  }

  .featured-collection--wrapper.carousel.column-count-4 .product--card {
    flex: 0 0 25%;
  }

  .featured-collection--wrapper.carousel.column-count-3 .product--card {
    flex: 0 0 33.33%;
  }

  .featured-collection--wrapper.stacked {
    gap: var(--product_card_column_gap);
  }
  .section-featured-collection .section--header {
    padding-inline: calc(var(--product_card_column_gap) / 2);
  }
}

@media (max-width: 767px) {
    .featured-collection--outer{
        padding-right: 15px;
  }
  .featured-collection--wrapper.stacked.mobile-swipe {
    grid-auto-flow: column;
    grid-auto-columns: minmax(85%, 1fr);
    grid-template-columns: repeat(auto-fill, minmax(85%, 1fr));
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    gap: 10px;
  }
}


/* Full-width rectangular Add to Cart for featured collection cards */
.featured-collection--wrapper .product--card .product-form,
.featured-collection--wrapper .product--card [data-add-to-cart],
.featured-collection--wrapper .product--card .button[name="add"] {
  width: 100% !important;
  display: block !important;
  padding: 14px 20px !important;
  border-radius: 8px !important; 
  background: #EE285C !important; 
  color: white !important;
  border: none !important;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s ease;
}

.featured-collection--wrapper .product--card .product-form:hover {
  background:rgb(221, 37, 86) !important; 
}

/* Hide any icon-only version if present */
.featured-collection--wrapper .product--card .product--icon-only,
.featured-collection--wrapper .product--card [class*="icon-cart"]:not(.product-card-atc-inner) {
  display: none !important;
}





/* 3 SWATCHES PER ROW - FEATURED COLLECTION (NO HOVER) */
.featured-collection--wrapper .product-variations__swatches,
.featured-collection--wrapper .swatch-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  justify-content: flex-start !important;
  max-width: 260px; 
  pointer-events: auto;
}

.featured-collection--wrapper .product-variations__swatch {
  flex: 0 0 calc(25% - 4.5px) !important; /* Exactly 4 per row */
  max-width: calc(25% - 4.5px) !important;
  text-decoration: none !important;
}

.featured-collection--wrapper .product-variations__swatch-inner {
  width: 100% !important;
  height: 50px !important;
  max-width: 50px !important;
  border-radius: 50%;
  border: 2px solid #000000 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: none !important; /* Kill hover animations */
}

.featured-collection--wrapper .product-variations__swatch:hover .product-variations__swatch-inner,
.featured-collection--wrapper .product-variations__swatch-inner:hover {
  transform: none !important;
  scale: none !important;
  box-shadow: none !important;
}

.featured-collection--wrapper .product-variations__swatch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.featured-collection--wrapper .product-variations__swatch-label {
  margin-top: 4px;
  font-size: 10px !important;
  color: #000000 !important;
  text-transform: capitalize;
  text-align: center;
  pointer-events: none;
}

@media (max-width: 767px) {
  .featured-collection--wrapper .product-variations__swatches,
  .featured-collection--wrapper .swatch-list {
    max-width: 120px;
    gap: 4px !important;
  }
  
  .featured-collection--wrapper .product-variations__swatch {
    flex: 0 0 calc(33.33% - 2.66px) !important;
  }
  
  .featured-collection--wrapper .product-variations__swatch-inner {
    height: 30px !important;
    max-width: 30px !important;
  }
  
  .featured-collection--wrapper .product-variations__swatch-label {
    font-size: 9px !important;
  }
}


/* FORCE NO HOVER - BULLETPROOF OVERRIDE */
#shopify-section-{{ section.id }} .product-variations__swatch * ,
#shopify-section-{{ section.id }} .swatch-list * ,
.featured-collection--wrapper .product-variations__swatch *,
.featured-collection--wrapper .swatch-list * {
  transition: none !important;
  transform: none !important;
}

#shopify-section-{{ section.id }} .product-variations__swatch:hover,
#shopify-section-{{ section.id }} .product-variations__swatch:focus,
#shopify-section-{{ section.id }} .product-variations__swatch:active,
#shopify-section-{{ section.id }} .swatch-list li:hover,
.featured-collection--wrapper .product-variations__swatch:hover,
.featured-collection--wrapper .product-variations__swatch:focus,
.featured-collection--wrapper .product-variations__swatch:active,
.featured-collection--wrapper .swatch-list li:hover {
  transform: none !important;
  scale: 1 !important;
  box-shadow: none !important;
  background: transparent !important;
}

#shopify-section-{{ section.id }} .product-variations__swatch-inner:hover,
.featured-collection--wrapper .product-variations__swatch-inner:hover {
  border-color: #000 !important;
  box-shadow: 0 0 0 2px transparent !important;
}

/* Kill any JS hover classes */
#shopify-section-{{ section.id }} [class*="swatch"]:hover [class*="active"],
#shopify-section-{{ section.id }} [class*="swatch"].active,
.featured-collection--wrapper [class*="swatch"]:hover [class*="active"],
.featured-collection--wrapper [class*="swatch"].active {
  border-color: #000 !important;
  transform: none !important;
}


/* MOBILE FIX: 3 SWATCHES/ROW - FEATURED COLLECTION */
@media (max-width: 767px) {
  .featured-collection--wrapper .product-variations__swatches,
  .featured-collection--wrapper .swatch-list {
    max-width: 240px !important;
    gap: 4px !important;
    padding: 4px 0 !important;
  }
  
  .featured-collection--wrapper .product-variations__swatch,
  .featured-collection--wrapper .swatch-list li {
    flex: 0 0 calc(25% - 4.5px) !important; /* Exactly 4 per row */
  max-width: calc(25% - 4.5px) !important;
  }
  
  .featured-collection--wrapper .product-variations__swatch-inner,
  .featured-collection--wrapper .filter-swatch-swatch {
    width: 100% !important;
    height: 40px !important;
    max-width: 40px !important;
  }
  
  .featured-collection--wrapper .product-variations__swatch-label,
  .featured-collection--wrapper .swatch-list label span {
    font-size: 10px !important; /* Smaller text */
    margin-top: 2px !important;
    line-height: 1.1 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  /* Extra card padding for breathing room */
  .featured-collection--wrapper .product--card-detail {
    padding: 12px 8px !important;
  }
}
@media (max-width: 767px) {
  .section--btn {
    display: flex !important;
    justify-content: flex-start !important;
  }

  .section--btn a,
  .section--btn .button {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}
@media (max-width: 767px) {

  /* Mobile: bigger Add to Cart button in product cards */
  .product--card-detail-content .button,
  .product--card-detail-content [name="add"],
  .product--card-detail-content .product-form__submit {
    min-height: 48px !important;   /* taller button */
    padding: 14px 18px !important;
    font-size: 16px !important;    /* bigger text */
    line-height: 1.2 !important;
  }

  /* Ensure text is vertically centered */
  .product--card-detail-content .button span,
  .product--card-detail-content [name="add"] span {
    line-height: 1 !important;
  }

}
