/* ==========================================================================
   Maa Mangala Cloth Store — Haute-Couture Odia Bridal Design System
   Color Harmony: Imperial Mulberry Silk, Heirloom Champagne Gold & Warm Chiffon
   100% Fluid Responsive Engineering (320px — 2560px)
   ========================================================================== */

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

:root {
  /* Core Luxury Color Palette */
  --primary: #550C2A;              /* Imperial Mulberry Velvet */
  --primary-dark: #36051A;         /* Deep Obsidian Plum */
  --primary-light: #7B143E;        /* Rich Silk Berry */
  --primary-subtle: rgba(85, 12, 42, 0.05);
  --primary-glow: rgba(85, 12, 42, 0.18);

  /* Heirloom Champagne Gold (Zari Thread Shimmer) */
  --gold: #D4AF37;                 /* Zari Gold */
  --gold-light: #F7E6B8;           /* Champagne Glimmer */
  --gold-dark: #996515;            /* Antique Temple Bronze */
  --gold-gradient: linear-gradient(135deg, #FBF2D8 0%, #D4AF37 50%, #B8860B 100%);
  --mulberry-gradient: linear-gradient(135deg, #7B143E 0%, #550C2A 60%, #36051A 100%);
  --royal-dark-gradient: linear-gradient(145deg, #240311 0%, #420820 60%, #17020B 100%);

  /* Warm Canvas Surfaces */
  --bg-canvas: #FAF7F2;            /* Warm Raw Silk Canvas */
  --bg-soft: #F5EFEB;              /* Gentle Linen Sand */
  --bg-white: #FFFFFF;             /* Pure Pearl Card */
  --bg-rose: #FFF5F7;              /* Blushed Silk Accent */
  --rose-accent: #E15B78;          /* Sacred Sindoor Rose */

  /* Haute Typography Colors */
  --text-heading: #240311;         /* Deepest Plum Velvet */
  --text-body: #4A3E3D;            /* Rich Charcoal Brown */
  --text-muted: #786C6A;           /* Soft Sand Slate */
  
  /* Borders & Shadows */
  --border-subtle: #EDE4D8;
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-strong: rgba(212, 175, 55, 0.65);
  --card-shadow: 0 10px 30px rgba(54, 5, 26, 0.06);
  --card-shadow-hover: 0 20px 45px rgba(54, 5, 26, 0.14);
  --card-shadow-glow: 0 15px 40px rgba(212, 175, 55, 0.2);

  /* Dimensions & Timing */
  --transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-width: 1240px;
}

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

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

body {
  font-family: 'Plus Jakarta Sans', 'Anek Odia', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-canvas);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.lang-or {
  font-family: 'Anek Odia', 'Plus Jakarta Sans', sans-serif;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3.5vw, 2rem);
}

/* ==========================================================================
   Section Headers & Common Components
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-subtle);
  color: var(--primary);
  border: 1px solid var(--border-gold);
  padding: 0.42rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.78rem, 1.8vw, 0.86rem);
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.22;
  margin-bottom: 0.85rem;
  letter-spacing: 0.3px;
}

body.lang-or .section-title {
  font-family: 'Anek Odia', sans-serif;
  font-weight: 900;
}

.section-subtitle {
  font-size: clamp(0.96rem, 2vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.68;
}

/* Haute Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-primary {
  background: var(--mulberry-gradient);
  color: #FFFDF7;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 20px rgba(85, 12, 42, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8E1949 0%, #630F32 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(85, 12, 42, 0.42);
  color: #FFFDF7;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-weight: 900;
  border: 1px solid #C59B27;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.32);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #FFFDF7 0%, #E5C365 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
  color: var(--primary-dark);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}

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

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. Festive Top Notice Bar (Fully Responsive)
   ========================================================================== */
.top-bar {
  background: var(--royal-dark-gradient);
  color: #F7E6B8;
  padding: 0.55rem 0;
  font-size: 0.85rem;
  border-bottom: 1.5px solid var(--border-gold);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.top-bar-notice {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(212, 175, 55, 0.16);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 0.22rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: #F7E6B8;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #D4AF37;
  border-radius: 50%;
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px #D4AF37; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.top-phone-link {
  color: #F7E6B8;
  font-weight: 800;
  font-size: 0.85rem;
}

.top-phone-link:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   2. Main Navigation Header (Fluid & Sticky)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 22px rgba(54, 5, 26, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.6rem, 1.8vw, 0.85rem) 0;
  gap: 1rem;
}

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

.main-logo-svg {
  height: clamp(44px, 6.5vw, 58px);
  width: auto;
  max-width: clamp(210px, 46vw, 360px);
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.35rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-heading);
  padding: 0.5rem 0.2rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-white);
  border: 1.5px solid var(--gold);
  color: var(--primary);
  padding: 0.45rem 0.9rem;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle-btn:hover {
  background: var(--gold-gradient);
  color: var(--primary-dark);
}

.mobile-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border: 1.5px solid var(--border-subtle);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-toggle-btn:hover {
  background: var(--primary-subtle);
  border-color: var(--gold);
}

@media (min-width: 1024px) {
  .mobile-toggle-btn {
    display: none;
  }
}

/* Mobile Slide-Out Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 3, 17, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--bg-canvas);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.25);
  border-left: 2px solid var(--gold);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-white);
}

.drawer-close-btn {
  background: var(--bg-rose);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-nav {
  padding: 1.25rem;
  flex: 1;
  overflow-y: auto;
}

.drawer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.drawer-link {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  color: var(--text-heading);
  transition: var(--transition);
}

.drawer-link:hover, .drawer-link.active {
  background: var(--bg-rose);
  color: var(--primary);
  border-left: 3px solid var(--primary);
}

.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-white);
}

/* ==========================================================================
   3. Hero Section (Ultra Responsive)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: radial-gradient(ellipse at 85% 15%, rgba(212, 175, 55, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 15% 85%, rgba(123, 20, 62, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, #FDFBF7 0%, #FAF7F2 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-subtle);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 0.42rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.8rem, 1.8vw, 0.88rem);
  font-weight: 800;
  width: fit-content;
}

.hero-title {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5.2vw, 3.5rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.18;
}

body.lang-or .hero-title {
  font-family: 'Anek Odia', sans-serif;
  font-weight: 900;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #550C2A 0%, #996515 50%, #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.35rem;
}

@media (max-width: 480px) {
  .hero-ctas .btn {
    width: 100%;
  }
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 380px) {
  .hero-trust-list {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: clamp(0.84rem, 1.8vw, 0.92rem);
  color: var(--text-heading);
}

.trust-icon {
  font-size: 1.15rem;
  color: var(--gold);
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(54, 5, 26, 0.18);
  border: 4px solid var(--bg-white);
  background: var(--bg-white);
}

.hero-image-card img {
  width: 100%;
  height: clamp(340px, 50vw, 480px);
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-floating-badge {
  position: absolute;
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  left: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(255, 253, 247, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-left: 4px solid var(--primary);
  border-top: 1px solid var(--border-gold);
}

.badge-text-bold {
  font-weight: 900;
  color: var(--text-heading);
  font-size: clamp(0.88rem, 2vw, 0.98rem);
}

.badge-text-sub {
  font-size: clamp(0.75rem, 1.6vw, 0.82rem);
  color: var(--text-muted);
}

/* ==========================================================================
   4. Collections Section (Smooth Mobile Horizontal Filter)
   ========================================================================== */
.collections-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
}

.category-tabs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.25rem 0.25rem 0.75rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

@media (min-width: 1024px) {
  .category-tabs {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.cat-tab-btn {
  background: var(--bg-soft);
  border: 1.5px solid var(--border-subtle);
  color: var(--text-body);
  padding: 0.6rem 1.25rem;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.cat-tab-btn:hover, .cat-tab-btn.active {
  background: var(--primary);
  color: #FFFDF7;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(85, 12, 42, 0.25);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 640px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.collection-card {
  background: var(--bg-canvas);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--gold);
}

.card-img-wrapper {
  position: relative;
  height: clamp(230px, 32vw, 270px);
  overflow: hidden;
  background: #110207;
}

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

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

.card-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(36, 3, 17, 0.88);
  backdrop-filter: blur(4px);
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.32rem 0.8rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.card-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: clamp(1.18rem, 2vw, 1.32rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

body.lang-or .card-title {
  font-family: 'Anek Odia', sans-serif;
  font-weight: 900;
}

.card-desc {
  font-size: clamp(0.88rem, 1.6vw, 0.94rem);
  color: var(--text-muted);
  line-height: 1.62;
  margin-bottom: 1.35rem;
  flex: 1;
}

.card-action {
  margin-top: auto;
}

/* ==========================================================================
   5. Virtual Video Shopping Concierge
   ========================================================================== */
.concierge-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--royal-dark-gradient);
  color: #FFFDF7;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.concierge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 992px) {
  .concierge-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.concierge-content .section-badge {
  background: rgba(212, 175, 55, 0.16);
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.4);
}

.concierge-content .section-title {
  color: #FFFDF7;
}

.concierge-content .section-subtitle {
  color: #F7E6B8;
}

.concierge-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 2.25rem;
}

.concierge-step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(247, 230, 184, 0.2);
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.step-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 0.3rem;
}

.step-card-desc {
  font-size: 0.92rem;
  color: #FFE4E8;
}

.concierge-visual {
  position: relative;
}

.concierge-phone-mockup {
  position: relative;
  max-width: 310px;
  margin: 0 auto;
  border-radius: 36px;
  padding: 10px;
  background: #1A030C;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  border: 3px solid var(--gold);
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.phone-screen img {
  width: 100%;
  height: clamp(360px, 45vw, 420px);
  object-fit: cover;
}

.phone-overlay-badge {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  background: rgba(36, 3, 17, 0.92);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  border: 1px solid var(--border-gold);
}

/* ==========================================================================
   6. Showroom Tour & Gallery
   ========================================================================== */
.tour-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-canvas);
  border-bottom: 1px solid var(--border-subtle);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

@media (min-width: 540px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: clamp(220px, 28vw, 290px);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  background: #000;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.15rem 0.95rem 0.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(36, 3, 17, 0.92) 100%);
  color: #FFFDF7;
  font-weight: 800;
  font-size: clamp(0.82rem, 1.6vw, 0.88rem);
}

/* ==========================================================================
   7. About Us & Heritage
   ========================================================================== */
.about-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-stack {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 4px solid var(--bg-white);
}

.about-main-img img {
  width: 100%;
  height: clamp(300px, 42vw, 420px);
  object-fit: cover;
}

.about-badge-card {
  position: absolute;
  bottom: -1.25rem;
  right: 1.25rem;
  background: var(--mulberry-gradient);
  padding: 1.1rem 1.6rem;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(54, 5, 26, 0.35);
  border: 2px solid var(--gold);
  color: #FFFDF7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin-top: 1.85rem;
}

.stat-box {
  background: var(--bg-canvas);
  padding: clamp(1rem, 2.5vw, 1.4rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: clamp(0.76rem, 1.6vw, 0.84rem);
  font-weight: 800;
  color: var(--text-muted);
}

/* ==========================================================================
   8. Wedding Consultation Form (Mobile Optimized)
   ========================================================================== */
.wedding-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-canvas);
  border-bottom: 1px solid var(--border-subtle);
}

.wedding-card {
  background: var(--bg-white);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(1.85rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(54, 5, 26, 0.08);
}

.wedding-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .wedding-form {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-group-full {
    grid-column: span 2;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-heading);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  background: #FFFFFF;
  font-size: 16px; /* Prevents auto-zoom on iOS Safari */
  color: var(--text-body);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(85, 12, 42, 0.12);
}

.form-textarea {
  min-height: 95px;
  resize: vertical;
}

/* ==========================================================================
   9. Reviews & FAQ
   ========================================================================== */
.reviews-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-canvas);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}

.review-text {
  font-size: clamp(0.88rem, 1.6vw, 0.94rem);
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  flex: 1;
  font-style: italic;
}

.review-author-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: #FFFDF7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  border: 1px solid var(--gold);
}

.author-name {
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-heading);
}

.author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.faq-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-canvas);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #FFFFFF;
  transition: var(--transition);
}

.faq-question-btn {
  width: 100%;
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(1.1rem, 3vw, 1.45rem);
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: clamp(0.94rem, 2vw, 1.02rem);
  font-weight: 800;
  color: var(--text-heading);
  cursor: pointer;
  gap: 0.85rem;
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--primary);
  flex-shrink: 0;
}

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

.faq-answer {
  padding: 0 clamp(1.1rem, 3vw, 1.45rem) 1.15rem;
  font-size: clamp(0.88rem, 1.8vw, 0.94rem);
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   10. Contact & Location
   ========================================================================== */
.contact-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-subtle);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-card {
  background: var(--bg-canvas);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 1.85rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-row {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-xs);
  background: var(--bg-rose);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.contact-detail-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-detail-val {
  font-size: clamp(0.95rem, 2vw, 1.02rem);
  font-weight: 800;
  color: var(--text-heading);
}

.map-container {
  height: 100%;
  min-height: clamp(300px, 45vw, 380px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 4px solid var(--bg-white);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 45vw, 380px);
  border: none;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */
.main-footer {
  background: var(--royal-dark-gradient);
  color: #F7E6B8;
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3.5rem;
}

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

.footer-brand p {
  margin-top: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #FFE4E8;
}

.footer-title {
  color: var(--gold-light);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.15rem;
  letter-spacing: 0.5px;
}

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

.footer-links a {
  color: #FFE4E8;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 1.85rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  font-size: 0.84rem;
  color: #F7E6B8;
}

/* ==========================================================================
   12. Floating Action Bar (Safe Area Compliant)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 1000;
}

.fab-btn {
  width: clamp(48px, 6vw, 54px);
  height: clamp(48px, 6vw, 54px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
  touch-action: manipulation;
}

.fab-whatsapp {
  background: #25D366;
}

.fab-whatsapp:hover {
  background: #20BA5A;
  transform: scale(1.08);
}

.fab-call {
  background: var(--primary);
  border: 1px solid var(--gold);
}

.fab-call:hover {
  background: #7B143E;
  transform: scale(1.08);
}
