/* ==========================================================================
   SHREE LAXMI CLOTH STORE (ଶ୍ରୀ ଲକ୍ଷ୍ମୀ କ୍ଲଥ ଷ୍ଟୋର)
   ROYAL PEACOCK TEAL & 24K CHAMPAGNE GOLD LUXURY DESIGN SYSTEM
   (Zero Coffee / Zero Brown — 100% Fresh, Royal & High-Fashion)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anek+Odia:wght@400;500;600;700;800&family=Cinzel:wght@500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  /* ==================== ROYAL PEACOCK TEAL & 24K GOLD ==================== */
  --color-teal-midnight: #02161A;   /* Deep Midnight Royal Teal */
  --color-teal-dark: #04252C;       /* Dark Regal Teal */
  --color-teal-primary: #06424D;    /* Royal Peacock Teal */
  --color-teal-vibrant: #0A6372;    /* Radiant Sea-Jewel Teal */
  --color-teal-soft: #E8F6F8;       /* Crystal Seafoam Foam */
  --color-teal-glow: rgba(10, 99, 114, 0.35);

  --color-gold-24k: #D49B1E;        /* 24K Molten Gold */
  --color-gold-bright: #F5CE68;     /* Luminous Gold Shimmer */
  --color-gold-pale: #FFF9E0;       /* Champagne Gold Silk */
  --color-gold-deep: #996800;       /* Antique Temple Gold */
  --color-gold-border: rgba(212, 155, 30, 0.4);

  /* Crystal Diamond Canvas */
  --bg-canvas: #F8FAFC;             /* Crystal Diamond White */
  --bg-surface: #FFFFFF;            /* Pure Crisp White */
  --bg-surface-soft: #EEF8F9;       /* Fresh Seafoam Champagne */
  --bg-dark-obsidian: #011114;      /* Midnight Cosmic Teal */
  --bg-dark-teal: #032026;          /* Rich Velvet Teal */

  /* High Contrast Typography */
  --text-main: #0F172A;             /* Crisp Slate Navy */
  --text-muted: #475569;            /* Elegant Neutral */
  --text-light: #FFFFFF;
  --text-gold: #B88510;

  /* Typography Fonts */
  --font-royal: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-odia: 'Anek Odia', 'Noto Sans Odia', sans-serif;

  /* Luxury Elevations & Foil Shadows */
  --shadow-sm: 0 4px 14px rgba(6, 66, 77, 0.06);
  --shadow-md: 0 10px 30px rgba(6, 66, 77, 0.09);
  --shadow-lg: 0 20px 50px rgba(6, 66, 77, 0.16);
  --shadow-gold: 0 10px 36px rgba(212, 155, 30, 0.35);
  --shadow-card-foil: 0 12px 36px -8px rgba(6, 66, 77, 0.08), 0 0 0 1.5px rgba(212, 155, 30, 0.28);

  /* Borders & Radii */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;

  /* Smooth Easing */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & GLOBAL BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.lang-or,
[data-odia="true"] {
  font-family: var(--font-odia), var(--font-body);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (MIDNIGHT PEACOCK & GOLD)
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #02161A 0%, #063740 50%, #02161A 100%);
  color: #FFF3C4;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1.5px solid var(--color-gold-24k);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.top-bar-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.top-bar-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: 1px solid rgba(245, 206, 104, 0.45);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
}

.status-indicator.closed .status-dot {
  background-color: #EF4444;
  box-shadow: 0 0 10px #EF4444;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(212, 155, 30, 0.3) 0%, rgba(212, 155, 30, 0.1) 100%);
  color: #FFF;
  border: 1.5px solid var(--color-gold-bright);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.lang-toggle-btn:hover {
  background: var(--color-gold-24k);
  color: #02161A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 155, 30, 0.45);
}

/* ==========================================================================
   STICKY MAIN NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1.5px solid rgba(212, 155, 30, 0.32);
  box-shadow: 0 4px 24px rgba(6, 66, 77, 0.07);
  transition: var(--transition-fast);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand-link {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 62px;
  width: auto;
  min-width: 210px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(6, 66, 77, 0.12));
  transition: transform var(--transition-fast);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-teal-primary), var(--color-gold-24k));
  border-radius: var(--radius-pill);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-teal-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 14.5px;
  min-height: 44px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, #0B5D6B 0%, #042E35 100%);
  color: #FFF;
  border: 1.5px solid var(--color-gold-bright);
  box-shadow: 0 4px 18px rgba(6, 66, 77, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0E7788 0%, #06424D 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(6, 66, 77, 0.5);
}

.btn-gold {
  background: linear-gradient(135deg, #F5CE68 0%, #D49B1E 50%, #F9DC7E 100%);
  background-size: 200% auto;
  color: #02161A;
  border: 1.5px solid #FFF8D1;
  box-shadow: 0 4px 18px rgba(212, 155, 30, 0.4);
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 155, 30, 0.55);
}

.btn-outline {
  background: #FFF;
  color: var(--color-teal-primary);
  border: 1.5px solid var(--color-teal-primary);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: var(--color-teal-primary);
  color: #FFF;
  border-color: var(--color-teal-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFF;
  border: 1.5px solid #A8FFC5;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

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

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  color: var(--color-teal-primary);
}

/* ==========================================================================
   HERO SECTION (DIAMOND ALABASTER & PEACOCK GOLD RADIANCE)
   ========================================================================== */
.hero-section {
  position: relative;
  background: 
    radial-gradient(circle at 85% 20%, rgba(245, 206, 104, 0.24) 0%, transparent 45%),
    radial-gradient(circle at 12% 80%, rgba(10, 99, 114, 0.1) 0%, transparent 45%),
    linear-gradient(180deg, #FFFFFF 0%, #F5FBFB 100%);
  padding: 65px 0 85px;
  border-bottom: 2px solid var(--color-gold-border);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 52px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  color: var(--color-teal-primary);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-gold-24k);
  box-shadow: 0 4px 14px rgba(212, 155, 30, 0.22);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.hero-title {
  font-family: var(--font-royal);
  font-size: 42px;
  font-weight: 900;
  color: var(--color-teal-midnight);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

body.lang-or .hero-title {
  font-family: var(--font-odia);
  font-size: 38px;
  line-height: 1.35;
}

.hero-subtitle {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 590px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 26px;
  border-top: 1.5px solid rgba(212, 155, 30, 0.3);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal-midnight);
}

.trust-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  color: var(--color-gold-24k);
}

/* Hero Media 3D Gold Card */
.hero-media {
  position: relative;
  z-index: 2;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFF;
  outline: 2px solid var(--color-gold-24k);
  background: var(--bg-dark-obsidian);
}

.hero-image-card img.main-hero-img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-card:hover img.main-hero-img {
  transform: scale(1.035);
}

.hero-floating-storefront {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(2, 22, 26, 0.92);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-gold-bright);
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.storefront-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold-bright);
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(2, 22, 26, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-gold-24k);
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.badge-emblem {
  width: 52px;
  height: 52px;
  min-width: 52px;
}

.floating-badge-text h4 {
  font-size: 15.5px;
  color: #FFDF73;
  margin-bottom: 2px;
}

.floating-badge-text p {
  font-size: 12px;
  color: #E2E8F0;
}

/* ==========================================================================
   DIVINE HERITAGE & MAA LAXMI SECTION (CELESTIAL PEACOCK TEAL & 24K GOLD)
   ========================================================================== */
.divine-heritage-section {
  background: linear-gradient(135deg, #032026 0%, #011114 100%);
  color: #FFF;
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  border-top: 2.5px solid var(--color-gold-24k);
  border-bottom: 2.5px solid var(--color-gold-24k);
}

.divine-heritage-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 155, 30, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.divine-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.divine-portrait-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
  border: 3.5px solid var(--color-gold-bright);
  background: #000;
}

.divine-portrait-card img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.divine-portrait-card:hover img {
  transform: scale(1.025);
}

.divine-quote-box {
  background: linear-gradient(135deg, rgba(212, 155, 30, 0.18) 0%, rgba(212, 155, 30, 0.05) 100%);
  border: 1.5px solid var(--color-gold-bright);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  font-family: var(--font-odia), serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #FFE68C;
  text-align: center;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 0 20px rgba(212, 155, 30, 0.18);
}

.divine-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.divine-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 206, 104, 0.22);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.divine-point-item:hover {
  transform: translateX(5px);
  border-color: var(--color-gold-bright);
  background: rgba(255, 255, 255, 0.09);
}

.divine-point-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5CE68 0%, #A37408 100%);
  color: #02161A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(212, 155, 30, 0.35);
}

.divine-point-text h4 {
  font-size: 16.5px;
  color: #FFDF73;
  margin-bottom: 4px;
}

.divine-point-text p {
  font-size: 13.5px;
  color: #E2E8F0;
  line-height: 1.5;
}

/* ==========================================================================
   MARQUEE RIBBON
   ========================================================================== */
.marquee-ribbon {
  background: var(--bg-dark-teal);
  color: #FFDF73;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1.5px solid var(--color-gold-24k);
  border-bottom: 1.5px solid var(--color-gold-24k);
}

.marquee-content {
  display: inline-flex;
  gap: 40px;
  animation: scrollMarquee 26s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   CURATED COLLECTIONS CATALOG (LUXURY FOIL CARDS)
   ========================================================================== */
.section {
  padding: 85px 0;
}

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

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold-deep);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-royal);
  font-size: 38px;
  font-weight: 900;
  color: var(--color-teal-midnight);
  line-height: 1.22;
  margin-bottom: 14px;
}

body.lang-or .section-title {
  font-family: var(--font-odia);
  font-size: 35px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

.filter-tab-btn {
  background: #FFF;
  color: var(--text-main);
  border: 1.5px solid #CBD5E1;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-tab-btn:hover {
  border-color: var(--color-gold-24k);
  color: var(--color-teal-primary);
  transform: translateY(-1px);
}

.filter-tab-btn.active {
  background: linear-gradient(135deg, #0B5D6B 0%, #042E35 100%);
  color: #FFF;
  border-color: var(--color-gold-bright);
  box-shadow: 0 4px 16px rgba(6, 66, 77, 0.35);
}

/* Collection Cards Grid */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.collection-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card-foil);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px var(--color-gold-24k);
}

.card-image-wrap {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: #111;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-card:hover .card-image-wrap img {
  transform: scale(1.07);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(2, 22, 26, 0.94);
  color: #FFDF73;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-royal);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-teal-midnight);
  margin-bottom: 10px;
  line-height: 1.3;
}

body.lang-or .card-title {
  font-family: var(--font-odia);
  font-size: 19px;
}

.card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.58;
  margin-bottom: 22px;
  flex-grow: 1;
}

/* ==========================================================================
   WHATSAPP VIDEO CONCIERGE (DEEP PEACOCK & GOLD LUXURY)
   ========================================================================== */
.video-concierge-section {
  background: linear-gradient(135deg, #03242B 0%, #011114 100%);
  color: #FFF;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--color-gold-24k);
  border-bottom: 2px solid var(--color-gold-24k);
}

.video-concierge-section::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 155, 30, 0.22) 0%, transparent 70%);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 52px;
  position: relative;
  z-index: 2;
}

.video-concierge-section .section-title {
  color: #FFF;
}

.video-concierge-section .section-subtitle {
  color: #E2E8F0;
  margin-bottom: 35px;
}

.video-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 206, 104, 0.25);
}

.step-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5CE68 0%, #A37408 100%);
  color: #02161A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(212, 155, 30, 0.35);
}

.step-details h4 {
  font-size: 16px;
  color: #FFDF73;
  margin-bottom: 4px;
}

.step-details p {
  font-size: 13px;
  color: #E2E8F0;
  line-height: 1.45;
}

.video-form-card {
  background: #FFF;
  color: var(--text-main);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-gold-24k);
}

.video-form-card h3 {
  font-family: var(--font-royal);
  font-size: 23px;
  font-weight: 800;
  color: var(--color-teal-midnight);
  margin-bottom: 8px;
}

body.lang-or .video-form-card h3 {
  font-family: var(--font-odia);
  font-size: 22px;
}

.video-form-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-sm);
  background: #FFF;
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-teal-primary);
  box-shadow: 0 0 0 3px rgba(6, 66, 77, 0.15);
}

/* ==========================================================================
   BULK WEDDING TROUSSEAU CALCULATOR (24K GOLD FOIL CARD)
   ========================================================================== */
.calculator-section {
  background: var(--bg-surface-soft);
  border-top: 1px solid var(--color-gold-border);
  border-bottom: 1px solid var(--color-gold-border);
}

.calc-container {
  max-width: 980px;
  margin: 0 auto;
  background: #FFF;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-gold-24k);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 14px;
}

.calc-slider-val {
  color: var(--color-teal-primary);
  font-size: 19px;
  font-weight: 800;
}

.range-slider {
  width: 100%;
  accent-color: var(--color-teal-primary);
  cursor: pointer;
  height: 8px;
}

.calc-result-box {
  background: linear-gradient(145deg, #FFFFFF 0%, #EBF7F8 100%);
  border: 2px solid var(--color-gold-24k);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.result-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0B5D6B 0%, #042E35 100%);
  color: #FFDF73;
  font-size: 13px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  border: 1px solid var(--color-gold-bright);
}

.result-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(212, 155, 30, 0.45);
  font-size: 14px;
  font-weight: 600;
}

.result-stat-row.highlight {
  border-bottom: none;
  font-size: 18px;
  font-weight: 900;
  color: var(--color-teal-midnight);
  padding-top: 16px;
}

.savings-val {
  color: #059669;
  font-weight: 900;
}

.final-val {
  color: var(--color-teal-midnight);
  font-size: 28px;
}

/* ==========================================================================
   FABRIC PURITY & TRUST PILLARS
   ========================================================================== */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pillar-card {
  background: #FFF;
  padding: 32px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(212, 155, 30, 0.25);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-24k);
  box-shadow: var(--shadow-md);
}

.pillar-icon-wrap {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF9E0 0%, #EEF8F9 100%);
  border: 2px solid var(--color-gold-24k);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal-primary);
  box-shadow: 0 4px 14px rgba(212, 155, 30, 0.22);
}

.pillar-title {
  font-family: var(--font-royal);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-teal-midnight);
  margin-bottom: 10px;
}

body.lang-or .pillar-title {
  font-family: var(--font-odia);
  font-size: 16.5px;
}

.pillar-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   STORE TOUR GALLERY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid #FFF;
  outline: 1.5px solid rgba(212, 155, 30, 0.3);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: var(--bg-surface-soft);
}

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

.testimonial-card {
  background: #FFF;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(212, 155, 30, 0.25);
  display: flex;
  flex-direction: column;
}

.rating-stars {
  color: #F59E0B;
  font-size: 17px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.62;
  margin-bottom: 20px;
  flex-grow: 1;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B5D6B 0%, #042E35 100%);
  color: #FFDF73;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  border: 1.5px solid var(--color-gold-bright);
}

.reviewer-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--color-teal-midnight);
}

.reviewer-loc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   STORE VISIT & MAP
   ========================================================================== */
.visit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.visit-info-card {
  background: #FFF;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-gold-24k);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFF9E0 0%, #E8F6F8 100%);
  color: var(--color-teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold-24k);
  box-shadow: 0 3px 10px rgba(212, 155, 30, 0.25);
}

.info-details h4 {
  font-size: 16.5px;
  color: var(--color-teal-midnight);
  margin-bottom: 4px;
}

.info-details p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.map-container {
  height: 410px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2.5px solid var(--color-gold-24k);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FOOTER (MIDNIGHT ROYAL TEAL & 24K GOLD ACCENTS)
   ========================================================================== */
.site-footer {
  background: var(--bg-dark-obsidian);
  color: #FFF;
  padding: 65px 0 32px;
  border-top: 3px solid var(--color-gold-24k);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 6px rgba(245, 206, 104, 0.45));
}

.footer-brand p {
  font-size: 13px;
  color: #CBD5E1;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-royal);
  font-size: 16.5px;
  color: #FFDF73;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

body.lang-or .footer-col h4 {
  font-family: var(--font-odia);
  font-size: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #CBD5E1;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFDF73;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #94A3B8;
}

/* ==========================================================================
   STICKY MOBILE BOTTOM ACTION BAR
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(1, 17, 20, 0.98);
  backdrop-filter: blur(12px);
  border-top: 2px solid var(--color-gold-24k);
  padding: 8px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.45);
}

.mobile-action-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.mobile-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  min-width: 60px;
  min-height: 44px;
  justify-content: center;
}

.mobile-action-btn svg {
  width: 20px;
  height: 20px;
  color: #FFDF73;
}

.mobile-action-btn.whatsapp svg {
  color: #25D366;
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #FFF;
  z-index: 1100;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay.open {
  display: block;
  opacity: 1;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid #E2E8F0;
  margin-bottom: 20px;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-main);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.drawer-links a {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-teal-midnight);
  display: block;
  padding: 8px 0;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .divine-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .calc-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-tagline {
    display: none;
  }

  .top-bar-inner {
    justify-content: space-between;
    width: 100%;
  }

  .nav-links,
  .nav-actions .btn-primary {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .brand-logo-img {
    height: 48px;
    min-width: 160px;
  }

  .hero-title {
    font-size: 32px;
  }

  body.lang-or .hero-title {
    font-size: 28px;
  }

  .hero-image-card img.main-hero-img {
    height: 380px;
  }

  .divine-portrait-card img {
    height: 340px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    display: block;
  }

  body {
    padding-bottom: 65px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .calc-container {
    padding: 24px 16px;
  }

  .video-form-card {
    padding: 24px 18px;
  }
}
