/* ============================================
   THAJVI ATTIRE — Premium Stylesheet
   Brand Palette — Black & Gold Luxury:
     --primary:    #C9A84C  (rich gold — primary)
     --gold:       #D4A44C  (warm gold — accent)
     --black:      #0A0A0A  (deep black — base)
     --charcoal:   #F5F0E6  (warm white — text on dark)
   ============================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern' 1, 'liga' 1;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Gold Primary */
  --teal:        #C9A84C;
  --teal-mid:    #D4B55A;
  --teal-dark:   #0A0A0A;
  --teal-light:  #1A1A1A;
  --teal-pale:   #111111;

  /* Gold Accent */
  --gold:        #C9A84C;
  --gold-light:  #E8D5A0;
  --gold-dark:   #A8882E;

  /* Warm Accent */
  --red-accent:  #C9A84C;
  --red-light:   #2A2218;

  /* Neutrals — Dark base */
  --ivory:       #0A0A0A;
  --white:       #141414;
  --charcoal:    #F5F0E6;
  --text:        #E8E0D0;
  --muted:       #9A9080;
  --border:      #2A2520;
  --blush:       #111111;

  /* Functional */
  --green:       #25d366;
  --green-dark:  #1ebe5b;
  --pink:        #e1306c;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md:   0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg:   0 20px 60px rgba(0, 0, 0, 0.5);

  /* Type Scale */
  --text-2xs:    0.68rem;  /* 10.9px — badges only */
  --text-xs:     0.75rem;  /* 12px   — labels, captions */
  --text-sm:     0.85rem;  /* 13.6px — card text, small UI */
  --text-base:   1rem;     /* 16px   — body copy */
  --text-lg:     1.1rem;   /* 17.6px — card headings */
  --text-xl:     1.4rem;   /* 22.4px — prices */

  /* Spacing scale (8px base) */
  --space-section: clamp(80px, 12vw, 160px);

  /* Shape */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s var(--ease);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #000000;
  color: var(--gold);
  text-align: center;
  padding: 10px 48px 10px 24px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: max-height 0.3s, padding 0.3s, opacity 0.3s;
  overflow: hidden;
}
.announcement-bar.dismissed {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.announcement-text { margin: 0; }
.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.announcement-close:hover { opacity: 1; }

/* Countdown timer in announcement bar */
.countdown-timer { white-space: nowrap; }
.cd-digits { display: inline; }
.cd-unit { letter-spacing: 0.5px; }
.cd-unit b { font-weight: 700; font-size: 1.05em; }

.has-announcement { --nav-offset: 110px; }
.has-announcement .navbar { top: 38px; }
.has-announcement .hero { padding-top: 38px; }



/* ===== UTILITIES ===== */
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 8px;
  text-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.8s var(--ease);
}
.revealed .section-label::after,
.section-header.revealed .section-label::after {
  width: 100%;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 16px;
}

h2 em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 52px;
}

.section-header { text-align: center; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

/* Button shine sweep on hover */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: none;
  pointer-events: none;
}
.btn:hover::after {
  left: 120%;
  transition: left 0.6s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: #0A0A0A;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn-gold:active { transform: translateY(0) scale(0.97); }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}
.btn-ghost:active { transform: translateY(0) scale(0.97); }

.btn-teal {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-teal:hover {
  background: var(--gold);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}
.btn-teal:active { transform: translateY(0) scale(0.97); }

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}
.btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:active { transform: translateY(0) scale(0.97); }

.btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  width: 100%;
  justify-content: center;
  font-size: 0.9rem;
}
.btn-insta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225,48,108,0.35);
}
.btn-insta:active { transform: translateY(0) scale(0.97); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(201,168,76,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 1px;
  color: var(--gold);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.navbar:not(.scrolled) .logo-main { color: var(--gold-light); text-shadow: 0 2px 8px rgba(0,0,0,0.5); }
.navbar:not(.scrolled) .logo-sub  { color: rgba(201,168,76,0.7); }

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: none;
  color: var(--gold);
  margin-top: -2px;
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  transition: color 0.2s;
}

.navbar:not(.scrolled) .nav-links a { color: rgba(232,213,160,0.85); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--gold); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.navbar:not(.scrolled) .nav-links a.nav-active { color: var(--gold); }

.nav-insta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-insta {
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.08);
}
.nav-insta:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar:not(.scrolled) .hamburger span { background: var(--gold-light); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000000;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(201,168,76,0.03) 80px, rgba(201,168,76,0.03) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(201,168,76,0.02) 80px, rgba(201,168,76,0.02) 81px);
}

/* Elegant gold top border */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 3;
}

/* Decorative gold circle */
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

/* Hero background image (like Sanav reference) */
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.7;
  filter: brightness(0.7);
  transition: opacity 1s ease;
}
@media (max-width: 768px) {
  .hero-bg-image img {
    object-position: center 20%;
  }
}
/* Dark overlay for text readability */
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.5) 100%),
    linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 50%);
}

/* When no image, show an elegant gradient pattern */
.hero-bg-image:empty {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.04) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 120px;
  max-width: 760px;
}

/* Hero entrance cascade */
.hero-eyebrow,
.hero h1,
.hero-sub,
.hero-buttons,
.hero-social-proof {
  opacity: 0;
  transform: translateY(24px);
  animation: heroEntrance 0.8s var(--ease) forwards;
}
.hero-eyebrow     { animation-delay: 0.2s; }
.hero h1          { animation-delay: 0.4s; }
.hero-sub         { animation-delay: 0.6s; }
.hero-buttons     { animation-delay: 0.8s; }
.hero-social-proof { animation-delay: 1.0s; }

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 2px 30px rgba(201,168,76,0.3);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
}
.proof-avatars {
  display: flex;
}
.proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  border: 2px solid rgba(201,168,76,0.4);
  margin-left: -8px;
}
.proof-avatar:first-child { margin-left: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* ===== MARQUEE (gold stripe) ===== */
.marquee-strip {
  background: #000000;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 22px;
}
.marquee-track .dot {
  color: var(--gold);
  padding: 0 4px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--space-section) 0;
  background: #0E0E0E;
  position: relative;
}

/* Gold line at top of about section */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; order: 1; }

.about-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 600px;
}

.img-placeholder {
  width: 100%;
  min-height: 460px;
  background: linear-gradient(135deg, #1A1A1A, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  border: 1px dashed rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
}
.about-img-box img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-tag-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: #0A0A0A;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.tag-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.tag-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 4px;
  opacity: 0.85;
}

.about-text p { color: var(--muted); margin-bottom: 16px; font-size: 1rem; }

.about-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}
.trust-icon { color: var(--gold); font-size: 0.7rem; }

/* ===== COLLECTIONS ===== */
.collections {
  padding: var(--space-section) 0;
  background: var(--teal-pale);
}

.saree-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.saree-card {
  background: #141414;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.saree-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}

.card-img-wrap { position: relative; overflow: hidden; display: block; }

.card-img-placeholder {
  aspect-ratio: 3/4;
  min-height: 300px;
  background: linear-gradient(145deg, #1A1A1A, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  border-bottom: 1px dashed rgba(201,168,76,0.15);
}
.card-img-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.saree-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.card-badge.new { background: var(--gold-light); color: #0A0A0A; }

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.saree-card:hover .card-hover-overlay { opacity: 1; }

.overlay-btn {
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  transform: translateY(8px);
  transition: var(--transition);
}
.saree-card:hover .overlay-btn { transform: translateY(0); }
.overlay-btn:hover { background: var(--gold-light); color: #0A0A0A; }

.card-info { padding: 24px 20px 20px; border-top: 1px solid rgba(201,168,76,0.1); }
.card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.card-info p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
.card-sizes {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--gold);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.whatsapp-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.collections-cta {
  text-align: center;
  margin-top: 52px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.collections-cta p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

/* ===== FEATURES STRIP ===== */
.features {
  padding: 70px 0;
  background: #000000;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item { text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.feature-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--space-section) 0;
  background: #0E0E0E;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.testimonial-card {
  background: #141414;
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-sm);
  border: 1px solid rgba(201,168,76,0.3);
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ===== REVIEW FORM ===== */
.review-section {
  padding: 90px 0;
  background: #0A0A0A;
}

.review-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.review-sub {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.75;
  margin-top: 8px;
}

/* Star rating */
.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating .star {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--border);
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}

.star-rating .star.active,
.star-rating .star.hover {
  color: var(--gold);
}

.star-rating .star:hover {
  transform: scale(1.15);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 28px 0;
  background: #000000;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-light);
}

.trust-signal-icon {
  font-size: 1.2rem;
}

/* ===== INSTAGRAM CTA ===== */
.insta-cta {
  padding: 100px 0;
  background: #0E0E0E;
}

.insta-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.insta-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.insta-post-placeholder {
  aspect-ratio: 1;
  background: #1A1A1A;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(201,168,76,0.15);
  transition: var(--transition);
}
.insta-post-placeholder:hover { background: #222; }

/* ===== CONTACT ===== */
.contact {
  padding: var(--space-section) 0;
  background: #0A0A0A;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group textarea {
  padding: 13px 16px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #1A1A1A;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: #141414;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.contact-card-icon { font-size: 1.6rem; margin-bottom: 10px; display: flex; align-items: center; }
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; }

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  color: rgba(232,213,160,0.7);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  line-height: 1;
}
.footer-logo .logo-main {
  font-family: 'Great Vibes', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white);
}
.footer-logo .logo-sub {
  font-size: 0.6rem;
  letter-spacing: 6px;
  color: var(--gold-light);
  margin-top: 4px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.social-pill.instagram {
  background: rgba(225,48,108,0.1);
  color: #f0a0c0;
  border: 1px solid rgba(225,48,108,0.2);
}
.social-pill.instagram:hover { background: rgba(225,48,108,0.2); }
.social-pill.whatsapp {
  background: rgba(37,211,102,0.08);
  color: #80e8a8;
  border: 1px solid rgba(37,211,102,0.15);
}
.social-pill.whatsapp:hover { background: rgba(37,211,102,0.18); }

.footer-links { display: flex; flex-direction: column; }
.footer-links h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: var(--green);
  color: var(--white);
  height: 56px;
  padding: 0 20px 0 16px;
  border-radius: 50px;
  animation: waPulse 3s ease-in-out 5s infinite;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waPulse {
  0%, 85%, 100% { transform: scale(1); }
  90% { transform: scale(1.08); }
  95% { transform: scale(1); }
}

.float-label {
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: #141414;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}
.back-to-top:active { transform: scale(0.93); }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--gold);
  color: #0A0A0A;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ===== FOCUS-VISIBLE ===== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.25);
}

.btn-ghost:focus-visible {
  outline-color: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.whatsapp-btn:focus-visible,
.social-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.saree-card:focus-within {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* ===== CARD TAGS ===== */
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.card-tag {
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.15);
}

/* ===== CARD STOCK URGENCY ===== */
.card-stock {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--red-accent);
  margin-top: 4px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-stock::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-accent);
  animation: stockPulse 1.5s ease-in-out infinite;
}
@keyframes stockPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ===== CARD FULL-WIDTH CTA ===== */
.card-wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  background: var(--green);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.card-wa-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.card-wa-cta:active { transform: scale(0.98); }

/* ===== CARD REPLY TIME ===== */
.card-reply-time {
  font-size: var(--text-2xs);
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.card-reply-time::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 90px 0;
  background: #0E0E0E;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 52px;
}

.step-item {
  text-align: center;
  flex: 1;
  max-width: 300px;
  padding: 0 24px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: #0A0A0A;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.step-item p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin-top: 26px;
  flex-shrink: 0;
}

/* ===== TESTIMONIAL QUOTE MARKS ===== */
.testimonial-card {
  position: relative;
  border: 1px solid rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.2;
  pointer-events: none;
}

/* ===== SKELETON LOADING ===== */
.skeleton-card {
  background: #141414;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.1);
}

.skeleton-img {
  aspect-ratio: 3/4;
  background: linear-gradient(90deg, var(--teal-light) 25%, var(--border) 50%, var(--teal-light) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}

.skeleton-line {
  height: 14px;
  margin: 14px 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--teal-light) 25%, var(--border) 50%, var(--teal-light) 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}
.skeleton-line.w80 { width: 80%; }
.skeleton-line.w60 { width: 60%; }
.skeleton-line.w40 { width: 40%; margin-bottom: 20px; }

@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== SCROLL REVEAL ===== */
.reveal-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Reveal from left (about text) */
.reveal-left {
  transform: translateX(-30px);
}

/* Reveal from right (about image) */
.reveal-right {
  transform: translateX(30px);
}

/* Reveal with slight scale (cards, images) */
.reveal-scale {
  transform: scale(0.96);
}

/* Stagger children */
.testimonial-card.reveal-target:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card.reveal-target:nth-child(3) { transition-delay: 0.2s; }
.step-item.reveal-target:nth-child(1) { transition-delay: 0s; }
.step-item.reveal-target:nth-child(3) { transition-delay: 0.1s; }
.step-item.reveal-target:nth-child(5) { transition-delay: 0.2s; }
.feature-item.reveal-target:nth-child(2) { transition-delay: 0.08s; }
.feature-item.reveal-target:nth-child(3) { transition-delay: 0.16s; }
.feature-item.reveal-target:nth-child(4) { transition-delay: 0.24s; }

/* ===== SECTION DIVIDERS (Kathakali-inspired) ===== */
.section-divider {
  text-align: center;
  padding: 0;
  line-height: 0;
}
.section-divider::before {
  content: '✦';
  display: inline-block;
  color: var(--gold);
  font-size: 0.7rem;
  position: relative;
  padding: 0 20px;
  background: #0A0A0A;
}

/* Decorative accent on testimonials */
.testimonials::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  margin: 0 auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

/* Gold line on footer top */
.footer {
  border-top: 1px solid rgba(201,168,76,0.3);
}

/* ===== MOBILE STICKY WHATSAPP BAR ===== */
.mobile-wa-bar {
  display: none;
}

/* ===== FEATURE ICON SVG STYLING ===== */
.feature-icon svg {
  stroke: var(--gold-light);
}

/* ===== CONTACT CARD ICON SVG ===== */
.contact-card-icon svg {
  stroke: var(--gold);
}

/* ===== TRUST SIGNAL ICON SVG ===== */
.trust-signal-icon {
  display: flex;
  align-items: center;
}
.trust-signal-icon svg {
  stroke: var(--gold);
}

/* ===== WILL-CHANGE OPTIMIZATION ===== */
.saree-card { will-change: transform; }
.card-img-wrap img { will-change: transform; }
.card-hover-overlay { will-change: opacity; }
.marquee-track { will-change: transform; }

/* ===== PREFERS-REDUCED-MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .scroll-line { animation: none; opacity: 0.5; }
  .saree-card:hover { transform: none; }
  .btn:hover { transform: none; }
  .btn:active { transform: none; }
  .whatsapp-float:hover { transform: none; }
  .reveal-target { opacity: 1; transform: none; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-buttons, .hero-social-proof {
    opacity: 1; transform: none; animation: none;
  }
  .btn::after { display: none; }
  .section-label::after { width: 100%; }
  .card-stock::before { animation: none; }
  .skeleton-img, .skeleton-line { animation: none; }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: 0; }
  .about-tag-card { bottom: -16px; right: 16px; }
  .saree-grid { grid-template-columns: repeat(2,1fr); }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .steps-grid { gap: 16px; }
  .step-connector { width: 40px; }
  .step-item { max-width: none; padding: 0 12px; }
  .review-inner { grid-template-columns: 1fr; gap: 40px; }
  .insta-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 600px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: var(--nav-offset, 72px); left: 0; right: 0;
    background: #0A0A0A;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease), padding 0.35s var(--ease);
  }
  .nav-links.open {
    max-height: 320px;
    opacity: 1;
    padding: 24px;
    gap: 24px;
  }
  .nav-links a { color: var(--gold-light); font-size: 1rem; }
  .nav-insta { display: none; }
  .hamburger { display: flex; }
  .navbar:not(.scrolled) {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
  }

  .hero h1 { font-size: 2.2rem; }
  .hero-scroll-hint { display: none; }
  .hero-social-proof { flex-direction: column; gap: 8px; }

  /* Stack hero buttons vertically */
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Reduce section spacing on mobile */
  .about, .collections, .testimonials, .contact, .review-section { padding: 64px 0; }
  .how-it-works { padding: 56px 0; }
  .insta-cta { padding: 64px 0; }

  /* Horizontal scroll product carousel */
  .saree-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    margin-top: 32px;
    -webkit-overflow-scrolling: touch;
  }
  .saree-grid::-webkit-scrollbar { display: none; }
  .saree-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  /* Horizontal scroll testimonials on mobile */
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
  .trust-grid { gap: 16px; justify-content: flex-start; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* How It Works stacks vertically */
  .steps-grid { flex-direction: column; align-items: center; gap: 24px; }
  .step-connector { width: 1px; height: 32px; margin: 0; }
  .step-item { max-width: 100%; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; padding-bottom: 72px; }

  /* Hide floating WA button, show sticky bar instead */
  .whatsapp-float { display: none; }

  .mobile-wa-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--green);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.15);
  }
  .mobile-wa-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    color: var(--white);
    font-weight: 700;
    font-size: var(--text-base);
    letter-spacing: 0.5px;
  }
  .mobile-wa-bar a:active {
    background: var(--green-dark);
  }

  .back-to-top {
    bottom: 68px; left: 16px;
    width: 40px; height: 40px;
  }

  /* 48px minimum touch targets */
  .whatsapp-btn { padding: 12px 20px; min-height: 48px; }
  .card-wa-cta { padding: 14px; min-height: 52px; font-size: var(--text-base); }
  .btn { padding: 14px 28px; min-height: 48px; }
  .nav-links a { padding: 6px 0; min-height: 48px; display: flex; align-items: center; }
  .social-pill { padding: 10px 16px; min-height: 44px; }

  /* Announcement bar text */
  .announcement-bar { font-size: 0.65rem; letter-spacing: 1px; padding: 8px 36px 8px 12px; }
  .has-announcement { --nav-offset: 130px; }
  .has-announcement .navbar { top: 60px; }
  .has-announcement .hero { padding-top: 60px; }
}

/* ===== RESPONSIVE — SMALL PHONES ===== */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ===== DARK MODE ===== */
/* Site is already dark-themed — no overrides needed */

/* ===== SIZE GUIDE MODAL ===== */
.sg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
}
.sg-overlay.active { display: flex; }
.sg-modal {
  background: #141414;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  margin: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: sgSlideUp 0.25s ease-out;
}
@keyframes sgSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.sg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.sg-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0;
}
.sg-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.sg-close:hover { background: #222; }
.sg-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.sg-tab {
  padding: 8px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 20px;
  background: transparent;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.sg-tab.active {
  background: var(--gold);
  color: #0A0A0A;
}
.sg-tab-content { display: none; }
.sg-tab-content.active { display: block; }
.sg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.sg-table th {
  background: #1A1A1A;
  color: var(--gold);
  font-weight: 600;
  text-align: left;
  padding: 8px 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sg-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #222;
  color: var(--text);
}
.sg-table tbody tr:hover { background: #1A1A1A; }
.sg-table tbody tr.sg-highlight {
  background: rgba(201,168,76,0.1);
  font-weight: 600;
}
.sg-note {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
  margin: 12px 0 16px;
}
.sg-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.sg-wa-btn:hover { background: #1fb855; }
.card-size-guide-link {
  display: inline-block;
  width: 100%;
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  margin-top: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.card-size-guide-link:hover { opacity: 1; }

@media (max-width: 480px) {
  .sg-modal { padding: 18px; margin: 10px; }
  .sg-table { font-size: 0.75rem; }
  .sg-table th, .sg-table td { padding: 6px 6px; }
}

/* ===== DEAL OF THE DAY ===== */
.deal-of-day {
  background: linear-gradient(135deg, #141414 0%, #1A1A1A 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.deal-of-day::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.06;
  pointer-events: none;
}
.deal-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.deal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #0A0A0A;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.deal-timer {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.5px;
}
.deal-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}
.deal-image-wrap {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.deal-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.deal-of-day:hover .deal-image-wrap img { transform: scale(1.03); }
.deal-img-placeholder {
  width: 100%; height: 100%;
  min-height: 300px;
  background: linear-gradient(145deg, #1A1A1A, #222);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: var(--text-sm);
  letter-spacing: 1px;
}
.deal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.deal-tag {
  font-size: var(--text-2xs);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3px 10px;
  border-radius: 4px;
}
.deal-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  line-height: 1.2;
}
.deal-desc {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 480px;
}
.deal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.deal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.deal-stock {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.deal-stock::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: dealPulse 1.5s infinite;
}
@keyframes dealPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}
.deal-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
}
.deal-size-label {
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 4px;
}
.deal-size-btn {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.deal-size-btn:hover { border-color: var(--teal); color: var(--teal); }
.deal-size-btn.selected { background: var(--teal); color: white; border-color: var(--teal); }
.deal-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.deal-wa-btn:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.deal-reply {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 10px;
}
@media (max-width: 900px) {
  .deal-inner { grid-template-columns: 1fr; gap: 24px; }
  .deal-image-wrap { aspect-ratio: 4/3; max-height: 320px; }
}
@media (max-width: 600px) {
  .deal-of-day { padding: 20px; margin-bottom: 36px; }
  .deal-wa-btn { width: 100%; justify-content: center; }
}
@media (prefers-color-scheme: dark) {
  .deal-of-day { background: linear-gradient(135deg, var(--teal-light) 0%, var(--white) 100%); border-color: var(--border); }
  .deal-name { color: var(--gold-light); }
  .deal-tag { background: var(--white); border-color: var(--border); color: var(--muted); }
  .deal-img-placeholder { background: linear-gradient(145deg, var(--teal-light), var(--border)); }
}

/* ===== SHARE BUTTONS ===== */
.card-share-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 8px;
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 8px;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  background: none;
}
.share-btn svg { flex-shrink: 0; }
.share-btn:active { transform: scale(0.97); }

.share-wa {
  color: #25d366;
  border-color: rgba(37,211,102,0.2);
  background: rgba(37,211,102,0.05);
}
.share-wa:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: translateY(-1px);
}

.share-ig {
  color: #e1306c;
  border-color: rgba(188,24,136,0.2);
  background: rgba(188,24,136,0.05);
}
.share-ig:hover {
  background: linear-gradient(135deg, #f09433, #bc1888);
  color: white;
  border-color: transparent;
  transform: translateY(-1px);
}

@media (max-width: 360px) {
  .share-btn span { display: none; }
  .share-btn { padding: 9px; }
}

/* ===== INSTAGRAM MODAL ===== */
.ig-modal-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}
.ig-modal-bg.active { display: flex; }
.ig-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 420px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: igModalIn 0.25s ease;
}
@keyframes igModalIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
.ig-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ig-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  margin: 0;
}
.ig-modal-close {
  background: none; border: none;
  font-size: 1.5rem; color: var(--muted);
  cursor: pointer; padding: 4px 8px;
  border-radius: 6px; line-height: 1;
  transition: background 0.2s;
}
.ig-modal-close:hover { background: #222; }
.ig-modal-note {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.ig-modal-text {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.75;
  white-space: pre-wrap;
  margin-bottom: 16px;
  max-height: 180px;
  overflow-y: auto;
  font-family: 'Jost', sans-serif;
}
.ig-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ig-copy-btn {
  display: flex; align-items: center;
  justify-content: center; gap: 7px;
  padding: 11px; background: var(--teal);
  color: white; border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm); font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.ig-copy-btn:hover { background: var(--teal-dark); }
.ig-open-btn {
  display: flex; align-items: center;
  justify-content: center; gap: 7px;
  padding: 11px;
  background: linear-gradient(135deg, #f09433, #bc1888);
  color: white; border: none;
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm); font-weight: 600;
  cursor: pointer; transition: opacity 0.2s;
}
.ig-open-btn:hover { opacity: 0.88; }

/* ===== SHARE TOAST ===== */
.share-toast {
  position: fixed;
  bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  color: white;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--teal-dark);
}
.share-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.share-toast.wa { background: #128c3e; }
.share-toast.ig { background: linear-gradient(135deg, #e6683c, #bc1888); }
.share-toast-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

@media (prefers-color-scheme: dark) {
  .share-wa { color: #4cd989; border-color: rgba(37,211,102,0.2); }
  .share-ig { color: #d46ab0; border-color: rgba(188,24,136,0.2); }
  .ig-modal { background: var(--white); border: 1px solid var(--border); }
  .ig-modal-title { color: var(--gold-light); }
  .ig-modal-text { background: var(--ivory); border-color: var(--border); }
}

/* ===== CATALOGUE SECTION ===== */
.catalogue-section {
  background: var(--teal);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.catalogue-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.catalogue-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.catalogue-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.catalogue-text { flex: 1; }
.catalogue-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.catalogue-eyebrow svg { stroke: var(--gold-light); }
.catalogue-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.catalogue-subtext {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 0;
}
.catalogue-mode-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
}
.catalogue-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.catalogue-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: white;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  white-space: nowrap;
}
.catalogue-wa-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.catalogue-wa-btn:active { transform: scale(0.98); }
.catalogue-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .catalogue-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .catalogue-subtext { margin: 0 auto; }
  .catalogue-wa-btn { width: 100%; justify-content: center; }
}

/* ===== OUT OF STOCK / PRE-ORDER STATES ===== */
.card-oos-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(15, 15, 15, 0.78);
  color: #fff;
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.card-preorder-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--teal);
  color: #fff;
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.card-wa-cta.disabled {
  background: #b0b8b8;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.85;
  transform: none;
}
.card-wa-cta.disabled:hover {
  background: #b0b8b8;
  transform: none;
  box-shadow: none;
}
.card-notify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-sm);
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 6px;
}
.card-notify-btn:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-1px);
}
.card-notify-btn:active { transform: scale(0.98); }
.card-wa-cta.preorder {
  background: var(--teal);
}
.card-wa-cta.preorder:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,64,64,0.35);
}

@media (prefers-color-scheme: dark) {
  .card-wa-cta.disabled { background: #2a3a3a; color: #6a8080; }
  .card-notify-btn { border-color: var(--teal-mid); color: var(--gold-light); }
  .card-notify-btn:hover { background: var(--teal); color: white; }
}

/* ===== BRAND STORY VIDEO SECTION ===== */
.video-section {
  padding: var(--space-section) 0;
  background: var(--white);
}
.video-embed-wrap {
  margin-top: 48px;
  width: 100%;
}

/* YouTube responsive iframe */
.video-iframe-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-iframe-container::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.video-iframe-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Instagram Reel card */
.video-ig-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.video-ig-thumb {
  width: 100%;
  aspect-ratio: 9/16;
  max-height: 420px;
  background: linear-gradient(145deg, var(--teal-light), var(--border));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
}
.video-ig-thumb svg { opacity: 0.5; }
.video-ig-thumb span {
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}
.video-ig-body {
  padding: 24px;
}
.video-ig-body p {
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.video-ig-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f09433, #bc1888);
  color: white;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.video-ig-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .video-ig-card { max-width: 100%; }
  .video-ig-thumb { max-height: 320px; }
}

@media (prefers-color-scheme: dark) {
  .video-section { background: var(--white); }
  .video-ig-card {
    background: var(--white);
    border-color: var(--border);
  }
  .video-ig-thumb {
    background: linear-gradient(145deg, var(--teal-light), var(--border));
  }
}

/* ===== TRUST BADGES STRIP ===== */
.trust-badges-strip {
  background: var(--teal-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-family: 'Jost', sans-serif;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.trust-badge:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 8px rgba(27,64,64,0.1);
}
.trust-badge svg {
  flex-shrink: 0;
  stroke: var(--teal);
}

@media (max-width: 600px) {
  .trust-badges-row { gap: 8px; }
  .trust-badge { font-size: 0.7rem; padding: 6px 12px; }
}

@media (prefers-color-scheme: dark) {
  .trust-badges-strip {
    background: var(--teal-light);
    border-color: var(--border);
  }
  .trust-badge {
    background: var(--white);
    border-color: var(--border);
    color: var(--text);
  }
  .trust-badge svg { stroke: var(--gold); }
}
