/* ===== Dhalam Couture — Custom CSS ===== */

/* --- CSS Custom Properties --- */
:root {
  /* ─── PRIMARY — Deep Botanical Green ─── */
  --color-forest:        #2C3D2E;
  --color-deep-green:    #3D5C40;
  --color-mid-green:     #4A7050;
  --color-sage:          #7A9E7E;
  --color-mint-soft:     #C8DCC9;
  /* ─── ACCENT — Warm Gold ─── */
  --color-gold:          #C9A84C;
  --color-gold-light:    #E2C97E;
  --color-gold-dark:     #9A7A2E;
  --color-gold-muted:    #D4B97A;
  /* ─── NEUTRALS — Warm Ivory Base ─── */
  --color-cream:         #FAF8F3;
  --color-warm-white:    #FFFFFF;
  --color-ivory:         #F5F0E8;
  --color-parchment:     #EDE5D4;
  /* ─── TEXT ─── */
  --color-charcoal:      #1E2A1F;
  --color-stone:         #5A6B5C;
  --color-muted:         #8A9E8C;
  /* ─── STATUS ─── */
  --color-in-stock:      #3D5C40;
  --color-low-stock:     #B5823A;
  --color-out-of-stock:  #9E9E9E;
  /* ─── WHATSAPP ─── */
  --color-whatsapp:      #25D366;
  --color-whatsapp-dark: #128C7E;
  /* ─── GRADIENTS ─── */
  --gradient-hero:    linear-gradient(180deg, rgba(28,42,30,0.6) 0%, rgba(28,42,30,0.9) 100%);
  --gradient-section: linear-gradient(135deg, #2C3D2E 0%, #3D5C40 100%);
  --gradient-gold:    linear-gradient(135deg, #C9A84C 0%, #E2C97E 50%, #C9A84C 100%);
  --gradient-card:    linear-gradient(180deg, transparent 50%, rgba(28,42,30,0.75) 100%);
  --color-border:        #C8DCC9;
  --color-light-grey:    #F5F0E8;
  --color-blush:         #C9A84C;
  --color-mauve:         #E2C97E;
  --color-deep-rose:     #3D5C40;
  --font-display: 'Cormorant Garamond', serif;
  --font-ui: 'DM Sans', sans-serif;
  --radius-card: 12px;
  --radius-pill: 9999px;
}

/* --- Base Reset & Typography --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; font-weight: 400; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-ui); border: none; background: none; }

/* --- Label Style --- */
.label-sm {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.label-hero {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blush);
}

/* --- Section Spacing --- */
.section-padding {
  padding: 3rem 1.25rem;
}
@media (min-width: 1024px) {
  .section-padding { padding: 5rem 4rem; }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-charcoal);
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: 0.5rem;
}
.dark-section .section-title,
.footer .section-title {
  color: var(--color-gold);
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gradient-gold);
  margin: 0.75rem auto 0;
}
.instagram-handle {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold-light);
  transition: color 0.2s ease;
}
.instagram-handle:hover { color: var(--color-gold-light); }
.product-name, h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--color-charcoal);
}
.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sage);
  display: block;
  margin-bottom: 0.5rem;
}
.dark-section .section-title,
.footer .section-title {
  color: var(--color-gold);
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gradient-gold);
  margin: 0.75rem auto 0;
}
.instagram-handle {
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold-light);
  transition: color 0.2s ease;
}
.instagram-handle:hover { color: var(--color-gold-light); }
.product-name, h1, h2 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--color-charcoal);
}

/* --- Announcement Bar --- */
.announcement-bar {
  position: relative; /* NOT fixed, NOT absolute */
  width: 100%;
  z-index: 100;
  background: var(--color-deep-green);
  color: var(--color-gold-light);
  text-align: center;
  padding: 0.5rem 3rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: height 0.3s ease, opacity 0.3s ease;
}
.announcement-bar #dismiss-announcement {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-gold-light);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* --- Navigation --- */
.main-nav {
  position: absolute;
  z-index: 200;
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 1.25rem;
}
.main-nav.nav-transparent {
  background: transparent;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.main-nav.has-announcement { top: auto; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (min-width: 1024px) {
  .main-nav { padding: 1rem 4rem; }
}

/* --- Mobile Menu --- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--color-warm-white);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.active { transform: translateY(0); }
.mobile-menu-overlay a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-charcoal);
  transition: color 0.2s;
}
.mobile-menu-overlay a:hover { color: var(--color-deep-rose); }

/* --- Hero --- */
.hero-section {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-charcoal);
}
.hero-bg-video, .hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 1.5rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-cream);
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-highlight {
  font-style: italic;
  font-weight: 500;
  color: var(--color-gold-light);
  text-shadow: 0 0 25px rgba(226,201,126,0.4);
}
.hero-sub {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: #fff;
  opacity: 0.7;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Buttons --- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
  min-height: 44px;
}
.btn-primary {
  background: var(--color-deep-green);
  color: white;
}
.btn-primary:hover { background: var(--color-mid-green); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.scroll-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-deep-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.scroll-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--color-mid-green);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  font-weight: 600;
  animation: whatsapp-pulse 2.5s ease infinite;
}
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); }
.btn-deep-rose {
  background: var(--color-deep-green);
  color: #fff;
}
.btn-deep-rose:hover { background: var(--color-mid-green); }
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-forest);
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-charcoal);
}
.btn-outline:hover { border-color: var(--color-deep-rose); color: var(--color-deep-rose); }

/* --- Category Tiles --- */
.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-tile:hover img { transform: scale(1.05); }
.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.category-tile:hover .category-tile-overlay { background: rgba(0,0,0,0.45); }
.category-tile-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
}

/* --- Product Card --- */
.product-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-warm-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-light-grey);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}
.badge-new { background: var(--color-deep-rose); color: #fff; }
.badge-sale { background: var(--color-low-stock); color: #fff; }
.product-card-wa {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  z-index: 2;
}
.product-card:hover .product-card-wa { opacity: 1; transform: translateY(0); }
.product-card-info { padding: 1rem; }
.product-card-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-stone);
  margin-bottom: 0.25rem;
}
.product-card-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}
.product-card-price { font-weight: 500; color: var(--color-charcoal); }
.product-card-price .original-price {
  text-decoration: line-through;
  color: var(--color-stone);
  font-weight: 400;
  margin-left: 0.5rem;
  font-size: 0.85em;
}
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  margin-top: 0.35rem;
}
.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.stock-in .stock-dot { background: var(--color-in-stock); }
.stock-in { color: var(--color-in-stock); }
.stock-low .stock-dot { background: var(--color-low-stock); }
.stock-low { color: var(--color-low-stock); }
.stock-out .stock-dot { background: var(--color-out-of-stock); }
.stock-out { color: var(--color-out-of-stock); }
.product-card.out-of-stock { opacity: 0.6; pointer-events: none; }
.product-card.out-of-stock .product-card-image::after {
  content: 'Out of Stock';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Offer Banner --- */
.offer-banner {
  background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-cream) 100%);
  text-align: center;
}

/* --- Reel Gallery --- */
.reels-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 1.25rem 1.5rem;
}
.reels-strip::-webkit-scrollbar { display: none; }
.reel-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 180px;
  cursor: pointer;
}
.reel-thumb {
  width: 180px;
  height: 320px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 42, 30, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reel-card:hover .reel-overlay { opacity: 1; }
.reel-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.85); /* gold */
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(transparent, rgba(28,42,30,0.85));
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  line-height: 1.3;
}
/* Lightbox Reels additions */
.reel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.reel-lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 42, 30, 0.92);
  cursor: pointer;
}
.instagram-fallback-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border: 1px solid var(--color-gold);
  color: white;
  text-decoration: none;
  text-align: center;
  backdrop-filter: blur(4px);
}

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-content video, .lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
}

/* --- Brand Story --- */
.brand-story-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.brand-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- WhatsApp CTA Banner --- */
.wa-cta-banner {
  background: linear-gradient(135deg, var(--color-deep-rose) 0%, var(--color-mauve) 100%);
  color: #fff;
  text-align: center;
}
.wa-cta-banner .wa-icon { animation: gentleBounce 2s infinite; }
@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --- Footer --- */
.site-footer {
  background: var(--color-charcoal);
  color: var(--color-light-grey);
}
.site-footer a { color: var(--color-light-grey); transition: color 0.2s; }
.site-footer a:hover { color: var(--color-blush); }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
}

/* --- Filter Pills --- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.5rem 0;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-pill {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-charcoal);
  transition: all 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
}
.filter-pill:hover { border-color: var(--color-deep-rose); }
.filter-pill.active {
  background: var(--color-deep-rose);
  color: #fff;
  border-color: var(--color-deep-rose);
}

/* --- Product Detail --- */
.product-gallery-main {
  aspect-ratio: 3/4;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-light-grey);
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}
.product-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.product-thumb {
  width: 72px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: var(--color-light-grey);
}
.product-thumb.active { border-color: var(--color-deep-rose); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.breadcrumb {
  font-size: 0.8rem;
  color: var(--color-stone);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--color-deep-rose); }
.breadcrumb span { margin: 0 0.35rem; }

/* Size Pills */
.size-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-pill {
  min-width: 44px;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}
.size-pill:hover:not(.disabled) { border-color: var(--color-deep-rose); }
.size-pill.active {
  border-color: var(--color-deep-rose);
  background: rgba(139, 69, 101, 0.08);
  color: var(--color-deep-rose);
}
.size-pill.disabled {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Quantity Selector */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--color-light-grey); }
.qty-value {
  width: 44px;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Accordion */
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-header {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accordion-header svg { transition: transform 0.3s; flex-shrink: 0; }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.open .accordion-body { max-height: 500px; }
.accordion-body-inner {
  padding: 0 0 1rem 0;
  color: var(--color-stone);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Occasion Tag Chips */
.occasion-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.occasion-chip {
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--color-cream);
  font-size: 0.75rem;
  color: var(--color-stone);
  border: 1px solid var(--color-border);
}

/* Sticky Bottom Bar (mobile product page) */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-warm-white);
  border-top: 1px solid var(--color-border);
  padding: 0.75rem 1.25rem;
  z-index: 40;
  display: flex;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bottom-bar.visible { transform: translateY(0); }
@media (min-width: 1024px) { .sticky-bottom-bar { display: none; } }

/* --- Floating WhatsApp --- */
.floating-wa {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 30;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  cursor: pointer;
}
.floating-wa.visible { opacity: 1; transform: scale(1); }
.floating-wa:hover { transform: scale(1.08); }

/* --- Page Header (collections, about, contact) --- */
.page-header {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
  background: var(--color-cream);
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

/* --- FAQ --- */
.faq-section .accordion-item { background: var(--color-warm-white); border-radius: var(--radius-card); padding: 0 1.25rem; margin-bottom: 0.75rem; border: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

/* --- Shake Animation --- */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.shake { animation: shake 0.4s ease; }

/* --- Focus Visible --- */
*:focus-visible {
  outline: 2px solid var(--color-deep-rose);
  outline-offset: 2px;
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .announcement-marquee { animation: none !important; }
}

/* --- Placeholder Image --- */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-stone);
  text-align: center;
  padding: 1rem;
}
.placeholder-img.cream { background: var(--color-cream); }
.placeholder-img.blush { background: var(--color-blush); color: #fff; }
.placeholder-img.mauve { background: var(--color-mauve); color: #fff; }
.placeholder-img.rose { background: var(--color-deep-rose); color: #fff; }
