/* ==========================================================================
   ZEVARIKA - LUXURY JEWELLERY BRAND DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Core Brand Colors (Shopify Dawn Zevarika Palette - High Contrast) */
  --bg-primary: #F9F7F1;
  --bg-secondary: #F3EFE6;
  --bg-tertiary: #EAE3CD;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: rgba(255, 255, 255, 0.98);
  --bg-glass: rgba(249, 247, 241, 0.85);

  --text-primary: #121212;
  --text-secondary: #4A463F;
  --text-muted: #6E695F;
  --text-gold: #967432;

  --accent-gold-light: #E8D5A0;
  --accent-gold: #B89B55;
  --accent-gold-dark: #745136;
  --accent-gold-rich: #A8863A;
  --accent-rose: #F9B8C9;
  --accent-rose-dark: #B85B72;

  --border-gold-subtle: rgba(168, 134, 58, 0.28);
  --border-gold-strong: rgba(168, 134, 58, 0.65);
  --border-subtle: rgba(18, 18, 18, 0.1);

  --shadow-sm: 0 4px 12px rgba(18, 18, 18, 0.05);
  --shadow-md: 0 12px 30px rgba(18, 18, 18, 0.08);
  --shadow-lg: 0 20px 45px rgba(116, 81, 54, 0.12);
  --shadow-gold: 0 10px 30px rgba(168, 134, 58, 0.2);

  /* Typography */
  --font-serif-heading: 'Cormorant Garamond', Georgia, serif;
  --font-serif-display: 'Fraunces', serif;
  --font-serif-accent: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Midnight Dark Luxury Theme */
[data-theme="dark"] {
  --bg-primary: #121114;
  --bg-secondary: #1A181E;
  --bg-tertiary: #25222B;
  --bg-card: rgba(28, 26, 33, 0.9);
  --bg-card-hover: rgba(36, 33, 43, 0.98);
  --bg-glass: rgba(18, 17, 20, 0.88);

  --text-primary: #FFFFFF;
  --text-secondary: #DDD8CE;
  --text-muted: #A8A196;
  --text-gold: #F0D085;

  --accent-gold-light: #F7E7BE;
  --accent-gold: #DFC07A;
  --accent-gold-dark: #C4A15A;
  --accent-gold-rich: #E5C158;

  --border-gold-subtle: rgba(240, 208, 133, 0.25);
  --border-gold-strong: rgba(240, 208, 133, 0.6);
  --border-subtle: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 10px 35px rgba(229, 193, 88, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Particle Canvas Layer */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
}

/* Ambient Radial Glow Gradients */
.ambient-glow-1 {
  position: fixed;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-2 {
  position: fixed;
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 184, 201, 0.1) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .ambient-glow-1 {
  background: radial-gradient(circle, rgba(229, 193, 88, 0.18) 0%, rgba(229, 193, 88, 0) 70%);
}

[data-theme="dark"] .ambient-glow-2 {
  background: radial-gradient(circle, rgba(249, 184, 201, 0.12) 0%, rgba(229, 193, 88, 0) 70%);
}

/* App Wrapper */
.app-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --------------------------------------------------------------------------
   Top Announcement Bar
   -------------------------------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #745136 0%, #9E8148 50%, #745136 100%);
  color: #FFFFFF;
  padding: 8px 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.live-beacon {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #55EFC4;
  box-shadow: 0 0 8px #55EFC4;
  animation: pulseGlow 1.5s infinite;
}

/* --------------------------------------------------------------------------
   Header Navigation
   -------------------------------------------------------------------------- */
.site-header {
  padding: 20px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
  transition: transform 0.3s ease, filter 0.4s ease;
}

[data-theme="dark"] .brand-logo-img,
[data-theme="dark"] .footer-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.03);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.theme-toggle-btn:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.header-btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.header-btn--whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-full);
  font-family: var(--font-serif-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .hero-badge {
  color: var(--accent-gold-light);
}

.hero-title {
  font-family: var(--font-serif-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title em {
  font-family: var(--font-serif-display);
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Countdown Timer Component
   -------------------------------------------------------------------------- */
.countdown-wrapper {
  margin: 0 auto 50px;
  max-width: 680px;
}

.countdown-label {
  font-family: var(--font-serif-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 18px;
  font-weight: 600;
}

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

.countdown-box {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 20px 12px 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.countdown-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold-light), var(--accent-gold-rich), var(--accent-gold-light));
}

.countdown-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.countdown-num {
  font-family: var(--font-serif-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 4px;
  display: block;
}

.countdown-unit {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   VIP Waitlist Card & Form
   -------------------------------------------------------------------------- */
.waitlist-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.waitlist-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.6), transparent, rgba(249, 184, 201, 0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.waitlist-header {
  margin-bottom: 24px;
}

.waitlist-tag {
  color: var(--accent-gold-rich);
  font-family: var(--font-serif-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.waitlist-heading {
  font-family: var(--font-serif-heading);
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.waitlist-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.input-field-wrap {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 16px 18px 16px 46px;
  background: var(--bg-primary);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.96rem;
  transition: var(--transition-smooth);
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.85;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-gold-rich);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  background: var(--bg-card);
}

.submit-btn {
  background: linear-gradient(135deg, #121212 0%, #2e2820 100%);
  color: #FAF7F2;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .submit-btn {
  background: linear-gradient(135deg, #C4B173 0%, #8F6B4D 100%);
  color: #121212;
  font-weight: 700;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  border-color: var(--accent-gold-rich);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-trust-note span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Success Modal / State */
.waitlist-success-box {
  display: none;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(249, 184, 201, 0.08));
  border: 1px dashed var(--accent-gold-rich);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.success-badge {
  display: inline-block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.coupon-box {
  background: var(--bg-card);
  border: 2px dashed var(--accent-gold-rich);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 12px;
  box-shadow: var(--shadow-sm);
}

.coupon-code {
  font-family: 'SF Mono', Monaco, Menlo, Consolas, monospace;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--text-gold);
  background: var(--bg-primary);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold-subtle);
}

.copy-coupon-btn {
  background: var(--accent-gold-rich);
  color: #121212;
  border: 1px solid var(--border-gold-strong);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.copy-coupon-btn:hover {
  background: #FFFFFF;
  color: #121212;
  border-color: var(--accent-gold-rich);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

[data-theme="dark"] .copy-coupon-btn {
  background: var(--accent-gold-rich);
  color: #121212;
  font-weight: 700;
}

[data-theme="dark"] .copy-coupon-btn:hover {
  background: #FFFFFF;
  color: #121212;
}

/* --------------------------------------------------------------------------
   Sneak Peek Product Showcase
   -------------------------------------------------------------------------- */
.showcase-section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  font-family: var(--font-serif-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold-rich);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-serif-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Filter Tags */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-tab {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--accent-gold-rich);
  color: #FFFFFF;
  border-color: var(--accent-gold-rich);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.product-img-wrap {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(18, 18, 18, 0.8);
  color: #FFFFFF;
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-serif-heading);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-original {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.interest-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.interest-btn:hover {
  background: var(--accent-gold-rich);
  color: #fff;
  border-color: var(--accent-gold-rich);
}

.interest-btn.active {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c;
}

/* --------------------------------------------------------------------------
   Brand Values & Craft Section
   -------------------------------------------------------------------------- */
.values-section {
  padding: 70px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--bg-card);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-subtle);
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

.value-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(249, 184, 201, 0.15));
  border: 1px solid var(--border-gold-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-gold-rich);
}

.value-title {
  font-family: var(--font-serif-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Story & Mathura Heritage Banner
   -------------------------------------------------------------------------- */
.story-section {
  padding: 90px 0;
}

.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.story-img-wrap {
  height: 100%;
  min-height: 440px;
  position: relative;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-card:hover .story-img {
  transform: scale(1.03);
}

.story-content {
  padding: 50px 45px;
}

.story-tag {
  font-family: var(--font-serif-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold-rich);
  margin-bottom: 12px;
  display: block;
}

.story-title {
  font-family: var(--font-serif-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.story-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.story-quote {
  font-family: var(--font-serif-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-primary);
  border-left: 3px solid var(--accent-gold-rich);
  padding-left: 18px;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Interactive Reward Scratch / Unlock
   -------------------------------------------------------------------------- */
.reward-section {
  padding: 60px 0 80px;
  text-align: center;
}

.reward-card {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(249, 184, 201, 0.08) 100%), var(--bg-card);
  border: 2px dashed var(--accent-gold-strong);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.reward-icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.reward-title {
  font-family: var(--font-serif-heading);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.reward-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.scratch-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.scratch-box:hover {
  transform: scale(1.02);
  border-color: var(--accent-gold-rich);
}

.scratch-content {
  font-weight: 600;
  color: var(--accent-gold-dark);
  letter-spacing: 0.05em;
}

[data-theme="dark"] .scratch-content {
  color: var(--accent-gold-light);
}

/* --------------------------------------------------------------------------
   FAQs Accordion
   -------------------------------------------------------------------------- */
.faq-section {
  padding: 60px 0 80px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--accent-gold);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-serif-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-gold-rich);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 24px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

/* --------------------------------------------------------------------------
   Direct Connect & Social Channels
   -------------------------------------------------------------------------- */
.social-connect-section {
  padding: 60px 0 80px;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-gold-subtle);
}

.social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-full);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.social-pill:hover {
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-pill--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}

.social-pill--whatsapp:hover {
  background: #25D366;
  color: #fff;
  border-color: transparent;
}

.social-pill--youtube:hover {
  background: #FF0000;
  color: #fff;
  border-color: transparent;
}

.social-pill--pinterest:hover {
  background: #E60023;
  color: #fff;
  border-color: transparent;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  padding: 45px 0 35px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-gold-subtle);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.footer-meta {
  margin-top: 12px;
  font-size: 0.82rem;
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .story-card {
    grid-template-columns: 1fr;
  }
  .story-img-wrap {
    min-height: 320px;
    max-height: 380px;
  }
  .story-content {
    padding: 35px 25px;
  }
}

@media (max-width: 650px) {
  .countdown-grid {
    gap: 8px;
  }
  .countdown-box {
    padding: 14px 6px 12px;
  }
  .form-row {
    flex-direction: column;
  }
  .waitlist-card {
    padding: 30px 20px;
  }
  .header-actions .header-btn--whatsapp span {
    display: none;
  }
}
