/* ==========================================================================
   PRINCE & SANJAY JEWELLERS (PSJ) - MASTER LUXURY DESIGN SYSTEM (2026)
   Theme: Royal Himalayan Obsidian & 24K Solid Gold Foil (Est. 1956)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Outfit:wght@300;400;500;600;700;800&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

:root {
  /* Surfaces */
  --bg-obsidian: #050408;
  --bg-noir: #09070E;
  --bg-deep: #0D0A14;
  --bg-card: rgba(18, 14, 26, 0.9);
  --bg-card-elevated: rgba(26, 20, 38, 0.96);
  --bg-glass: rgba(10, 8, 16, 0.85);

  /* 24K Royal Gold Gradients */
  --gold-foil: linear-gradient(135deg, #FFF6D6 0%, #E6C265 25%, #C59A27 50%, #F9E7B9 75%, #A67C1E 100%);
  --gold-metallic: linear-gradient(135deg, #FFF8DE 0%, #D4AF37 40%, #AA771C 70%, #F4E2B2 100%);
  --gold-pure: #D4AF37;
  --gold-champagne: #FDF4DC;
  --gold-amber: #ECC86F;

  /* Accents */
  --crimson-royal: #8A001A;
  --emerald-live: #25D366;
  --emerald-gradient: linear-gradient(135deg, #2EE872 0%, #1FB855 50%, #128C4A 100%);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Cinzel', Georgia, serif;
  --font-display: 'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hindi: 'Tiro Devanagari Hindi', 'Outfit', serif;

  /* Text Colors */
  --text-main: #FFFFFF;
  --text-cream: #FAF8F5;
  --text-gold: #FCE198;
  --text-muted: #A8A5BD;

  /* Borders & Shadows */
  --border-gold-subtle: rgba(212, 175, 55, 0.25);
  --border-gold-bright: rgba(212, 175, 55, 0.65);
  --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.75);
  --shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(212, 175, 55, 0.35);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Luxury Scrollbar (Eliminates Windows Gray Default) */
::-webkit-scrollbar {
  width: 8px;
  background: #040306;
}
::-webkit-scrollbar-track {
  background: #040306;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #D4AF37 0%, #8C6514 100%);
  border-radius: 4px;
  border: 2px solid #040306;
}
::-webkit-scrollbar-thumb:hover {
  background: #E6C265;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg-obsidian);
  overflow-x: hidden;
}

body {
  background-color: var(--bg-obsidian);
  color: var(--text-cream);
  font-family: var(--font-sans);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  width: 100%;
}

body.lang-hi {
  font-family: var(--font-hindi);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-champagne);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.65;
}

.gold-text {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-foil);
  color: #07070A !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
  border: none;
}
.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.75);
}

.btn-outline-gold {
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid var(--border-gold-bright);
  color: var(--gold-champagne);
  font-weight: 700;
}
.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-pure);
  color: #FFFFFF;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: var(--emerald-gradient);
  color: #FFF !important;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  border: none;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.65);
}

/* Master Frosted Luxury Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 6, 12, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: none;
}

.brand-names {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #AA771C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-pure);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: #E2DFD8;
  padding: 6px 0;
  position: relative;
  letter-spacing: 0.3px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-pure);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-pure), transparent);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-bag-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #E6C265 0%, #D4AF37 50%, #996F15 100%);
  color: #07060A !important;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid #FFE89E;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.header-bag-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 18, 36, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-gold-subtle);
  color: var(--gold-champagne);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lang-switch-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-pure);
  color: #FFF;
}

.mobile-menu-toggle {
  display: none;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-sm);
  color: var(--gold-champagne);
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   FLAGSHIP ROYAL LUXURY HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 65px 0 55px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 78% 38%, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 65%),
    radial-gradient(circle at 18% 60%, rgba(140, 10, 36, 0.28) 0%, rgba(90, 5, 20, 0.12) 40%, transparent 60%),
    radial-gradient(circle at 50% 0%, #170E22 0%, #08060C 60%, #040306 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-heritage-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(140, 10, 36, 0.25) 100%);
  border: 1.5px solid #E6C265;
  color: #FFF4D4;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  padding: 7px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(14px);
}
.hero-heritage-tag i {
  color: #FFD700;
  font-size: 0.8rem;
  filter: none;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #FFFDF9;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
}

.hero-headline .gold-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, #FFFBEB 0%, #FFE07A 25%, #E5B42C 50%, #FFD666 75%, #A87614 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: none;
}

.hero-desc {
  font-size: clamp(0.98rem, 1.7vw, 1.14rem);
  color: #ECE8E0;
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 580px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #FFF3CC 0%, #FFD866 25%, #E0A81D 50%, #FFDF80 75%, #B37D0B 100%);
  color: #050407 !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px rgba(224, 168, 29, 0.55), 0 0 20px rgba(255, 216, 102, 0.35);
  border: 1px solid #FFF8DE;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(224, 168, 29, 0.85);
}

.btn-hero-kumaoni {
  background: linear-gradient(135deg, rgba(140, 10, 36, 0.45) 0%, rgba(20, 12, 28, 0.75) 100%);
  backdrop-filter: blur(12px);
  border: 1.5px solid #E6C265;
  color: #FFF4D4 !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 20px rgba(140, 10, 36, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-kumaoni:hover {
  background: linear-gradient(135deg, rgba(170, 15, 45, 0.65) 0%, rgba(35, 20, 48, 0.85) 100%);
  border-color: #FFD700;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
}

.btn-hero-secondary {
  background: rgba(18, 14, 26, 0.75);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  color: #FDF4DC !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #FFD700;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Minimalist Stat Counter Bar */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 34px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding-top: 26px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  background: linear-gradient(135deg, #FFF6D6 0%, #E5B42C 50%, #A87614 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  filter: none;
}
.metric-label {
  font-size: 0.74rem;
  color: #BDBAC9;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
  font-weight: 600;
}

.metric-divider {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

/* Clean Royal Showcase Frame with Gold Halo */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.hero-visual-glow {
  position: absolute;
  inset: -20px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(229, 180, 44, 0.45) 0%, rgba(140, 10, 36, 0.25) 50%, transparent 75%);
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(229, 180, 44, 0.75);
  border-radius: 26px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(35, 20, 48, 0.9) 0%, rgba(12, 8, 18, 0.98) 100%);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.98), 0 0 45px rgba(212, 175, 55, 0.45);
  overflow: hidden;
  width: 100%;
}

.hero-visual-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 490px;
  background: #08050C;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.04);
}

.hero-pill-top-left {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(12, 8, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid #E6C265;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  color: #FFF4D4;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}
.hero-pill-top-left i {
  color: #FFD700;
  filter: none;
}

.hero-pill-bottom-right {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(12, 8, 18, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid #E6C265;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: #FFF4D4;
  font-size: 0.76rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.85);
}
.hero-pill-bottom-right i {
  color: #FFD700;
  filter: none;
}

/* ==========================================================================
   SHOP BY CATEGORY SHOWCASE
   ========================================================================== */
.category-showcase-section {
  padding: 50px 0 30px;
  background: linear-gradient(180deg, #07060A 0%, #0D0B14 100%);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card-luxury {
  background: rgba(14, 11, 20, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.category-card-luxury:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold-bright);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
}

.category-card-img-wrap {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.6) 0%, rgba(170, 119, 28, 0.3) 100%);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.category-card-luxury:hover .category-card-img-wrap {
  transform: scale(1.06);
}
.category-card-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #07060A;
  border: 2px solid #07060A;
}
.category-card-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 2px;
}
.category-card-luxury:hover .category-card-title {
  color: var(--gold-pure);
}
.category-card-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* ==========================================================================
   SHOP BY WEDDING CEREMONY (TANISHQ RIVAISHA STYLE)
   ========================================================================== */
.ceremony-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #07060A 0%, #0D0A14 100%);
  border-bottom: 1px solid var(--border-gold-subtle);
}

.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.ceremony-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-gold-subtle);
  background: #08060C;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-card);
}
.ceremony-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-hover);
}

.ceremony-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #000;
}
.ceremony-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.ceremony-card:hover .ceremony-img {
  transform: scale(1.06);
}

.ceremony-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 6, 10, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.ceremony-badge-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold-pure);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}
.ceremony-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1.2;
}
.ceremony-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   DIGITAL STOREFRONT CATALOG GRIDS & CONTROLS
   ========================================================================== */
.store-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.store-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-cream);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.store-tab-btn:hover, .store-tab-btn.active {
  background: var(--gold-foil);
  color: #07070A !important;
  font-weight: 800;
  border-color: var(--gold-pure);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.45);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.catalog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-card);
}
.catalog-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-img-wrap {
  width: 100%;
  height: 250px;
  background: #0B0912;
  position: relative;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.catalog-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-tag-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(7, 6, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-pure);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 6px;
  line-height: 1.25;
}
.card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.card-store-avail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #25D366;
  font-weight: 600;
}
.card-store-avail-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
}

/* ==========================================================================
   VIDEO CONSULTATION, REVIEWS & FAQ
   ========================================================================== */
.video-consult-card {
  background: linear-gradient(135deg, rgba(30, 22, 44, 0.95) 0%, rgba(12, 10, 18, 0.98) 100%);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 35px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: #FFB800;
  font-size: 0.92rem;
  margin-bottom: 10px;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-cream);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-gold-subtle);
  padding-top: 10px;
}
.author-name {
  font-weight: 700;
  color: var(--gold-champagne);
  font-size: 0.88rem;
}
.author-loc {
  font-size: 0.74rem;
  color: var(--text-muted);
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #25D366;
  font-size: 0.72rem;
  font-weight: 700;
}

.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}
.faq-item.active {
  border-color: var(--border-gold-bright);
}
.faq-question {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-champagne);
  user-select: none;
}
.faq-answer {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   MINIMALIST COMPACT FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp-concierge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B3D2F 0%, #0D2219 100%);
  border: 1.5px solid var(--border-gold-bright);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.45rem;
  z-index: 9990;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.floating-whatsapp-concierge:hover {
  transform: translateY(-3px) scale(1.08);
  border-color: var(--gold-pure);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.95), 0 0 25px rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
  background: #25D366;
}
.concierge-pulse-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #060B08;
  box-shadow: 0 0 8px #25D366;
}
.floating-whatsapp-concierge::after {
  content: 'WhatsApp Concierge';
  position: absolute;
  right: 58px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(10, 8, 14, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-champagne);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8);
}
.floating-whatsapp-concierge:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ==========================================================================
   DRAWER, APPOINTMENT MODAL & FOOTER
   ========================================================================== */
.bag-overlay, .drawer-overlay, .appointment-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10001;
  display: none;
}
.bag-overlay.active, .drawer-overlay.active, .appointment-modal-overlay.active {
  display: block;
}
.appointment-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 10006;
}

.store-bag-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: #0B0912;
  border-left: 1.5px solid var(--border-gold-bright);
  z-index: 10002;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.95);
}
.store-bag-drawer.open {
  right: 0;
}
.bag-items-list {
  flex: 1;
  overflow-y: auto;
  margin: 16px 0;
  padding-right: 4px;
}
.bag-footer-panel {
  border-top: 1px solid var(--border-gold-subtle);
  padding-top: 16px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0B0912;
  border-left: 1.5px solid var(--border-gold-bright);
  z-index: 9999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 40px rgba(0,0,0,0.95);
  overflow-y: auto;
}
.mobile-drawer.open {
  right: 0;
}
.mobile-drawer .btn {
  width: 100%;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
}

.appointment-modal-box {
  background: #0E0B16;
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 34px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.3);
}
.modal-close-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--gold-champagne);
  font-size: 1.4rem;
  cursor: pointer;
}
.appt-input-group {
  margin-bottom: 18px;
}
.appt-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-pure);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.appt-select, .appt-input {
  width: 100%;
  background: #07050B;
  border: 1.5px solid var(--border-gold-subtle);
  color: #FFF;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
}

.footer {
  background: #040307;
  border-top: 1.5px solid var(--border-gold-subtle);
  padding: 0 0 35px;
}
.footer-newsletter-strip {
  background: linear-gradient(135deg, rgba(26, 18, 40, 0.95) 0%, rgba(12, 10, 18, 0.98) 100%);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 35px 0;
  margin-bottom: 50px;
}
.footer-newsletter-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.footer-newsletter-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-champagne);
  margin-bottom: 4px;
}
.footer-newsletter-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 45px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-champagne);
  letter-spacing: 1.5px;
}
.footer-brand-tagline {
  font-size: 0.68rem;
  color: var(--gold-pure);
  letter-spacing: 1.5px;
  font-weight: 600;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-champagne);
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  position: relative;
  padding-bottom: 8px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-pure);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  color: var(--gold-pure);
  transform: translateX(4px);
}
.footer-store-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.footer-store-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 2px;
}
.footer-store-address {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 4px;
}
.footer-store-contact {
  font-size: 0.8rem;
  color: var(--gold-pure);
}
.footer-trust-strip {
  border-top: 1px solid var(--border-gold-subtle);
  border-bottom: 1px solid var(--border-gold-subtle);
  padding: 20px 0;
  margin-bottom: 25px;
}
.footer-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  text-align: center;
}
.footer-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.footer-trust-badge i {
  color: var(--gold-pure);
  font-size: 1.15rem;
}
.footer-trust-badge span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-cream);
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .category-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ceremony-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 35px;
    text-align: center;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-headline {
    font-size: clamp(1.9rem, 7vw, 2.7rem);
  }
  .hero-desc {
    font-size: 0.92rem;
    margin: 0 auto 24px;
  }
  .hero-cta-group {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-cta-group .btn-hero-primary,
  .hero-cta-group .btn-hero-kumaoni,
  .hero-cta-group .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-trust-metrics {
    justify-content: center;
    gap: 20px;
  }
  .hero-visual-img-wrap {
    height: 360px;
  }
  .category-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ceremony-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .video-consult-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .floating-whatsapp-concierge {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .floating-whatsapp-concierge::after {
    display: none;
  }
}
/* ==========================================================================
   SUBPAGES DESIGN SYSTEM (CALCULATOR, STORY, HERITAGE, SHOPS & COLLECTIONS)
   ========================================================================== */

/* 1. Gold Calculator & Live Rates Matrix */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 35px;
}

.rate-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
}
.rate-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.rate-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rate-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-champagne);
}
.rate-purity-tag {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-pure);
  border: 1px solid var(--border-gold-bright);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.rate-trend-up {
  color: #25D366;
  font-size: 0.76rem;
  font-weight: 700;
}

.rate-val-large {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-pure);
  line-height: 1.1;
  margin-bottom: 4px;
}
.rate-subtext {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.rate-history-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border-gold-subtle);
}
.rate-history-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px 2px;
  border-radius: var(--radius-xs);
}
.rate-history-day {
  font-size: 0.64rem;
  color: var(--text-muted);
}
.rate-history-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-champagne);
}

/* Calculator Grid */
.calc-wrapper {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}
.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}
.calc-input-box {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.calc-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-pure);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.calc-select, .calc-input {
  width: 100%;
  background: #07050B;
  border: 1.5px solid var(--border-gold-subtle);
  color: #FFF;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-fast);
}
.calc-select:focus, .calc-input:focus {
  border-color: var(--gold-pure);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

.purity-pills-wrap, .weight-presets-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.purity-pill-btn, .weight-pill-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-cream);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.purity-pill-btn:hover, .purity-pill-btn.active,
.weight-pill-btn:hover, .weight-pill-btn.active {
  background: var(--gold-foil);
  color: #07060A !important;
  border-color: var(--gold-pure);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.4);
}

.unit-converter-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 10px;
}
.unit-converter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.unit-converter-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #0B0813;
  padding: 8px 4px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.unit-converter-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--gold-champagne);
}
.unit-converter-label {
  font-size: 0.66rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.calc-summary-panel {
  background: linear-gradient(135deg, rgba(26, 18, 40, 0.95) 0%, rgba(10, 8, 16, 0.98) 100%);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.calc-total-box {
  border-top: 1.5px solid var(--border-gold-bright);
  padding-top: 16px;
  margin-top: 16px;
}
.calc-total-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-pure);
  line-height: 1.1;
}

/* 2. Hallmarking 3-Pillars Guide */
.hallmark-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hallmark-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
}
.hallmark-step-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.hallmark-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(138, 0, 26, 0.2) 100%);
  border: 1.5px solid var(--border-gold-bright);
  color: var(--gold-pure);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hallmark-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 8px;
}
.hallmark-step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 3. Catalog Collections Toolbar & Props */
.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.store-search-bar {
  display: flex;
  align-items: center;
  background: rgba(22, 16, 32, 0.8);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  flex: 1;
  max-width: 420px;
}
.store-search-icon {
  color: var(--gold-pure);
  margin-right: 10px;
}
.store-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFF;
  outline: none;
  font-size: 0.88rem;
}
.store-sort-select {
  background: #0E0B16;
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-champagne);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  outline: none;
  font-size: 0.84rem;
}

.value-props-section {
  padding: 45px 0;
  border-top: 1px solid var(--border-gold-subtle);
}
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-prop-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.value-prop-icon {
  font-size: 1.8rem;
  color: var(--gold-pure);
  margin-bottom: 12px;
}
.value-prop-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 6px;
}
.value-prop-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* 4. 70-Yr Legacy Timeline */
.legacy-timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.legacy-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
}
.legacy-card:hover {
  border-color: var(--border-gold-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.legacy-img-wrap {
  height: 220px;
  overflow: hidden;
  background: #000;
}
.legacy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.legacy-card:hover .legacy-img {
  transform: scale(1.06);
}
.legacy-body {
  padding: 22px;
}
.legacy-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-pure);
  margin-bottom: 6px;
}
.legacy-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 8px;
}
.legacy-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 5. Store / Showrooms Guides */
.stores-grid, .collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 26px;
}
.store-card, .collection-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.store-card:hover, .collection-card:hover {
  border-color: var(--border-gold-bright);
  box-shadow: var(--shadow-hover);
}
.store-badge-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-pure);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

/* 6. Showrooms branch tabs & media frame */
.branches-section {
  padding: 60px 0;
}
.branch-tabs-header {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.branch-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid var(--border-gold-subtle);
  color: var(--gold-champagne);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.branch-tab-btn:hover, .branch-tab-btn.active {
  background: var(--gold-foil);
  color: #07070A !important;
  border-color: var(--gold-pure);
}
.branch-display-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
}
.branch-est-tag {
  font-size: 0.76rem;
  color: var(--gold-pure);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.branch-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.branch-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-cream);
}
.branch-detail-item i {
  color: var(--gold-pure);
  margin-top: 4px;
}
.branch-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.branch-media-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold-subtle);
  height: 100%;
  min-height: 280px;
}
.branch-media-frame iframe, .branch-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

@media (max-width: 768px) {
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .unit-converter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hallmark-guide-grid {
    grid-template-columns: 1fr;
  }
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .branch-display-card {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   GLOBAL UTILITY & COMPATIBILITY HELPERS
   ========================================================================== */
.open-appointment-btn {
  cursor: pointer;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 6, 12, 0.96);
  backdrop-filter: blur(20px);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-link {
  color: var(--text-cream);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-pure);
}

.section-subtitle, .modal-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}
.section-title-wrapper {
  text-align: center;
  margin-bottom: 35px;
}

.branch-info-content {
  display: flex;
  flex-direction: column;
}
.haldwani-shop-age, .today-day-en, .lang-en {
  font-weight: 600;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 10005;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.active {
  display: flex;
}
.modal-box {
  background: #0E0B16;
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 32px;
  position: relative;
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--gold-champagne);
  font-size: 1.4rem;
  cursor: pointer;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-champagne);
}
.form-group {
  margin-bottom: 16px;
}
.form-control {
  width: 100%;
  background: #07050B;
  border: 1px solid var(--border-gold-subtle);
  color: #FFF;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold-pure);
}
/* ==========================================================================
   BACK TO TOP, MOBILE DRAWER & OVERLAY FIXES
   ========================================================================== */

/* 1. Ultra-Luxury Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(14, 11, 20, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-gold-bright);
  color: var(--gold-champagne);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9980;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(212, 175, 55, 0.25);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-to-top-btn:hover {
  background: var(--gold-foil);
  color: #07060A;
  border-color: var(--gold-pure);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.95), 0 0 25px rgba(212, 175, 55, 0.6);
}

/* 2. Mobile Menu Toggle - Strictly Hidden on Desktop */
.mobile-menu-toggle {
  display: none !important;
  background: rgba(26, 18, 36, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  color: var(--gold-champagne);
  font-size: 1.1rem;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-pure);
  color: #FFF;
}

/* 3. Mobile Drawer & Overlays */
.drawer-overlay, .bag-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 8, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active, .bag-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #0D0A14;
  border-left: 1.5px solid var(--border-gold-bright);
  z-index: 9999;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.98);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-gold-subtle);
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.mobile-drawer-close {
  background: transparent;
  border: none;
  color: var(--gold-champagne);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-drawer-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-cream);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-drawer-links a i {
  color: var(--gold-pure);
  width: 20px;
}

.mobile-drawer-links a:hover, .mobile-drawer-links a.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-champagne);
}

@media (max-width: 1080px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* ==========================================================================
   ULTRA-LUXURY TWO-TIER E-COMMERCE HEADER (PRO TANISHQ / BLUESTONE STANDARD)
   ========================================================================== */

.main-header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 5, 11, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

/* Tier 1: Brand Logo, Universal Search & Quick Action Badges */
.header-primary-row {
  padding: 16px 0; /* Luxury flagship breathing space */
  min-height: 82px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.header-primary-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: none;
}

.brand-names {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #AA771C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.15;
}

.brand-subtitle {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-pure);
  text-transform: uppercase;
}

/* Universal Header Search Bar */
.header-search-container {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.header-search-wrap {
  display: flex;
  align-items: center;
  background: rgba(22, 16, 32, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  transition: all var(--transition-fast);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
}
.header-search-wrap:focus-within {
  border-color: var(--gold-pure);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35), inset 0 2px 6px rgba(0,0,0,0.5);
  background: rgba(30, 22, 44, 0.95);
}

.header-search-icon {
  color: var(--gold-pure);
  font-size: 0.9rem;
  margin-right: 10px;
}

.header-search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.86rem;
  outline: none;
  font-family: var(--font-sans);
}
.header-search-input::placeholder {
  color: #9E9AA8;
  font-size: 0.84rem;
}

.header-search-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8F8B9C;
  font-size: 0.88rem;
}
.header-search-actions i:hover {
  color: var(--gold-pure);
}

/* Search Autocomplete Live Dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #0E0B16;
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-md);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.95);
  z-index: 10010;
  max-height: 380px;
  overflow-y: auto;
  display: none;
}
.search-results-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-gold-subtle);
  text-decoration: none;
  transition: background 0.2s ease;
}
.search-result-item:hover {
  background: rgba(212, 175, 55, 0.15);
}
.search-result-img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-gold-subtle);
}
.search-result-info {
  flex: 1;
}
.search-result-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold-champagne);
}
.search-result-price {
  font-size: 0.78rem;
  color: var(--gold-pure);
}

/* Header Icon Actions */
.header-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-action-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-gold-subtle);
  color: var(--text-cream);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.header-action-badge i {
  color: var(--gold-pure);
  font-size: 0.86rem;
}
.header-action-badge:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-pure);
  color: #FFF;
  transform: translateY(-2px);
}

.header-bag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #E6C265 0%, #D4AF37 50%, #996F15 100%);
  color: #07060A !important;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid #FFE89E;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}
.header-bag-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7);
}

.header-bag-count {
  background: #07060A;
  color: #FFE89E;
  font-size: 0.72rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26, 18, 36, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold-subtle);
  color: var(--gold-champagne);
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lang-switch-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-pure);
  color: #FFF;
}

/* Tier 2: Category Quick Bar */
.header-category-strip {
  background: rgba(5, 4, 8, 0.98);
  padding: 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.category-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.cat-nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #E2DFD8;
  padding: 4px 0;
  position: relative;
  letter-spacing: 0.3px;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.cat-nav-item a i {
  color: var(--gold-pure);
  font-size: 0.78rem;
}
.cat-nav-item a:hover, .cat-nav-item.active a {
  color: var(--gold-pure);
}
.cat-nav-item.active a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-pure);
  border-radius: 2px;
}

@media (max-width: 1120px) {
  .header-search-container {
    max-width: 320px;
  }
  .header-action-badge span {
    display: none;
  }
  .category-nav-list {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .header-category-strip {
    display: none;
  }
  .header-search-container {
    display: none;
  }
  .header-primary-flex {
    gap: 10px;
  }
  .header-action-badge {
    display: none;
  }
}

/* ==========================================================================
   FLAGSHIP HEADER POLISH & REFINEMENTS (TANISHQ & BULGARI MASTER LEVEL)
   ========================================================================== */

/* Enhanced Category Strip - Even Distribution & Gold Micro-Hover */
.header-category-strip {
  background: rgba(6, 4, 10, 0.98);
  padding: 9px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.category-nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  width: 100%;
}

.cat-nav-item a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  font-weight: 600;
  color: #EDE9E1;
  padding: 4px 6px;
  position: relative;
  letter-spacing: 0.4px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.cat-nav-item a i {
  color: var(--gold-pure);
  font-size: 0.82rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.cat-nav-item a:hover {
  color: #FFFFFF;
}

.cat-nav-item a:hover i {
  transform: translateY(-2px) scale(1.15);
  color: #FFD700;
  filter: none;
}

.cat-nav-item.active a {
  color: var(--gold-champagne);
  font-weight: 700;
}

.cat-nav-item.active a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-pure), transparent);
  box-shadow: 0 0 8px var(--gold-pure);
  border-radius: 2px;
}

/* Tooltip on Action Buttons */
.header-icon-btn {
  position: relative;
}

.header-icon-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(10, 8, 16, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold-bright);
  color: var(--gold-champagne);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.85);
  z-index: 10015;
}

.header-icon-btn:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1180px) {
  .category-nav-list {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
}
/* ==========================================================================
   PURE MINIMALIST ICON ACTIONS (NO TEXT - HIGH LUXURY CARRIER STANDARD)
   ========================================================================== */

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 18, 36, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-gold-subtle);
  color: var(--gold-champagne);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-icon-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-pure);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45);
}

/* Gold Pill Shopping Bag Icon Button */
.header-bag-icon-btn {
  background: linear-gradient(135deg, #FFF0C2 0%, #E6C265 25%, #D4AF37 50%, #B8861E 100%);
  color: #07060A !important;
  border: 1.5px solid #FFF8DE;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.55);
}
.header-bag-icon-btn:hover {
  background: linear-gradient(135deg, #FFF5D6 0%, #FFDF80 30%, #E5B42C 60%, #AA771C 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.85);
}

.header-bag-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #07060A;
  color: #FFE89E;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-pure);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}
/* ==========================================================================
   UNIFIED SINGLE-TONE LUXURY HERO BACKGROUND
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
  background: #08060D !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.hero-visual-glow {
  position: absolute;
  inset: -15px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
  filter: blur(25px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 8px;
  background: #0D0A14;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  width: 100%;
}
/* ==========================================================================
   MATTE ROYAL LUXURY HERO SECTION (NON-BLACK & NO GLOW SHINES)
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 60px 0 50px;
  background: #181322 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Clean Matte Tag Pill */
.hero-heritage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #E8D3A2;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-heritage-tag i {
  color: #D4AF37;
  font-size: 0.75rem;
}

/* Crisp Headline - Zero Glowing Shines */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.14;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: none;
}

.hero-headline .gold-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #D8B257;
  background: none;
  -webkit-text-fill-color: #D8B257;
  filter: none;
  text-shadow: none;
}

.hero-desc {
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  color: #DDD8D0;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  text-shadow: none;
}

/* Clean Matte Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: #D4AF37;
  color: #140F1D !important;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.3px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  background: #E2C065;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-hero-kumaoni, .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #EFE8DA !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-hero-kumaoni:hover, .btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #D4AF37;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Minimalist Stat Counters - Zero Glowing Shadows */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #D8B257;
  background: none;
  -webkit-text-fill-color: #D8B257;
  line-height: 1.1;
  filter: none;
}
.metric-label {
  font-size: 0.72rem;
  color: #A9A4B5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.3);
}

/* Clean Royal Showcase Frame - No Bright Glow Halo */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-glow {
  display: none !important;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 6px;
  background: #1F192C;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 100%;
}

.hero-visual-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 480px;
  background: #151020;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.03);
}

.hero-pill-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(24, 18, 34, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: #EFE8DA;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-pill-top-left i {
  color: #D4AF37;
}

.hero-pill-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(24, 18, 34, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #EFE8DA;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-pill-bottom-right i {
  color: #D4AF37;
}
/* ==========================================================================
   ROYAL HERITAGE MAROON HERO SECTION (PURE MAROON SILK & MATTE GOLD)
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 60px 0 50px;
  background: #230D16 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Clean Matte Maroon Tag Pill */
.hero-heritage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F3E6C8;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-heritage-tag i {
  color: #D4AF37;
  font-size: 0.75rem;
}

/* Crisp Headline in Matte Gold on Deep Maroon */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.14;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: none;
}

.hero-headline .gold-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #D8B257;
  background: none;
  -webkit-text-fill-color: #D8B257;
  filter: none;
  text-shadow: none;
}

.hero-desc {
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  color: #E8E2D8;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  text-shadow: none;
}

/* Clean Matte Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: #D4AF37;
  color: #230D16 !important;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.3px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  background: #E2C065;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-hero-kumaoni, .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #F3E6C8 !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-hero-kumaoni:hover, .btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: #D4AF37;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Stat Counters on Maroon */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #D8B257;
  background: none;
  -webkit-text-fill-color: #D8B257;
  line-height: 1.1;
  filter: none;
}
.metric-label {
  font-size: 0.72rem;
  color: #C4B5A5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.3);
}

/* Deep Maroon Showcase Frame */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-glow {
  display: none !important;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 6px;
  background: #2D101C;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  width: 100%;
}

.hero-visual-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 480px;
  background: #1C0A12;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.03);
}

.hero-pill-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(35, 13, 22, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: #F3E6C8;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-pill-top-left i {
  color: #D4AF37;
}

.hero-pill-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(35, 13, 22, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #F3E6C8;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-pill-bottom-right i {
  color: #D4AF37;
}
/* ==========================================================================
   IMPERIAL CARMINE MAROON HERO SECTION (SABYASACHI & TANISHQ RIVAAH SHADE)
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 60px 0 50px;
  background: #2E0F1A !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Clean Matte Tag Pill */
.hero-heritage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F7EAD0;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-heritage-tag i {
  color: #D4AF37;
  font-size: 0.75rem;
}

/* Crisp Headline in Matte Gold on Imperial Carmine Maroon */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.14;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: none;
}

.hero-headline .gold-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #E2BC60;
  background: none;
  -webkit-text-fill-color: #E2BC60;
  filter: none;
  text-shadow: none;
}

.hero-desc {
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  color: #EFE9E0;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  text-shadow: none;
}

/* Clean Matte Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: #D4AF37;
  color: #260C15 !important;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.3px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  background: #E5C369;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-hero-kumaoni, .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F7EAD0 !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-hero-kumaoni:hover, .btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Stat Counters */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  padding-top: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #E2BC60;
  background: none;
  -webkit-text-fill-color: #E2BC60;
  line-height: 1.1;
  filter: none;
}
.metric-label {
  font-size: 0.72rem;
  color: #D3C4B6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.35);
}

/* Showcase Frame in Imperial Carmine Maroon Velvet */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-glow {
  display: none !important;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(212, 175, 55, 0.38);
  border-radius: 20px;
  padding: 6px;
  background: #381523;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  width: 100%;
}

.hero-visual-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 480px;
  background: #250B15;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.03);
}

.hero-pill-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(46, 15, 26, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: #F7EAD0;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-pill-top-left i {
  color: #D4AF37;
}

.hero-pill-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(46, 15, 26, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #F7EAD0;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-pill-bottom-right i {
  color: #D4AF37;
}
/* ==========================================================================
   DEEP MIDNIGHT MAROON HERO WITH SACRED KUMAONI AIPAN CULTURAL ENGRAVINGS
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 65px 0 55px;
  background-color: #19060E !important;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.045' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0l40 40-40 40zM40 10l30 30-30 30-30-30z'/%3E%3Ccircle cx='40' cy='40' r='5'/%3E%3Ccircle cx='0' cy='0' r='3'/%3E%3Ccircle cx='80' cy='0' r='3'/%3E%3Ccircle cx='0' cy='80' r='3'/%3E%3Ccircle cx='80' cy='80' r='3'/%3E%3Ccircle cx='40' cy='0' r='2'/%3E%3Ccircle cx='0' cy='40' r='2'/%3E%3Ccircle cx='80' cy='40' r='2'/%3E%3Ccircle cx='40' cy='80' r='2'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
}

/* Subtle corner mandala cultural watermark */
.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Clean Matte Cultural Tag Pill */
.hero-heritage-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F7EAD0;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.hero-heritage-tag i {
  color: #D4AF37;
  font-size: 0.75rem;
}

/* Crisp Headline on Dark Midnight Maroon */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.14;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
  text-shadow: none;
}

.hero-headline .gold-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: #E2BC60;
  background: none;
  -webkit-text-fill-color: #E2BC60;
  filter: none;
  text-shadow: none;
}

.hero-desc {
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  color: #EFE9E0;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 580px;
  text-shadow: none;
}

/* Clean Matte Buttons */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: #D4AF37;
  color: #19060E !important;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.3px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all 0.25s ease;
}
.btn-hero-primary:hover {
  background: #E5C369;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-hero-kumaoni, .btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #F7EAD0 !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}
.btn-hero-kumaoni:hover, .btn-hero-secondary:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: #D4AF37;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

/* Stat Counters */
.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  padding-top: 24px;
}

.metric-item {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #E2BC60;
  background: none;
  -webkit-text-fill-color: #E2BC60;
  line-height: 1.1;
  filter: none;
}
.metric-label {
  font-size: 0.72rem;
  color: #D3C4B6;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.35);
}

/* Showcase Frame with Cultural Hairline Border */
.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-visual-glow {
  display: none !important;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 6px;
  background: #250A15;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  width: 100%;
}

.hero-visual-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 480px;
  background: #14050D;
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.03);
}

.hero-pill-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(25, 6, 14, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: #F7EAD0;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-pill-top-left i {
  color: #D4AF37;
}

.hero-pill-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(25, 6, 14, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #F7EAD0;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-pill-bottom-right i {
  color: #D4AF37;
}
/* ==========================================================================
   CLEAN CRISP MATTE STYLING (ZERO FUZZY GLOWS & ZERO LOGO DROP-SHADOWS)
   ========================================================================== */

/* 1. Remove all fuzzy drop-shadows on logo */
.brand-logo-img {
  filter: none !important;
  box-shadow: none !important;
}

/* 2. Remove all radial glow watermarks on hero background */
.hero-section::before, .hero-section::after {
  display: none !important;
  content: none !important;
}

.hero-visual-glow {
  display: none !important;
}

/* 3. Crisp Clean Matte Tag Pill */
.hero-heritage-tag {
  box-shadow: none !important;
  filter: none !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
}

.hero-heritage-tag i {
  filter: none !important;
  text-shadow: none !important;
}

/* 4. Crisp Clean Icons & Headings */
.cat-nav-item a:hover i,
.hero-headline .gold-text,
.metric-value,
.hero-pill-top-left i,
.hero-pill-bottom-right i {
  filter: none !important;
  text-shadow: none !important;
}
/* ==========================================================================
   ULTRA-LUXURY INTERACTIVE FINE JEWELLERY BUTTONS (OVERHAULED)
   ========================================================================== */

.btn-gold, .btn-hero-primary {
  background: linear-gradient(135deg, #E6C575 0%, #D4AF37 50%, #C59A27 100%) !important;
  color: #19060E !important;
  font-family: var(--font-sans);
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 13px 28px !important;
  border-radius: var(--radius-pill) !important;
  border: 1px solid rgba(255, 248, 222, 0.5) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6) !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-gold:hover, .btn-hero-primary:hover {
  background: linear-gradient(135deg, #F0D287 0%, #E2BE4E 50%, #D1A531 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.75) !important;
}

.btn-gold:active, .btn-hero-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-arrow-icon {
  font-size: 0.82rem;
  transition: transform 0.25s ease;
}
.btn-gold:hover .btn-arrow-icon, .btn-hero-primary:hover .btn-arrow-icon {
  transform: translateX(5px);
}

.btn-gem-icon {
  font-size: 0.85rem;
  color: #19060E;
}
/* ==========================================================================
   HAUTE JOAILLERIE VIP VIDEO CONSULTATION CARD (OVERHAULED)
   ========================================================================== */

.video-consult-card {
  background: #200B13 !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: var(--radius-lg) !important;
  padding: 42px !important;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75) !important;
  position: relative;
  overflow: hidden;
}

.video-consult-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 14px 0 12px;
}

.video-consult-desc {
  color: #E2DDD5;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 540px;
}

.video-consult-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8);
  height: 250px;
}

.video-consult-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.video-consult-card:hover .video-consult-img-wrap img {
  transform: scale(1.04);
}

.video-consult-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(20, 6, 12, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: #F7EAD0;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.video-consult-badge i {
  color: #25D366;
}

@media (max-width: 768px) {
  .video-consult-card {
    grid-template-columns: 1fr;
    padding: 26px !important;
    gap: 24px;
    text-align: center;
  }
  .video-consult-desc {
    margin: 0 auto 20px;
  }
  .video-consult-img-wrap {
    height: 200px;
  }
}
/* ==========================================================================
   MATTE CRISP HEADER ACTIONS (ZERO GLOW HALO & ZERO UGLY BROWSER TOOLTIPS)
   ========================================================================== */

.header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 18, 36, 0.7) !important;
  border: 1px solid var(--border-gold-subtle) !important;
  color: var(--gold-champagne) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
  filter: none !important;
}

.header-icon-btn:hover {
  background: rgba(212, 175, 55, 0.2) !important;
  border-color: var(--gold-pure) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6) !important;
}

/* Clean Solid Matte Gold Bag Button - Zero Glow Halo */
.header-bag-icon-btn {
  background: #D4AF37 !important;
  color: #19060E !important;
  border: 1px solid rgba(255, 248, 222, 0.5) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
  filter: none !important;
}

.header-bag-icon-btn:hover {
  background: #E5C369 !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.65) !important;
}

.header-bag-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #19060E !important;
  color: #FDF4DC !important;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-pure) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
}

/* Disable Custom Floating Tooltips if not wanted or keep subtle */
.header-icon-btn::after {
  display: none !important;
}
/* ==========================================================================
   LUXURY CUSTOM HOVER TOOLTIPS FOR HEADER ACTION ICONS
   ========================================================================== */

.header-icon-btn {
  position: relative !important;
}

/* Tooltip Pill */
.header-icon-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #180710 !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  color: #FDF4DC !important;
  font-family: var(--font-sans);
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  padding: 5px 12px !important;
  border-radius: var(--radius-pill) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9) !important;
  z-index: 10050 !important;
}

/* Tooltip Triangle Arrow */
.header-icon-btn::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  border-width: 0 5px 5px 5px;
  border-style: solid;
  border-color: transparent transparent #180710 transparent;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 10051 !important;
}

/* Show Tooltip on Hover */
.header-icon-btn:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-icon-btn:hover::after {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}
/* ==========================================================================
   PERFECT ZERO-OVERLAP LUXURY HOVER TOOLTIPS
   ========================================================================== */

.header-icon-btn {
  position: relative !important;
}

/* Tooltip Body - Isolated Solid Card */
.header-icon-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #14050D !important;
  border: 1px solid rgba(212, 175, 55, 0.55) !important;
  color: #FBF4E4 !important;
  font-family: var(--font-sans);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  line-height: 1 !important;
  padding: 5px 10px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.18s ease, transform 0.18s ease !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.95), 0 0 1px rgba(212, 175, 55, 0.4) !important;
  z-index: 100050 !important;
}

/* Pointer Arrow */
.header-icon-btn::after {
  content: '' !important;
  display: block !important;
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  border-width: 0 4px 5px 4px;
  border-style: solid;
  border-color: transparent transparent rgba(212, 175, 55, 0.55) transparent;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.18s ease, transform 0.18s ease !important;
  z-index: 100051 !important;
}

/* Rightmost button tooltip adjustment so it never overflows viewport */
.header-right-actions > .header-icon-btn:last-of-type::before {
  left: auto;
  right: 0;
  transform: translateY(4px);
}
.header-right-actions > .header-icon-btn:last-of-type::after {
  left: auto;
  right: 14px;
  transform: translateY(4px);
}

/* Reveal on Hover */
.header-icon-btn:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-right-actions > .header-icon-btn:last-of-type:hover::before {
  transform: translateY(0) !important;
}

.header-icon-btn:hover::after {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-right-actions > .header-icon-btn:last-of-type:hover::after {
  transform: translateY(0) !important;
}
/* ==========================================================================
   PERFECT TOP-FLOATING TOOLTIPS (ZERO OVERLAP WITH CATEGORY STRIP)
   ========================================================================== */

.header-icon-btn {
  position: relative !important;
}

/* Tooltip Pill - Floats ABOVE the button */
.header-icon-btn::before {
  content: attr(data-tooltip);
  position: absolute !important;
  bottom: calc(100% + 8px) !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-4px) !important;
  background: #14050D !important;
  border: 1px solid rgba(212, 175, 55, 0.6) !important;
  color: #FDF5E6 !important;
  font-family: var(--font-sans);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  line-height: 1 !important;
  padding: 5px 11px !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.18s ease, transform 0.18s ease !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.95), 0 0 1px rgba(212, 175, 55, 0.4) !important;
  z-index: 100050 !important;
}

/* Downward Pointer Arrow */
.header-icon-btn::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  bottom: calc(100% + 3px) !important;
  top: auto !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(-4px) !important;
  border-width: 5px 4px 0 4px !important;
  border-style: solid !important;
  border-color: rgba(212, 175, 55, 0.6) transparent transparent transparent !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.18s ease, transform 0.18s ease !important;
  z-index: 100051 !important;
}

/* Rightmost button adjustment */
.header-right-actions > .header-icon-btn:last-of-type::before {
  left: auto !important;
  right: 0 !important;
  transform: translateY(-4px) !important;
}
.header-right-actions > .header-icon-btn:last-of-type::after {
  left: auto !important;
  right: 14px !important;
  transform: translateY(-4px) !important;
}

/* Reveal on Hover */
.header-icon-btn:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-right-actions > .header-icon-btn:last-of-type:hover::before {
  transform: translateY(0) !important;
}

.header-icon-btn:hover::after {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-right-actions > .header-icon-btn:last-of-type:hover::after {
  transform: translateY(0) !important;
}
/* ==========================================================================
   PERFECT INNER-TIER FLOATING TOOLTIPS (ZERO CLIPPING & ZERO OVERLAP)
   ========================================================================== */

.header-top-tier {
  padding: 12px 0 16px !important;
  position: relative;
  z-index: 1000;
}

.header-icon-btn {
  position: relative !important;
}

/* Tooltip Pill - Sits cleanly below icon with ample headroom above category strip */
.header-icon-btn::before {
  content: attr(data-tooltip);
  position: absolute !important;
  top: calc(100% + 5px) !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(3px) !important;
  background: #14050D !important;
  border: 1px solid rgba(212, 175, 55, 0.65) !important;
  color: #FDF5E6 !important;
  font-family: var(--font-sans);
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  line-height: 1 !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.16s ease, transform 0.16s ease !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.95) !important;
  z-index: 100050 !important;
}

/* Pointer Arrow */
.header-icon-btn::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  top: calc(100% + 1px) !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(3px) !important;
  border-width: 0 4px 4px 4px !important;
  border-style: solid !important;
  border-color: transparent transparent rgba(212, 175, 55, 0.65) transparent !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.16s ease, transform 0.16s ease !important;
  z-index: 100051 !important;
}

/* Rightmost button alignment so it never overflows right edge */
.header-right-actions > .header-icon-btn:last-of-type::before {
  left: auto !important;
  right: 0 !important;
  transform: translateY(3px) !important;
}
.header-right-actions > .header-icon-btn:last-of-type::after {
  left: auto !important;
  right: 14px !important;
  transform: translateY(3px) !important;
}

/* Reveal on Hover */
.header-icon-btn:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-right-actions > .header-icon-btn:last-of-type:hover::before {
  transform: translateY(0) !important;
}

.header-icon-btn:hover::after {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-right-actions > .header-icon-btn:last-of-type:hover::after {
  transform: translateY(0) !important;
}
/* ==========================================================================
   PERFECT HERO PHOTO FRAMING & ART DIRECTION
   ========================================================================== */

.hero-visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 22px !important;
  padding: 8px !important;
  background: #250A15 !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85) !important;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
}

.hero-visual-img-wrap {
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
  height: 520px !important;
  background: #14050D !important;
}

.hero-visual-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 15% !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-visual-card:hover .hero-visual-img {
  transform: scale(1.03) !important;
}

.hero-pill-top-left {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(25, 6, 14, 0.94) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: #FDF5E6 !important;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.hero-pill-bottom-right {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(25, 6, 14, 0.94) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  color: #FDF5E6 !important;
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

@media (max-width: 991px) {
  .hero-visual-img-wrap {
    height: 440px !important;
  }
}

@media (max-width: 576px) {
  .hero-visual-img-wrap {
    height: 380px !important;
  }
}
/* ==========================================================================
   RESTORED ROYAL MAROON SILK BACKGROUND (#2E0F1A)
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 60px 0 50px;
  background-color: #2E0F1A !important;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.045' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0l40 40-40 40zM40 10l30 30-30 30-30-30z'/%3E%3Ccircle cx='40' cy='40' r='5'/%3E%3Ccircle cx='0' cy='0' r='3'/%3E%3Ccircle cx='80' cy='0' r='3'/%3E%3Ccircle cx='0' cy='80' r='3'/%3E%3Ccircle cx='80' cy='80' r='3'/%3E%3Ccircle cx='40' cy='0' r='2'/%3E%3Ccircle cx='0' cy='40' r='2'/%3E%3Ccircle cx='80' cy='40' r='2'/%3E%3Ccircle cx='40' cy='80' r='2'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
  overflow: hidden;
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 22px !important;
  padding: 8px !important;
  background: #381523 !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75) !important;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
}

.hero-visual-img-wrap {
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
  height: 520px !important;
  background: #250B15 !important;
}

.hero-pill-top-left,
.hero-pill-bottom-right {
  background: rgba(46, 15, 26, 0.95) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  color: #FDF5E6 !important;
}
/* ==========================================================================
   100% UNIFIED & MATCHED LUXURY ROYAL PALETTE (HEADER + STRIP + HERO)
   ========================================================================== */

/* 1. Seamless Flagship Header (Tier 1) */
.site-header-flagship {
  background: #180812 !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.header-top-tier {
  background: #180812 !important;
  padding: 12px 0 14px !important;
}

/* 2. Seamless Category Strip (Tier 2) */
.header-category-strip {
  background: #15060F !important;
  border-top: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
  padding: 10px 0 !important;
}

.cat-nav-item a {
  color: #EDE4D8 !important;
}
.cat-nav-item a:hover {
  color: #FFFFFF !important;
}
.cat-nav-item.active a {
  color: var(--gold-pure) !important;
}

/* 3. Seamless Hero Section */
.hero-section {
  position: relative;
  padding: 60px 0 55px;
  background-color: #180812 !important;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.045' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0l40 40-40 40zM40 10l30 30-30 30-30-30z'/%3E%3Ccircle cx='40' cy='40' r='5'/%3E%3Ccircle cx='0' cy='0' r='3'/%3E%3Ccircle cx='80' cy='0' r='3'/%3E%3Ccircle cx='0' cy='80' r='3'/%3E%3Ccircle cx='80' cy='80' r='3'/%3E%3Ccircle cx='40' cy='0' r='2'/%3E%3Ccircle cx='0' cy='40' r='2'/%3E%3Ccircle cx='80' cy='40' r='2'/%3E%3Ccircle cx='40' cy='80' r='2'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
  overflow: hidden;
}

/* 4. Matching Search Bar Surface */
.header-universal-search {
  background: rgba(15, 4, 10, 0.85) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
}
.header-universal-search:focus-within {
  border-color: var(--gold-pure) !important;
  background: rgba(18, 5, 12, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8) !important;
}

/* 5. Matching Action Buttons */
.header-icon-btn {
  background: rgba(30, 10, 22, 0.85) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  color: #FDF5E6 !important;
}
.header-icon-btn:hover {
  background: rgba(212, 175, 55, 0.22) !important;
  border-color: var(--gold-pure) !important;
  color: #FFFFFF !important;
}

/* 6. Matching Hero Visual Card */
.hero-visual-card {
  position: relative;
  z-index: 1;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: 22px !important;
  padding: 8px !important;
  background: #250C1A !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85) !important;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
}

.hero-visual-img-wrap {
  border-radius: 16px !important;
  overflow: hidden;
  position: relative;
  height: 520px !important;
  background: #14050D !important;
}

.hero-pill-top-left,
.hero-pill-bottom-right {
  background: rgba(24, 8, 18, 0.94) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  color: #FDF5E6 !important;
}
/* ==========================================================================
   CLEAN FLOATING TOOLTIP PILL (CONNECTOR DASH / ARROW COMPLETELY REMOVED)
   ========================================================================== */

/* 1. Completely remove the connector arrow / dash */
.header-icon-btn::after {
  display: none !important;
  content: none !important;
  border: none !important;
}

/* 2. Sleek, clean floating pill with no awkward connector */
.header-icon-btn::before {
  content: attr(data-tooltip);
  position: absolute !important;
  top: calc(100% + 6px) !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(2px) !important;
  background: #14050D !important;
  border: 1px solid rgba(212, 175, 55, 0.6) !important;
  color: #FDF5E6 !important;
  font-family: var(--font-sans);
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  line-height: 1 !important;
  padding: 4px 9px !important;
  border-radius: 4px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.15s ease, transform 0.15s ease !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.9) !important;
  z-index: 100050 !important;
}

/* Rightmost button alignment */
.header-right-actions > .header-icon-btn:last-of-type::before {
  left: auto !important;
  right: 0 !important;
  transform: translateY(2px) !important;
}

/* Reveal on Hover */
.header-icon-btn:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}

.header-right-actions > .header-icon-btn:last-of-type:hover::before {
  transform: translateY(0) !important;
}
/* ==========================================================================
   MATCHED SEARCH ACTION ICON TOOLTIPS (ZERO NATIVE GREY POPUPS)
   ========================================================================== */

.search-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative !important;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
  font-size: 0.95rem;
  padding: 4px;
}

.search-action-icon:hover {
  color: var(--gold-pure);
  transform: scale(1.1);
}

.search-action-icon::before {
  content: attr(data-tooltip);
  position: absolute !important;
  top: calc(100% + 8px) !important;
  bottom: auto !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(2px) !important;
  background: #14050D !important;
  border: 1px solid rgba(212, 175, 55, 0.6) !important;
  color: #FDF5E6 !important;
  font-family: var(--font-sans);
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.4px;
  line-height: 1 !important;
  padding: 4px 9px !important;
  border-radius: 4px !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.15s ease, transform 0.15s ease !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.9) !important;
  z-index: 100050 !important;
}

.search-action-icon:hover::before {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
}
/* ==========================================================================
   HAUTE JOAILLERIE SECTION HEADERS (CLEAN, SPACIOUS, UNCLUTTERED)
   ========================================================================== */

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 38px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.section-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}
/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE FIXES (ALL SCREENS)
   ========================================================================== */

/* 1. Hero Grid Responsive Collapse */
@media (max-width: 991px) {
  .hero-section {
    padding: 40px 0 45px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center !important;
  }

  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 6vw, 2.8rem) !important;
    margin-bottom: 14px !important;
  }

  .hero-desc {
    margin: 0 auto 24px !important;
    font-size: 0.95rem !important;
    max-width: 100% !important;
  }

  .hero-cta-group {
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 30px !important;
  }

  .btn-hero-primary, .btn-hero-kumaoni, .btn-hero-secondary {
    width: 100% !important;
    max-width: 320px !important;
    justify-content: center !important;
  }

  .hero-trust-metrics {
    justify-content: center !important;
    gap: 20px !important;
    width: 100% !important;
    padding-top: 20px !important;
  }

  .metric-value {
    font-size: 1.35rem !important;
  }

  .metric-label {
    font-size: 0.65rem !important;
  }

  .hero-visual-container {
    width: 100% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }

  .hero-visual-card {
    max-width: 100% !important;
  }

  .hero-visual-img-wrap {
    height: 420px !important;
  }
}

@media (max-width: 576px) {
  .hero-trust-metrics {
    gap: 12px !important;
  }

  .metric-divider {
    height: 24px !important;
  }

  .metric-value {
    font-size: 1.18rem !important;
  }

  .metric-label {
    font-size: 0.6rem !important;
    letter-spacing: 0.5px !important;
  }

  .hero-visual-img-wrap {
    height: 360px !important;
  }

  .hero-pill-top-left, .hero-pill-bottom-right {
    font-size: 0.68rem !important;
    padding: 4px 10px !important;
  }
}

/* 2. Category Strip Smooth Touch-Scroll on Mobile */
@media (max-width: 1100px) {
  .header-category-strip {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    padding: 8px 12px !important;
  }

  .header-category-strip::-webkit-scrollbar {
    display: none !important;
  }

  .category-nav-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 20px !important;
    width: max-content !important;
    padding: 0 8px !important;
  }

  .cat-nav-item a {
    white-space: nowrap !important;
    font-size: 0.8rem !important;
  }
}

/* 3. Header Top Tier Responsive Layout */
@media (max-width: 860px) {
  .header-universal-search {
    display: none !important;
  }

  .header-top-flex {
    justify-content: space-between !important;
  }

  .header-right-actions {
    gap: 8px !important;
  }

  .header-icon-btn {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.88rem !important;
  }

  .brand-logo-img {
    height: 44px !important;
    width: 44px !important;
  }

  .brand-title {
    font-size: 1.05rem !important;
    letter-spacing: 1px !important;
  }

  .brand-subtitle {
    font-size: 0.55rem !important;
  }
}

/* 4. Non-Intrusive Back-to-Top Button */
.back-to-top-btn {
  position: fixed !important;
  bottom: 24px !important;
  right: 20px !important;
  left: auto !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: rgba(24, 8, 18, 0.92) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1.5px solid var(--gold-pure) !important;
  color: var(--gold-champagne) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important;
  cursor: pointer !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8) !important;
}

.back-to-top-btn.visible {
  opacity: 1 !important;
  visibility: visible !important;
}

@media (max-width: 576px) {
  .back-to-top-btn {
    bottom: 18px !important;
    right: 16px !important;
    width: 38px !important;
    height: 38px !important;
    font-size: 0.9rem !important;
  }
}
/* ==========================================================================
   PERFECT STACKED BRAND TYPOGRAPHY (JEWELLERS BELOW MAIN TITLE)
   ========================================================================== */

.brand-logo-group {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

.brand-logo-img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
  filter: none !important;
}

.brand-names {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  line-height: 1.15 !important;
}

.brand-title {
  display: block !important;
  font-family: var(--font-display) !important;
  font-size: 1.30rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  background: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #AA771C 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.brand-subtitle {
  display: block !important;
  font-family: var(--font-sans) !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  letter-spacing: 2.8px !important;
  text-transform: uppercase !important;
  color: var(--gold-pure) !important;
  line-height: 1 !important;
  margin-top: 3px !important;
  white-space: nowrap !important;
}
/* ==========================================================================
   PERFECT STACKED FOOTER BRAND TYPOGRAPHY
   ========================================================================== */

.footer-brand-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 14px !important;
  text-decoration: none !important;
}

.footer-brand-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  line-height: 1.15 !important;
}

.footer-brand-title {
  display: block !important;
  font-family: var(--font-display) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--gold-champagne) !important;
  letter-spacing: 1.5px !important;
  line-height: 1.1 !important;
}

.footer-brand-tagline {
  display: block !important;
  font-family: var(--font-sans) !important;
  font-size: 0.62rem !important;
  color: var(--gold-pure) !important;
  letter-spacing: 2.8px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin-top: 3px !important;
}
/* ==========================================================================
   HAUTE JOAILLERIE PRODUCT CARDS & STORE TABS (OVERHAULED)
   ========================================================================== */

/* 1. Store Tabs Overhaul */
.store-tabs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.store-tab-btn {
  background: #1E0A16 !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  color: #EDE4D8 !important;
  font-family: var(--font-sans);
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6) !important;
}

.store-tab-btn i {
  color: var(--gold-pure);
  font-size: 0.85rem;
}

.store-tab-btn:hover {
  background: rgba(212, 175, 55, 0.2) !important;
  border-color: var(--gold-pure) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.store-tab-btn.active {
  background: linear-gradient(135deg, #E6C575 0%, #D4AF37 50%, #C59A27 100%) !important;
  color: #19060E !important;
  border: 1.5px solid #FFF8DE !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.75) !important;
  transform: translateY(-2px);
}

.store-tab-btn.active i {
  color: #19060E !important;
}

/* 2. Product Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 520px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

/* 3. Catalog Card */
.catalog-card {
  background: #200B17 !important;
  border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 20px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
}

.catalog-card:hover {
  border-color: var(--gold-pure) !important;
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.9) !important;
}

/* Image Wrap */
.card-img-wrap {
  height: 250px !important;
  background: #14050D !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.card-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.catalog-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* Heirloom Ribbon Badge */
.product-heirloom-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(24, 8, 18, 0.94) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  color: #FDF5E6 !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 4px 11px !important;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.product-heirloom-badge i {
  color: var(--gold-pure);
  font-size: 0.7rem;
}

/* Quick Action Overlay Buttons */
.card-actions-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.card-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 6, 14, 0.88) !important;
  border: 1px solid rgba(212, 175, 55, 0.45) !important;
  color: #FDF5E6 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}

.card-action-btn:hover {
  background: rgba(212, 175, 55, 0.3) !important;
  border-color: var(--gold-pure) !important;
  color: #FFFFFF !important;
  transform: scale(1.1);
}

.card-action-btn.liked {
  color: #FF477E !important;
  border-color: #FF477E !important;
}

/* Card Body */
.card-body {
  padding: 20px !important;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Specs Bar */
.product-specs-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.spec-purity-tag {
  font-size: 0.72rem;
  color: var(--gold-pure);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.spec-weight-tag {
  font-size: 0.72rem;
  color: #E2DDD5;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.spec-stock-tag {
  font-size: 0.68rem;
  color: #2EE872;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.spec-stock-tag i {
  font-size: 0.45rem;
}

/* Title & Desc */
.card-title {
  font-family: var(--font-serif) !important;
  font-size: 1.22rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  line-height: 1.25 !important;
  margin-bottom: 6px !important;
}

.card-desc {
  font-size: 0.85rem !important;
  color: #D8D2C8 !important;
  line-height: 1.6 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 18px !important;
}

/* Price Certificate Box */
.product-price-certificate {
  background: rgba(14, 4, 10, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  margin-bottom: 18px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-cert-header {
  display: flex;
  flex-direction: column;
}

.price-cert-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.price-cert-huid {
  font-size: 0.64rem;
  color: var(--gold-pure);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}

.price-cert-value strong {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  color: var(--gold-champagne);
  font-weight: 700;
}

/* Card Button Group */
.card-button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.btn-card-bag {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  color: #FDF5E6 !important;
  font-family: var(--font-sans);
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 10px 8px !important;
  border-radius: var(--radius-pill) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-card-bag:hover {
  background: rgba(212, 175, 55, 0.2) !important;
  border-color: var(--gold-pure) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn-card-buy {
  background: linear-gradient(135deg, #E6C575 0%, #D4AF37 50%, #C59A27 100%) !important;
  color: #19060E !important;
  font-family: var(--font-sans);
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 10px 8px !important;
  border-radius: var(--radius-pill) !important;
  border: 1px solid rgba(255, 248, 222, 0.4) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.btn-card-buy:hover {
  background: linear-gradient(135deg, #F0D287 0%, #E2BE4E 50%, #D1A531 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.65);
}
/* ==========================================================================
   PRODUCT CARD REFINEMENTS (SINGLE-LINE PRICE & CLEAN TYPOGRAPHY)
   ========================================================================== */

.product-price-certificate {
  background: rgba(14, 4, 10, 0.85) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
}

.price-cert-header {
  display: flex !important;
  flex-direction: column !important;
  flex-shrink: 0 !important;
}

.price-cert-label {
  font-size: 0.64rem !important;
  color: var(--text-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  font-weight: 700 !important;
}

.price-cert-huid {
  font-size: 0.62rem !important;
  color: var(--gold-pure) !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 3px !important;
  margin-top: 2px !important;
}

.price-cert-value {
  display: flex !important;
  align-items: baseline !important;
  justify-content: flex-end !important;
  white-space: nowrap !important;
}

.price-cert-value strong {
  font-family: var(--font-serif) !important;
  font-size: 1.28rem !important;
  color: var(--gold-champagne) !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  letter-spacing: 0.3px !important;
  line-height: 1 !important;
}

.card-desc {
  font-size: 0.84rem !important;
  color: #D8D2C8 !important;
  line-height: 1.55 !important;
  height: 38px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
}

.product-specs-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 6px !important;
  margin-bottom: 10px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
}

.spec-purity-tag {
  font-size: 0.7rem !important;
  color: var(--gold-pure) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
}

.spec-weight-tag {
  font-size: 0.7rem !important;
  color: #E8E2D8 !important;
  font-weight: 700 !important;
}

.spec-stock-tag {
  font-size: 0.65rem !important;
  color: #2EE872 !important;
  font-weight: 700 !important;
}
/* ==========================================================================
   TABULAR LINING FIGURES FOR PRODUCT CARDS PRICING
   ========================================================================== */

.price-cert-value strong {
  font-family: var(--font-sans), 'Outfit', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--gold-champagne) !important;
  font-variant-numeric: tabular-nums lining-nums !important;
  letter-spacing: 0.5px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.price-cert-value {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  white-space: nowrap !important;
}

.price-cert-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 2px !important;
}

/* ==========================================================================
   MASTER MOBILE VIEWPORT ADAPTATION & RESPONSIVE PERFECTION (<= 768px & <= 576px)
   Addresses: Header icon overflow, hamburger menu visibility, swipeable category
   pills, balanced 2-row hero CTAs, and sleek floating back-to-top button.
   ========================================================================== */

@media (max-width: 576px) {
  .container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}

/* 1. Mobile Header: Generous Luxury Height, Proper Spacing, Regal Emblem & Touch Targets */
@media (max-width: 768px) {
  .header-primary-row {
    padding: 16px 0 !important;
    min-height: 74px !important;
    display: flex !important;
    align-items: center !important;
  }

  .header-primary-flex {
    gap: 10px !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* Hide store locator and appointment popup icons on mobile header (accessible via drawer & bottom bar) */
  .header-right-actions a[href="shops.html"].header-icon-btn,
  .header-right-actions button.open-appointment-btn.header-icon-btn {
    display: none !important;
  }

  .header-right-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }

  .header-icon-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.95rem !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    transition: all 0.2s ease !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1.05rem !important;
    flex-shrink: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
    color: var(--gold-champagne) !important;
  }

  .header-bag-count {
    width: 18px !important;
    height: 18px !important;
    font-size: 0.68rem !important;
    top: -2px !important;
    right: -2px !important;
  }

  .brand-logo-group {
    gap: 12px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    align-items: center !important;
  }

  .brand-logo-img {
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
  }

  .brand-names {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .brand-title {
    font-size: 1.08rem !important;
    letter-spacing: 1.2px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .brand-subtitle {
    font-size: 0.58rem !important;
    letter-spacing: 2.2px !important;
    margin-top: 3px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 380px) {
  .header-primary-row {
    padding: 13px 0 !important;
    min-height: 68px !important;
  }

  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .brand-logo-group {
    gap: 10px !important;
  }

  .brand-logo-img {
    width: 40px !important;
    height: 40px !important;
  }

  .brand-title {
    font-size: 0.96rem !important;
    letter-spacing: 0.8px !important;
  }

  .brand-subtitle {
    font-size: 0.52rem !important;
    letter-spacing: 1.6px !important;
    margin-top: 2px !important;
  }

  .header-icon-btn,
  .mobile-menu-toggle {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.88rem !important;
  }

  .header-right-actions {
    gap: 6px !important;
  }
}

/* 2. Trending Fine Jewellery Filter Tabs - Touch-Scrollable Horizontal Pill Strip */
@media (max-width: 768px) {
  .store-tabs-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 4px 14px 14px !important;
    margin: 0 -14px 20px !important;
    scrollbar-width: none !important;
  }

  .store-tabs-wrapper::-webkit-scrollbar {
    display: none !important;
  }

  .store-tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 8px 16px !important;
    font-size: 0.82rem !important;
  }
}

/* 3. Hero CTA Buttons - Balanced 2-Row Grid Layout on Mobile */
@media (max-width: 576px) {
  .hero-cta-group {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .hero-cta-group .btn-hero-primary {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    padding: 13px 18px !important;
    font-size: 0.92rem !important;
    justify-content: center !important;
  }

  .hero-cta-group .btn-hero-secondary {
    width: 100% !important;
    padding: 10px 8px !important;
    font-size: 0.78rem !important;
    white-space: nowrap !important;
    justify-content: center !important;
  }
}

/* 4. Non-Intrusive Floating Back-to-Top Button */
.back-to-top-btn {
  position: fixed !important;
  bottom: 22px !important;
  right: 18px !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(18, 6, 14, 0.8) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  color: var(--gold-champagne) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.9rem !important;
  cursor: pointer !important;
  z-index: 9990 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
}

.back-to-top-btn.visible {
  opacity: 0.9 !important;
  visibility: visible !important;
}

.back-to-top-btn:hover {
  opacity: 1 !important;
  transform: translateY(-3px) scale(1.05) !important;
  background: rgba(28, 10, 22, 0.95) !important;
  border-color: var(--gold-pure) !important;
}

@media (max-width: 576px) {
  .back-to-top-btn {
    bottom: 74px !important; /* Above mobile bottom bar */
    right: 12px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 0.82rem !important;
  }
}

/* ==========================================================================
   FLAGSHIP REDESIGN (CATALOG BANNER, CEREMONY, VIP CONSULT, FOOTER, BOTTOM BAR)
   ========================================================================== */

/* 1. Catalog Browse Editorial Banner */
.catalog-browse-banner {
  background: linear-gradient(135deg, rgba(28, 8, 22, 0.95) 0%, rgba(14, 4, 11, 0.98) 100%);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85);
}

.catalog-browse-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-foil);
}

.browse-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold-pure);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.browse-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--gold-champagne);
  line-height: 1.25;
  margin-bottom: 10px;
}

.browse-banner-sub {
  font-size: 0.92rem;
  color: #D8D1C7;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.browse-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .catalog-browse-banner {
    padding: 30px 18px !important;
    margin-top: 36px !important;
    text-align: center !important;
  }

  .browse-banner-title {
    font-size: clamp(1.35rem, 5vw, 1.7rem) !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .browse-banner-sub {
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    margin-bottom: 20px !important;
  }

  .browse-banner-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }

  .browse-banner-actions .btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 20px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .browse-banner-actions .btn-hero-primary span {
    white-space: nowrap !important;
  }
}

/* 2. Shop by Wedding Ceremony Redesign */
.ceremony-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #0A0409 0%, #160613 50%, #0A0409 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.ceremony-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.ceremony-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  background: #11050F;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.ceremony-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-pure);
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.25);
}

.ceremony-img-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #000;
}

.ceremony-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ceremony-card:hover .ceremony-img {
  transform: scale(1.08);
}

.ceremony-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(12, 3, 10, 0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 14px;
}

.ceremony-badge-tag {
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--gold-pure);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(20, 5, 16, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 6px;
}

.ceremony-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.ceremony-desc {
  font-size: 0.78rem;
  color: #DDD5CA;
  margin-top: 3px;
}

@media (max-width: 992px) {
  .ceremony-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .ceremony-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ceremony-img-wrap {
    height: 210px;
  }
  .ceremony-title {
    font-size: 1.05rem;
  }
  .ceremony-desc {
    font-size: 0.72rem;
  }
}

/* 3. VIP Video Consultation Redesign */
.video-consult-card {
  background: linear-gradient(145deg, #1C0816 0%, #0E030B 100%) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  border-radius: var(--radius-lg) !important;
  padding: 44px !important;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9) !important;
  position: relative;
  overflow: hidden;
}

.video-consult-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-foil);
}

.video-consult-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 26px;
}

.video-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #EDE5D8;
}

.video-feature-pill i {
  color: var(--gold-pure);
  font-size: 1rem;
}

.video-consult-btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.video-consult-timings {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25D366;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseLive 2s infinite;
}

@keyframes pulseLive {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .video-consult-card {
    grid-template-columns: 1fr;
    padding: 28px 18px !important;
    gap: 24px;
    text-align: left;
  }
  .video-consult-btn-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .video-consult-btn-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

/* 4. Flagship Luxury Footer */
.footer {
  background: linear-gradient(180deg, #090308 0%, #050104 100%) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
  padding: 60px 0 30px !important;
  color: #E2DDD5 !important;
}

.footer-newsletter-strip {
  background: linear-gradient(135deg, rgba(28, 8, 22, 0.85) 0%, rgba(14, 4, 11, 0.98) 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: var(--radius-md) !important;
  padding: 24px 30px !important;
  margin-bottom: 50px !important;
}

.footer-newsletter-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.footer-newsletter-title {
  font-family: var(--font-serif) !important;
  font-size: 1.4rem !important;
  color: var(--gold-champagne) !important;
  margin-bottom: 4px !important;
}

.footer-newsletter-sub {
  font-size: 0.86rem !important;
  color: var(--text-muted) !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.3fr !important;
  gap: 40px !important;
  margin-bottom: 45px !important;
}

.footer-title {
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--gold-champagne) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 20px !important;
  position: relative !important;
  padding-bottom: 10px !important;
}

.footer-title::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 32px !important;
  height: 2px !important;
  background: var(--gold-pure) !important;
}

.footer-links {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.footer-links a {
  color: #BDB7A9 !important;
  font-size: 0.88rem !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all var(--transition-fast) !important;
}

.footer-links a:hover {
  color: var(--gold-pure) !important;
  transform: translateX(4px) !important;
}

.footer-store-luxury-card {
  background: rgba(24, 7, 19, 0.7) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-bottom: 14px !important;
  transition: all var(--transition-fast) !important;
}

.footer-store-luxury-card:hover {
  border-color: var(--gold-pure) !important;
  background: rgba(32, 9, 25, 0.9) !important;
}

.footer-store-name {
  font-family: var(--font-serif) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: var(--gold-champagne) !important;
  margin-bottom: 4px !important;
}

.footer-store-address {
  font-size: 0.78rem !important;
  color: var(--text-muted) !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
}

.footer-store-actions {
  display: flex !important;
  gap: 8px !important;
}

.footer-store-actions a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  border-radius: var(--radius-pill) !important;
  background: rgba(212, 175, 55, 0.1) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: var(--gold-champagne) !important;
  transition: all 0.2s ease !important;
}

.footer-store-actions a:hover {
  background: var(--gold-pure) !important;
  color: #070206 !important;
}

.footer-trust-strip {
  border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
  padding: 24px 0 !important;
  margin-bottom: 30px !important;
}

.footer-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 16px !important;
  text-align: center !important;
}

.footer-trust-badge {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
}

.footer-trust-badge i {
  color: var(--gold-pure) !important;
  font-size: 1.3rem !important;
}

.footer-trust-badge span {
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  color: var(--gold-champagne) !important;
  letter-spacing: 0.5px !important;
}

.footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  padding-top: 10px !important;
}

.discreet-admin-link {
  color: rgba(255, 255, 255, 0.25) !important;
  font-size: 0.72rem !important;
  transition: color 0.2s ease !important;
}

.discreet-admin-link:hover {
  color: var(--gold-pure) !important;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 35px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .footer-trust-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }
}

/* 5. Mobile Sticky Bottom Action Bar Completely Removed */
.mobile-bottom-bar {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

/* Quick Call Choice Modal */
.quick-call-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10020;
  align-items: flex-end;
  justify-content: center;
}

.quick-call-modal-overlay.active {
  display: flex !important;
}

.quick-call-modal-box {
  background: #140510;
  border: 1.5px solid var(--border-gold-bright);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px 32px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.95);
  animation: slideUpModal 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUpModal {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.quick-call-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding-bottom: 12px;
}

.quick-call-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-call-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(28, 9, 23, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.quick-call-card:active {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-pure);
}

.quick-call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-pure);
  color: var(--gold-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quick-call-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quick-call-info strong {
  color: var(--gold-champagne);
  font-size: 0.96rem;
}

.quick-call-info span {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.quick-call-arrow {
  color: var(--gold-pure);
  font-size: 0.85rem;
}


/* ==========================================================================
   HERITAGE FEATURE CARD (KUMAONI HERITAGE EDITORIAL)
   ========================================================================== */

.heritage-feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.heritage-feature-content {
  padding: 40px;
}

.heritage-feature-content h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-champagne);
  margin-bottom: 14px;
}

.heritage-feature-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.heritage-feature-media {
  height: 100%;
  min-height: 380px;
  position: relative;
}

.heritage-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Catalog Store Toolbar Desktop */
.store-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.store-toolbar-cert {
  font-size: 0.88rem;
  color: var(--gold-champagne);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.store-toolbar-cert i {
  color: var(--gold-pure);
}

.store-toolbar-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-toolbar-sort label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
}


/* ==========================================================================
   MASTER MOBILE RESPONSIVE HERO & CLEANUP OPTIMIZATIONS (<= 768px)
   ========================================================================== */

/* 1. Eliminate Desktop 8px Scrollbar on Mobile / Touch Screens */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  * {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  /* 2. Mobile Header Presence: Symmetrical & Spacious Circular Action Buttons */
  .header-right-actions a[href="gold-calculator.html"].header-icon-btn {
    display: inline-flex !important;
  }

  /* 3. Master Mobile Hero Layout: Visual Card Follows Headline (No Cut-Off Image) */
  .hero-section {
    padding: 28px 0 32px !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .hero-content {
    display: contents !important;
  }

  .hero-heritage-tag {
    order: 1 !important;
    margin-bottom: 2px !important;
    font-size: 0.72rem !important;
    padding: 5px 14px !important;
  }

  .hero-headline {
    order: 2 !important;
    font-size: clamp(1.65rem, 5.2vw, 2.1rem) !important;
    line-height: 1.22 !important;
    margin-bottom: 6px !important;
  }

  .hero-visual-container {
    order: 3 !important;
    width: 100% !important;
    max-width: 390px !important;
    margin: 4px auto 12px !important;
    display: block !important;
  }

  .hero-visual-card {
    border-radius: 18px !important;
    padding: 5px !important;
    border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15) !important;
  }

  .hero-visual-img-wrap {
    height: 250px !important;
    border-radius: 14px !important;
    background: #14050D !important;
    position: relative !important;
  }

  .hero-visual-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20% !important;
  }

  .hero-pill-top-left {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    font-size: 0.68rem !important;
    padding: 4px 10px !important;
    background: rgba(25, 6, 14, 0.92) !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
    border-radius: 20px !important;
    color: #FFF !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    z-index: 2 !important;
  }

  .hero-pill-bottom-right {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    font-size: 0.68rem !important;
    padding: 4px 10px !important;
    background: rgba(25, 6, 14, 0.92) !important;
    border: 1px solid rgba(212, 175, 55, 0.5) !important;
    border-radius: 20px !important;
    color: #FFF !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    z-index: 2 !important;
  }

  .hero-desc {
    order: 4 !important;
    font-size: 0.86rem !important;
    line-height: 1.6 !important;
    max-width: 95% !important;
    margin: 0 auto 12px !important;
    color: #D1C7BD !important;
  }

    /* 4. Symmetrical Full-Width Hero CTA on Mobile (Zero Wrap & Equal Height) */
  .hero-cta-group {
    order: 5 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto 16px !important;
  }

  .hero-cta-group a[href="kumaoni-heritage.html"].btn-hero-secondary {
    display: none !important; /* Category already featured in header and grid below */
  }

  .hero-cta-group .btn-hero-primary {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 20px !important;
    font-size: 0.90rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 30px !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4) !important;
    box-sizing: border-box !important;
  }

  .hero-cta-group .btn-hero-secondary {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 20px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 30px !important;
    background: rgba(22, 9, 18, 0.7) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
    color: var(--gold-champagne) !important;
    box-sizing: border-box !important;
  }

  /* 5. Clean Trust Metrics Strip */
  .hero-trust-metrics {
    order: 6 !important;
    padding-top: 14px !important;
    margin-top: 4px !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    width: 100% !important;
    max-width: 390px !important;
    display: flex !important;
    justify-content: space-around !important;
    gap: 8px !important;
  }

  .metric-value {
    font-size: 1.15rem !important;
  }

  .metric-label {
    font-size: 0.6rem !important;
  }

  /* Master Heritage Feature Card Mobile: Photo on top, full width, zero cut-off */
  .heritage-feature-card {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .heritage-feature-media {
    order: 1 !important;
    width: 100% !important;
    height: 280px !important;
    min-height: 280px !important;
  }

  .heritage-feature-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 15% !important;
  }

  .heritage-feature-content {
    order: 2 !important;
    padding: 24px 18px !important;
    text-align: center !important;
  }

  .heritage-feature-content .section-tag {
    margin: 0 auto 12px !important;
  }

  .heritage-feature-content h2 {
    font-size: clamp(1.4rem, 5vw, 1.85rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .heritage-feature-content p {
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }

  .heritage-feature-content .btn {
    width: 100% !important;
    min-height: 48px !important;
    justify-content: center !important;
    border-radius: 30px !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.8px !important;
    padding: 13px 20px !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  /* Master Catalog Store Toolbar Mobile: Single Balanced Row */
  .store-toolbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
    width: 100% !important;
  }

  .store-toolbar-cert {
    font-size: 0.78rem !important;
    white-space: nowrap !important;
  }

  .store-toolbar-sort {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .store-toolbar-sort label {
    font-size: 0.74rem !important;
    white-space: nowrap !important;
  }

  .store-sort-select {
    padding: 6px 12px !important;
    font-size: 0.78rem !important;
    border-radius: 20px !important;
    background: #140510 !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
  }

  .store-search-bar {
    max-width: 100% !important;
    margin-bottom: 16px !important;
    padding: 9px 16px !important;
  }

  .store-search-input {
    font-size: 0.84rem !important;
  }

}


/* ==========================================================================
   MASTER IMPROVEMENTS: CLOSE BUTTONS, NEWSLETTER, STORE CARDS, STORE TOOLBAR
   ========================================================================== */

/* 1. Universal Luxury Circular Modal & Drawer Close Button (Zero Browser Bevel) */
.modal-close-btn,
.modal-close-icon,
#closeQuickCallModal,
#closeAppointmentModal,
#closeDrawerBtn,
#closeBagDrawerBtn,
#modalCloseBtn {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
  color: var(--gold-champagne) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  outline: none !important;
  padding: 0 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 100 !important;
}

.modal-close-btn:hover,
.modal-close-icon:hover,
#closeQuickCallModal:hover,
#closeAppointmentModal:hover,
#closeDrawerBtn:hover,
#closeBagDrawerBtn:hover,
#modalCloseBtn:hover {
  background: rgba(212, 175, 55, 0.25) !important;
  border-color: var(--gold-pure) !important;
  color: #FFFFFF !important;
  transform: rotate(90deg) scale(1.08) !important;
}

/* 2. Newsletter / Daily Rates Strip Desktop & Mobile */
.footer-newsletter-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

/* 3. Footer Showroom Cards: Symmetric 50/50 Action Buttons */
.footer-store-luxury-card {
  background: rgba(24, 7, 19, 0.8) !important;
}

.footer-newsletter-strip {
  background: linear-gradient(135deg, rgba(28, 8, 22, 0.85) 0%, rgba(14, 4, 11, 0.98) 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 18px !important;
  padding: 28px 36px !important;
  margin: 0 auto 50px !important;
  width: calc(100% - 48px) !important;
  max-width: 1240px !important;
  box-sizing: border-box !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
}

.footer-newsletter-strip .container {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.footer-newsletter-flex {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.footer-store-est {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--gold-pure) !important;
  letter-spacing: 0.3px !important;
  display: inline-block !important;
  margin-left: 4px !important;
}

.footer-store-luxury-card {
  background: rgba(24, 7, 19, 0.8) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  margin-bottom: 14px !important;
  transition: all var(--transition-fast) !important;
}

.footer-store-luxury-card:hover {
  border-color: var(--gold-pure) !important;
  background: rgba(32, 9, 25, 0.95) !important;
}

.footer-store-name {
  font-family: var(--font-serif) !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: var(--gold-champagne) !important;
  margin-bottom: 6px !important;
}

.footer-store-address {
  font-size: 0.82rem !important;
  color: #C8C2B7 !important;
  line-height: 1.5 !important;
  margin-bottom: 14px !important;
}

.footer-store-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100% !important;
}

.footer-store-actions a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 10px 14px !important;
  min-height: 40px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
}

.footer-store-actions a:first-child {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(170, 119, 28, 0.35) 100%) !important;
  border: 1px solid var(--gold-pure) !important;
  color: #FFFFFF !important;
}

.footer-store-actions a:last-child {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  color: var(--gold-champagne) !important;
}

.footer-store-actions a:hover {
  background: var(--gold-pure) !important;
  color: #070206 !important;
}

/* 4. Store Toolbar Desktop */
.store-toolbar-cert {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
}

.store-toolbar-cert i {
  color: var(--gold-pure) !important;
  font-size: 0.95rem !important;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5)) !important;
}

.store-toolbar-cert span {
  color: var(--gold-champagne) !important;
  font-weight: 700 !important;
  font-size: 0.84rem !important;
}

.store-toolbar-sort {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.store-toolbar-sort label {
  color: var(--text-muted) !important;
  font-size: 0.78rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

.store-sort-select {
  background: #140510 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: var(--gold-champagne) !important;
  padding: 7px 14px !important;
  border-radius: 20px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  outline: none !important;
  cursor: pointer !important;
}

/* 5. Mobile Responsive Rules (max-width: 768px) for Newsletter, Store Toolbar, and Modals */
@media (max-width: 768px) {
  .footer-newsletter-strip {
    width: calc(100% - 28px) !important;
    margin: 0 auto 35px !important;
    padding: 24px 18px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .footer-newsletter-flex {
    flex-direction: column !important;
    text-align: center !important;
    gap: 18px !important;
  }

  .footer-newsletter-title {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
    margin-bottom: 6px !important;
  }

  .footer-newsletter-sub {
    font-size: 0.86rem !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    line-height: 1.55 !important;
  }

  .footer-newsletter-actions,
  .footer-newsletter-flex > div:last-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    gap: 10px !important;
  }

  .footer-newsletter-actions .btn,
  .footer-newsletter-flex > div:last-child .btn {
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 20px !important;
    font-size: 0.90rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    border-radius: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    box-sizing: border-box !important;
  }

  .footer-newsletter-actions .btn-whatsapp,
  .footer-newsletter-flex > div:last-child .btn-whatsapp {
    background: #25D366 !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45) !important;
  }

  .footer-newsletter-actions .btn-outline-gold,
  .footer-newsletter-flex > div:last-child .btn-outline-gold {
    background: rgba(22, 9, 18, 0.7) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.45) !important;
    color: var(--gold-champagne) !important;
  }

  /* Store Toolbar Mobile */
  .store-toolbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-bottom: 18px !important;
    width: 100% !important;
  }

  .store-toolbar-cert {
    font-size: 0.78rem !important;
    white-space: nowrap !important;
  }

  .store-toolbar-sort label {
    font-size: 0.74rem !important;
    white-space: nowrap !important;
  }

  .store-sort-select {
    padding: 6px 10px !important;
    font-size: 0.78rem !important;
    border-radius: 20px !important;
  }
}

/* Online Store Checkout Modal */
.psj-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: psjFadeIn 0.25s ease-out;
}

.psj-modal-card {
  background: #0D0A14;
  border: 1.5px solid var(--border-gold-bright);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), var(--gold-glow);
  position: relative;
  box-sizing: border-box;
}

.psj-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-gold-subtle);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.psj-modal-body {
  padding: 24px;
}

@keyframes psjFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
