/** Shopify CDN: Minification failed

Line 592:1 Unexpected "{"
Line 592:2 Expected identifier but found "%"
Line 592:37 Expected identifier but found "%"
Line 593:0 Unexpected "<"
Line 594:3 Expected identifier but found "%"
Line 595:4 Unexpected "{"
Line 595:5 Expected identifier but found "%"
Line 596:6 Unexpected "{"
Line 596:7 Expected identifier but found "%"
Line 597:4 Unexpected "{"
... and 4 more hidden warnings

**/
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 80px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 16px 40px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s ease;
  border-radius: var(--border-radius);
}
.btn-primary {
  background: var(--color-text); color: #fff;
}
.btn-primary:hover { background: var(--color-accent); }
.btn-outline {
  background: transparent; color: var(--color-text);
  border: 1px solid var(--color-text);
}
.btn-outline:hover { background: var(--color-text); color: #fff; }

/* ===== ROUNDED IMAGES ===== */
.rounded-img { border-radius: var(--border-radius); overflow: hidden; }
.rounded-img img { border-radius: var(--border-radius); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--color-text); color: #fff;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  overflow: hidden; height: 40px; display: flex; align-items: center;
}
.announcement-bar__track {
  display: flex; white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.announcement-bar__item {
  padding: 0 40px; flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 16px 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.header-nav { display: flex; gap: 32px; list-style: none; }
.header-nav a {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 500; transition: color 0.3s;
}
.header-nav a:hover { color: var(--color-primary); }
.header-logo { font-family: var(--font-heading); font-size: 24px; letter-spacing: 4px; text-transform: uppercase; }
.header-icons { display: flex; gap: 16px; align-items: center; }
.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text); margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: block; }
}

/* ===== HERO ===== */
.hero-section {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  border-radius: var(--border-radius);
  margin: 8px;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--border-radius); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.3) 60%, transparent 100%);
  border-radius: var(--border-radius); margin: 8px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 550px; padding: 60px 80px;
}
.hero-badge {
  display: inline-block; background: var(--color-secondary);
  padding: 6px 16px; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; border-radius: 20px; margin-bottom: 16px;
}
.hero-rating { font-size: 14px; color: var(--color-accent); margin-bottom: 16px; }
.hero-rating .stars { color: #d4a843; }
.hero-title { font-size: 48px; margin-bottom: 8px; color: var(--color-text); }
.hero-title em { font-style: italic; color: var(--color-primary); }
.hero-subtitle { font-size: 16px; color: #666; margin-bottom: 32px; line-height: 1.7; }
.hero-badges { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero-badges span {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; background: rgba(255,255,255,0.8);
  padding: 8px 16px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .hero-content { padding: 40px 24px; }
  .hero-title { font-size: 32px; }
  .hero-overlay { background: rgba(255,255,255,0.8); }
}

/* ===== LOGO MARQUEE ===== */
.logo-marquee { padding: 40px 0; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
.logo-marquee__track {
  display: flex; align-items: center; gap: 60px;
  animation: marquee 25s linear infinite;
}
.logo-marquee__item { flex-shrink: 0; opacity: 0.4; transition: opacity 0.3s; }
.logo-marquee__item:hover { opacity: 0.8; }
.logo-marquee__item img { height: 28px; width: auto; filter: grayscale(100%); }

/* ===== PRODUCT GRID ===== */
.product-grid-section { background: var(--color-secondary); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 8px;
}
.section-title { font-size: 40px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: #fff; border-radius: var(--border-radius); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.product-card__image { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: var(--border-radius); }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__badge {
  position: absolute; top: 12px; left: 12px; background: var(--color-text);
  color: #fff; font-size: 10px; padding: 4px 12px; border-radius: 12px;
  letter-spacing: 1px; text-transform: uppercase;
}
.product-card__body { padding: 20px; text-align: center; }
.product-card__title { font-family: var(--font-body); font-size: 14px; margin-bottom: 8px; }
.product-card__price { font-size: 16px; font-weight: 500; }

@media (max-width: 768px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ===== INFLUENCER SECTION ===== */
.influencer-section { overflow: hidden; }
.influencer-track {
  display: flex; gap: 20px;
  animation: marquee 40s linear infinite;
}
.influencer-card { flex-shrink: 0; width: 160px; text-align: center; }
.influencer-card__img {
  width: 140px; height: 140px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 12px; border: 3px solid var(--color-secondary);
}
.influencer-card__img img { width: 100%; height: 100%; object-fit: cover; }
.influencer-card__name { font-size: 13px; color: var(--color-accent); }

/* ===== COMPARISON TABLE ===== */
.comparison-section { background: var(--color-secondary); }
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: 900px; margin: 0 auto;
}
.comparison-card {
  background: #fff; border-radius: var(--border-radius); overflow: hidden;
  padding: 40px; position: relative;
}
.comparison-card--winner {
  border: 2px solid var(--color-primary);
  box-shadow: 0 8px 30px rgba(201,168,124,0.15);
}
.comparison-card__image { border-radius: var(--border-radius); overflow: hidden; margin-bottom: 24px; aspect-ratio: 16/10; }
.comparison-card__image img { width: 100%; height: 100%; object-fit: cover; }
.comparison-card__label {
  display: inline-block; font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 12px;
  margin-bottom: 16px;
}
.comparison-card__label--cotton { background: #eee; }
.comparison-card__label--silk { background: var(--color-primary); color: #fff; }
.comparison-card__title { font-size: 22px; margin-bottom: 8px; }
.comparison-card__subtitle { font-size: 12px; color: #999; margin-bottom: 20px; }
.comparison-list { list-style: none; }
.comparison-list li {
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px; display: flex; align-items: flex-start; gap: 10px;
}
.comparison-list .icon-x { color: #d44; }
.comparison-list .icon-check { color: #4a8; }

@media (max-width: 768px) { .comparison-grid { grid-template-columns: 1fr; } }

/* ===== COMMITMENTS ===== */
.commitments-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.commitment-card {
  text-align: center; padding: 40px 24px;
  background: var(--color-secondary); border-radius: var(--border-radius);
  transition: transform 0.3s;
}
.commitment-card:hover { transform: translateY(-4px); }
.commitment-card__icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: var(--border-radius); overflow: hidden;
}
.commitment-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.commitment-card__title { font-size: 18px; margin-bottom: 8px; }
.commitment-card__text { font-size: 13px; color: #888; line-height: 1.6; }
.commitment-card__badge {
  display: inline-block; margin-top: 12px; font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--color-accent);
}

@media (max-width: 768px) { .commitments-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== PRODUCT SHOWCASE ===== */
.showcase-section { background: var(--color-secondary); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.showcase-gallery__main {
  border-radius: var(--border-radius); overflow: hidden;
  aspect-ratio: 1; margin-bottom: 16px;
}
.showcase-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.showcase-gallery__thumbs { display: flex; gap: 8px; }
.showcase-gallery__thumb {
  width: 60px; height: 60px; border-radius: calc(var(--border-radius) / 2);
  overflow: hidden; cursor: pointer; opacity: 0.6; transition: opacity 0.3s;
  border: 2px solid transparent;
}
.showcase-gallery__thumb.active, .showcase-gallery__thumb:hover { opacity: 1; border-color: var(--color-primary); }
.showcase-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.showcase-info__eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 8px; }
.showcase-info__rating { font-size: 14px; margin-bottom: 16px; color: #666; }
.showcase-info__title { font-size: 36px; margin-bottom: 16px; }
.showcase-info__desc { font-size: 15px; color: #666; margin-bottom: 32px; line-height: 1.7; }

/* Animated counters */
.stats-row { display: flex; gap: 32px; margin-bottom: 40px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading); font-size: 48px; color: var(--color-primary);
  line-height: 1;
}
.stat-label { font-size: 12px; color: #888; margin-top: 4px; }

/* Quantity selector */
.quantity-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.quantity-option {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  border: 1px solid rgba(0,0,0,0.1); border-radius: var(--border-radius);
  cursor: pointer; transition: border-color 0.3s, box-shadow 0.3s;
}
.quantity-option:hover, .quantity-option.active {
  border-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(201,168,124,0.15);
}
.quantity-option__badge {
  font-size: 10px; padding: 3px 10px; border-radius: 10px;
  background: var(--color-primary); color: #fff; letter-spacing: 0.5px;
}
.quantity-option__img { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; }
.quantity-option__img img { width: 100%; height: 100%; object-fit: cover; }
.quantity-option__label { font-size: 14px; font-weight: 500; }
.quantity-option__price { margin-left: auto; text-align: right; }
.quantity-option__price .current { font-size: 16px; font-weight: 500; }
.quantity-option__price .original { font-size: 13px; color: #999; text-decoration: line-through; }
.quantity-option__price .save { font-size: 11px; color: #4a8; font-weight: 500; }

.trust-badges { display: flex; gap: 20px; margin-top: 20px; }
.trust-badge { font-size: 12px; color: #888; display: flex; align-items: center; gap: 6px; }

@media (max-width: 768px) { .showcase-grid { grid-template-columns: 1fr; } }

/* ===== REVIEWS ===== */
.reviews-section { overflow: hidden; }
.reviews-track {
  display: flex; gap: 24px;
  animation: marquee 50s linear infinite;
}
.review-card {
  flex-shrink: 0; width: 350px; background: var(--color-secondary);
  border-radius: var(--border-radius); padding: 32px; overflow: hidden;
}
.review-card__photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--border-radius); overflow: hidden; margin-bottom: 20px; }
.review-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.review-card__title { font-size: 18px; font-family: var(--font-heading); margin-bottom: 12px; }
.review-card__text { font-size: 13px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500;
}
.review-card__name { font-size: 13px; font-weight: 500; }
.review-card__meta { font-size: 11px; color: #999; }
.review-card__verified { color: #4a8; font-size: 11px; }

/* ===== STORY SECTION ===== */
.story-section {}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-image { border-radius: var(--border-radius); overflow: hidden; aspect-ratio: 3/4; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 8px; }
.story-title { font-size: 40px; margin-bottom: 16px; }
.story-divider { width: 60px; height: 1px; background: var(--color-primary); margin-bottom: 24px; }
.story-text { font-size: 15px; color: #666; line-height: 1.8; margin-bottom: 32px; }
.story-stats { display: flex; gap: 40px; margin-bottom: 32px; }
.story-stat__number {
  font-family: var(--font-heading); font-size: 40px; color: var(--color-primary);
}
.story-stat__label { font-size: 12px; color: #888; }

@media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-section { background: var(--color-secondary); }
.faq-container { max-width: 700px; margin: 0 auto; }
.faq-divider { width: 60px; height: 1px; background: var(--color-primary); margin: 0 auto 40px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--color-text); text-align: left;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon { font-size: 20px; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 20px; font-size: 14px; color: #666; line-height: 1.7; }

/* ===== NEWSLETTER POPUP ===== */
.newsletter-popup {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.5); display: none;
  align-items: center; justify-content: center;
}
.newsletter-popup.active { display: flex; }
.newsletter-popup__inner {
  background: #fff; border-radius: var(--border-radius);
  padding: 48px; max-width: 450px; width: 90%; text-align: center;
  position: relative;
}
.newsletter-popup__close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; font-size: 24px; cursor: pointer; color: #999;
}
.newsletter-popup__title { font-size: 28px; margin-bottom: 8px; }
.newsletter-popup__text { font-size: 14px; color: #666; margin-bottom: 24px; }
.newsletter-popup__form { display: flex; gap: 8px; }
.newsletter-popup__input {
  flex: 1; padding: 14px 18px; border: 1px solid #ddd;
  border-radius: var(--border-radius); font-size: 14px; font-family: var(--font-body);
}
.newsletter-popup__btn {
  padding: 14px 24px; background: var(--color-text); color: #fff;
  border: none; border-radius: var(--border-radius); cursor: pointer;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-text); color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--font-heading); font-size: 20px; color: #fff; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.footer-desc { font-size: 13px; line-height: 1.7; }
.footer-heading { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; transition: color 0.3s; }
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; font-size: 12px; text-align: center; }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===== SCROLLING PROMO IMAGES ===== */
.promo-scroll { overflow: hidden; padding: 40px 0; }
.promo-scroll__track {
  display: flex; gap: 16px;
  animation: marquee 35s linear infinite;
}
.promo-scroll__item {
  flex-shrink: 0; width: 280px; aspect-ratio: 3/4;
  border-radius: var(--border-radius); overflow: hidden;
}
.promo-scroll__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.promo-scroll__item:hover img { transform: scale(1.05); }

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity var(--animation-duration) ease, transform var(--animation-duration) ease;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}
.animate-delay-1 { transition-delay: 100ms; }
.animate-delay-2 { transition-delay: 200ms; }
.animate-delay-3 { transition-delay: 300ms; }
.animate-delay-4 { transition-delay: 400ms; }

/* ===== COOKIE BAR ===== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; padding: 20px; z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center; gap: 20px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar__text { font-size: 13px; color: #666; }
.cookie-bar__btn {
  padding: 10px 24px; background: var(--color-text); color: #fff;
  border: none; border-radius: var(--border-radius); cursor: pointer;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
}

/* ===== CART DRAWER ===== */
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 90vw; background: #fff; z-index: 200;
  transform: translateX(100%); transition: transform 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 199; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer__header {
  padding: 24px; border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-drawer__title { font-size: 16px; font-weight: 500; }
.cart-drawer__close { background: none; border: none; font-size: 24px; cursor: pointer; }
.cart-drawer__body { flex: 1; padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.cart-drawer__empty { text-align: center; color: #999; font-size: 14px; }

/* ===== STAT CIRCLES — small, thin, loading-spinner style ===== */
.stats-circles { display: flex; gap: 24px; margin: 24px 0; flex-wrap: wrap; }
.stat-circle-item { text-align: center; flex: 0 0 auto; }
.stat-circle { position: relative; width: 56px; height: 56px; margin: 0 auto 8px; }
.stat-circle__svg { width: 56px; height: 56px; transform: rotate(-90deg); }
.stat-circle__bg { fill: none; stroke: rgba(0,0,0,0.08); stroke-width: 2.5; }
.stat-circle__progress { fill: none; stroke-width: 2.5; stroke-linecap: round; transition: stroke-dashoffset 0.1s; }
.stat-circle__value { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; }
.stat-circle__label { font-size: 11px; color: #888; max-width: 100px; line-height: 1.3; }

/* ===== NEWSLETTER POPUP — mobile fix ===== */
@media (max-width: 480px) {
  .newsletter-popup__inner { padding: 32px 20px; width: 94%; }
  .newsletter-popup__form { flex-direction: column; }
  .newsletter-popup__input { width: 100%; }
  .newsletter-popup__btn { width: 100%; padding: 14px; text-align: center; white-space: nowrap; }
}

/* ===== BEFORE / AFTER ===== */
.before-after__container { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: col-resize; user-select: none; }
.before-after__before, .before-after__after { position: absolute; inset: 0; }
.before-after__before { z-index: 2; clip-path: inset(0 50% 0 0); }
.before-after__before img, .before-after__after img { width: 100%; height: 100%; object-fit: cover; }
.before-after__label { position: absolute; bottom: 16px; padding: 6px 16px; background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; border-radius: 20px; }
.before-after__label--before { left: 16px; }
.before-after__label--after { right: 16px; }
.before-after__slider { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff; z-index: 3; transform: translateX(-50%); cursor: col-resize; }
.before-after__handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 40px; height: 40px; background: rgba(255,255,255,0.95); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0,0,0,0.2); }

/* ===== SLIDESHOW ===== */
.slideshow__track { position: relative; aspect-ratio: 16/9; }
.slideshow__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; }
.slideshow__slide.active { opacity: 1; z-index: 1; }
.slideshow__slide img { width: 100%; height: 100%; object-fit: cover; }
.slideshow__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%); display: flex; align-items: flex-end; }
.slideshow__content { padding: 40px; }
.slideshow__btn { position: absolute; top: 50%; z-index: 5; transform: translateY(-50%); width: 44px; height: 44px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; font-size: 22px; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: background 0.3s; }
.slideshow__btn:hover { background: #fff; }
.slideshow__btn--prev { left: 16px; }
.slideshow__btn--next { right: 16px; }
.slideshow__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.slideshow__dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; transition: background 0.3s; }
.slideshow__dot.active { background: #fff; }

/* ===== COUNTDOWN ===== */
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.countdown-unit { text-align: center; }
.countdown-number { display: block; font-size: 48px; font-weight: 700; line-height: 1; letter-spacing: -1px; }
.countdown-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; margin-top: 4px; }
.countdown-sep { font-size: 36px; font-weight: 300; opacity: 0.4; margin-top: -12px; }
@media (max-width: 480px) { .countdown-number { font-size: 32px; } .countdown-sep { font-size: 24px; } }

/* ===== INSTAGRAM GRID ===== */
.instagram-grid { display: grid; gap: 16px; }
.instagram-item { position: relative; overflow: hidden; aspect-ratio: 1; display: block; }
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.instagram-item:hover img { transform: scale(1.08); }
.instagram-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; display: flex; align-items: center; justify-content: center; }
.instagram-item:hover .instagram-item__overlay { opacity: 1; }
@media (max-width: 768px) { .instagram-grid { grid-template-columns: repeat(2,1fr) !important; } }

/* ===== ICON GRID ===== */
.icon-grid { display: grid; gap: 24px; }
.icon-card { transition: transform 0.3s; }
.icon-card:hover { transform: translateY(-4px); }
@media (max-width: 768px) { .icon-grid { grid-template-columns: repeat(2,1fr) !important; } }

/* ===== TEXT WITH IMAGE ===== */
.twi-grid { display: flex; gap: 60px; align-items: center; }
.twi-image { flex: 1; }
.twi-image img { width: 100%; height: auto; }
.twi-content { flex: 1; }
@media (max-width: 768px) { .twi-grid { flex-direction: column !important; } }

/* ===== FEATURED PROMOTION ===== */
.featured-promo { position: relative; min-height: 350px; display: flex; align-items: center; justify-content: center; }
.featured-promo__overlay { position: absolute; inset: 0; }
@media (max-width: 768px) { .featured-promo__content { padding: 40px 24px !important; } }
/* ===== IMAGE TEXT REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ===== HERO V2 ===== */
[data-hero] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

[data-hero].loaded {
  opacity: 1;
  transform: translateY(0);
}

/* background parallax */
[data-hero-bg] {
  transition: transform 0.2s linear;
  will-change: transform;
  
}{% comment %} Conteneur des badges {% endcomment %}
<div class="hero__badges" style="display: flex; flex-wrap: wrap; gap: 12px; align-items: center;">
  {% for block in section.blocks %}
    {% if block.type == 'badge' %}
      {% render 'badge-block', block: block %}
    {% endif %}
  {% endfor %}
</div>
