/* ==========================================================================
   SHINE CRACKERS — Royal Sapphire & Electric Blue Luxury Edition
   Color Palette strictly matched to the Blue Mascot Logo:
   Royal Cobalt, Electric Sapphire Blue, Festive Brocade Gold & Pure Midnight Accents
   ========================================================================== */

:root {
  /* Logo Background Palette: Warm Vintage Ivory & Parchment */
  --bg-page: #050E14;
  --bg-surface: #050E14;
  --bg-card: #FFFFFF;
  --bg-card-alt: #050E14;
  --bg-alt: #050E14;
  
  /* Royal Sapphire & Electric Blue Theme Palette */
  --blue-950: #060E1A;
  --blue-900: #0B1D3A;
  --blue-850: #0F274E;
  --blue-800: #133973;
  --blue-750: #174892;
  --blue-700: #1D4ED8;
  --blue-650: #2159F4;
  --blue-600: #2563EB;
  --blue-500: #3B82F6;
  --blue-400: #60A5FA;
  --blue-300: #93C5FD;
  --blue-subtle: rgba(29, 78, 216, 0.08);
  --blue-border: rgba(37, 99, 235, 0.22);
  --blue-glow: rgba(59, 130, 246, 0.38);
  --blue-focus: rgba(37, 99, 235, 0.45);
  
  /* Backward-compatible aliases mapped directly to Blue */
  --maroon-900: var(--blue-900);
  --maroon-800: var(--blue-800);
  --maroon-700: var(--blue-700);
  --maroon-600: var(--blue-600);
  --maroon-subtle: var(--blue-subtle);
  --maroon-border: var(--blue-border);
  --maroon-glow: var(--blue-glow);

  /* Logo Filigree Gold & Warm Amber */
  --gold-300: #F6E29F;
  --gold-400: #E5C158;
  --gold-500: #D4A017;
  --gold-600: #B8860B;
  --gold-subtle: rgba(212, 160, 23, 0.12);
  --gold-border: rgba(212, 160, 23, 0.28);

  /* Deep Editorial Contrast Text */
  --text-primary: #1D120C;
  --text-secondary: #5C4E46;
  --text-muted: #8C7B72;
  --border-hairline: rgba(29, 18, 12, 0.1);
  --border-light: rgba(29, 18, 12, 0.06);

  /* Accent Accents */
  --green-badge: #059669;
  --green-badge-bg: rgba(16, 185, 129, 0.14);
  --wa-green: #25D366;
  --wa-dark: #128C7E;

  /* Typography Families */
  --font-display: 'Cinzel', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Transitions & Shadows */
  --transition-fast: 0.12s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.20s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-subtle: 0 4px 20px rgba(29, 78, 216, 0.06);
  --shadow-hover: 0 16px 36px rgba(29, 78, 216, 0.12);
}

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

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

body.luxury-body {
  background-color: var(--bg-page);
  background-image: 
    radial-gradient(ellipse at 50% 0%, #FFFFFF 0%, #F5F8FF 40%, #050E14 100%);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: clip;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* 3D WebGL Canvas Layer */
.three-canvas-container {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Interactive Floating Hint */
.sky-hint-pill {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--maroon-border);
  border-radius: 9999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--maroon-700);
  pointer-events: none;
  box-shadow: 0 4px 18px rgba(29, 78, 216, 0.15);
}

.sky-hint-pill .spark-dot {
  color: var(--gold-500);
  margin-right: 4px;
}

@media (max-width: 768px) {
  .sky-hint-pill {
    display: none;
  }
}

.app-wrapper {
  position: relative;
  z-index: 2;
}

/* Typography Utilities */
.font-display {
  font-family: var(--font-display);
}

.font-editorial {
  font-family: var(--font-editorial);
}

/* ==========================================================================
   Announcement Banner (Logo Maroon with Gold Details)
   ========================================================================== */
.luxury-top-bar {
  background: linear-gradient(135deg, #0F274E 0%, #1D4ED8 50%, #2563EB 100%);
  border-bottom: 1px solid rgba(212, 160, 23, 0.35);
  padding: 8px 16px;
  font-size: 12px;
  color: #050E14;
  position: relative;
  z-index: 60;
  box-shadow: 0 2px 8px rgba(107, 20, 26, 0.25);
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-badge {
  background: rgba(212, 160, 23, 0.25);
  color: var(--gold-300);
  border: 1px solid var(--gold-400);
  padding: 2px 9px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-bar-text {
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
  font-weight: 500;
}

.top-bar-text .sep {
  color: var(--gold-400);
}

.top-bar-link {
  color: var(--gold-300);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.top-bar-link:hover {
  color: #fff;
  text-decoration: underline;
}

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

/* ==========================================================================
   Header & Sticky Navigation (Logo Ivory Frosted Glass)
   ========================================================================== */
.luxury-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 231, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--maroon-border);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.04);
  transition: background 0.3s;
}

.header-content {
  max-width: 1380px;
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand Identity */
.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.brand-monogram {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #252549;
  border: 1px solid rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.brand-monogram.small {
  width: 38px;
  height: 38px;
}

.brand-monogram img,
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--maroon-700);
  line-height: 1.15;
  white-space: nowrap;
}

.brand-origin {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
  white-space: nowrap;
}

/* Desktop Nav Links */
.desktop-nav {
  display: block;
  flex-shrink: 0;
}

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

@media (max-width: 1260px) {
  .header-content {
    gap: 10px;
    padding: 0 14px;
  }
  .nav-menu {
    gap: 2px;
  }
  .nav-item {
    padding: 6px 9px;
    font-size: 12.5px;
  }
  .nav-item.highlighted-nav {
    padding: 5px 10px;
  }
  .btn-enquiry {
    padding: 8px 12px;
    font-size: 12px;
    gap: 5px;
  }
}

@media (max-width: 1100px) {
  .desktop-nav .nav-item[href="#showcase"] {
    display: none;
  }
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 9999px;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-item:hover {
  color: var(--maroon-700);
  background: var(--maroon-subtle);
}

.nav-item.highlighted-nav {
  color: var(--maroon-700);
  background: rgba(29, 78, 216, 0.08);
  border: 1.5px solid var(--maroon-border);
  font-weight: 700;
  padding: 6px 13px;
  gap: 6px;
  box-shadow: 0 1px 4px rgba(29, 78, 216, 0.05);
}

.nav-item.highlighted-nav:hover {
  background: var(--maroon-700);
  color: #FFFFFF;
}

.nav-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 9999px;
  background: var(--maroon-700);
  color: #FFFFFF;
  line-height: 1.3;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-item.highlighted-nav:hover .nav-count-badge {
  background: #FFFFFF;
  color: var(--maroon-700);
}

/* Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--maroon-border);
  color: var(--maroon-700);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.header-icon-btn:hover {
  background: var(--maroon-700);
  color: #FFFFFF;
}

.header-icon-btn .hidden {
  display: none;
}

/* Enquiry CTA Button */
.btn-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 9999px;
  background: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #062411;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.25);
}

.btn-enquiry:hover {
  background: #1eb857;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

@media (max-width: 640px) {
  .btn-enquiry {
    display: none;
  }
}

/* Cart Header Button */
.header-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1px solid var(--maroon-border);
  color: var(--maroon-700);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.header-cart-btn:hover {
  background: var(--maroon-700);
  color: #FFFFFF;
}

.header-cart-btn:hover .badge-pill {
  background: #FFFFFF;
  color: var(--maroon-700);
}

.badge-pill {
  background: var(--maroon-700);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 9999px;
  transition: all var(--transition-fast);
}

/* Mobile Toggle Button */
.mobile-toggle-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--maroon-border);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle-btn .bar {
  width: 20px;
  height: 2px;
  background: var(--maroon-700);
  border-radius: 2px;
}

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

/* Mobile Drawer (Logo Ivory) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #050E14;
  border-left: 1px solid var(--maroon-border);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(29, 78, 216, 0.15);
}

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

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(29, 18, 12, 0.5);
  backdrop-filter: blur(6px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-hairline);
  margin-bottom: 24px;
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--maroon-700);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}

.drawer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.drawer-link:hover, .drawer-link.highlight {
  color: var(--maroon-700);
  background: rgba(29, 78, 216, 0.08);
}

.drawer-link.highlight {
  font-weight: 700;
  border-left: 3px solid var(--maroon-700);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-hairline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-footer .btn-enquiry {
  display: flex;
  justify-content: center;
}

.drawer-phone {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

/* ==========================================================================
   Hero Section (Warm Ivory with Maroon & Gold Typography)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  padding: 80px 24px 60px;
}

.hero-container {
  max-width: 1380px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 720px;
}

@media (max-width: 1140px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    max-width: 100%;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon-700);
  margin-bottom: 20px;
}

.eyebrow-accent {
  color: var(--gold-500);
  font-size: 11px;
}

.hero-editorial-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-editorial-title .line-1 {
  display: block;
  font-family: var(--font-sans);
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-editorial-title .line-2 {
  display: block;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #0F274E 0%, #1D4ED8 40%, #B8860B 85%, #D4A017 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 25px rgba(29, 78, 216, 0.15);
}

.hero-desc-lead {
  font-family: var(--font-editorial);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Luxury Button System */
.btn-gold-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0F274E 0%, #1D4ED8 60%, #2563EB 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212, 160, 23, 0.35);
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(29, 78, 216, 0.3);
  transition: all var(--transition-fast);
}

.btn-gold-luxury:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(29, 78, 216, 0.45);
  filter: brightness(1.08);
}

.btn-translucent-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 9999px;
  background: #FFFFFF;
  border: 1.5px solid var(--maroon-border);
  color: var(--maroon-700);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(29, 78, 216, 0.05);
  transition: all var(--transition-fast);
}

.btn-translucent-luxury:hover {
  background: var(--maroon-subtle);
  border-color: var(--maroon-700);
}

.btn-wa-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 9999px;
  background: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #062411;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
  transition: all var(--transition-fast);
}

.btn-wa-pill:hover {
  background: #1eb857;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.full-width {
  width: 100%;
}

/* Metric Counters Row (Warm Cards) */
.hero-metrics-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  padding-top: 24px;
  border-top: 1px solid var(--border-hairline);
}

@media (min-width: 640px) {
  .hero-metrics-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--maroon-border);
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.04);
}

.metric-num {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--maroon-700);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.metric-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 4px;
}

/* ==========================================================================
   Hero Diwali Crackers Box Showcase
   ========================================================================== */
.hero-diwali-box-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  animation: heroBoxFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroBoxFadeIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Ambient Festive Aura behind Box */
.diwali-box-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125%;
  height: 125%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 160, 23, 0.28) 0%, rgba(29, 78, 216, 0.18) 45%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(35px);
  z-index: 0;
  animation: boxAuraPulse 5s ease-in-out infinite alternate;
}

@keyframes boxAuraPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0.65;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

/* Festive Twinkling Sparkles */
.box-sparkle {
  position: absolute;
  color: var(--gold-500);
  font-size: 15px;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 0 10px rgba(212, 160, 23, 0.8);
  animation: boxSparkleTwinkle 3s ease-in-out infinite;
}

.box-sparkle.s-1 { top: -12px; right: 24px; font-size: 18px; animation-delay: 0s; }
.box-sparkle.s-2 { top: 38%; left: -16px; font-size: 13px; animation-delay: 0.8s; }
.box-sparkle.s-3 { bottom: 18%; right: -14px; font-size: 16px; animation-delay: 1.6s; }
.box-sparkle.s-4 { bottom: -10px; left: 30%; font-size: 12px; animation-delay: 2.2s; }

@keyframes boxSparkleTwinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.25) rotate(45deg); filter: drop-shadow(0 0 8px #F59E0B); }
}

/* 3D Box Card Structure */
.diwali-box-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 530px;
  background: linear-gradient(145deg, #FFFFFF 0%, #050E14 60%, #050E14 100%);
  border: 1.5px solid rgba(212, 160, 23, 0.45);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 48px -10px rgba(29, 78, 216, 0.22),
    0 6px 20px rgba(212, 160, 23, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.diwali-box-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 28px 60px -12px rgba(29, 78, 216, 0.3),
    0 10px 30px rgba(212, 160, 23, 0.25),
    0 0 0 1px rgba(255, 255, 255, 1) inset;
}

/* Top Banner Tag */
.box-top-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(90deg, #0F274E 0%, #1D4ED8 55%, #2563EB 100%);
  color: #FFFFFF;
  border-bottom: 1px solid rgba(212, 160, 23, 0.4);
}

.box-tag-left {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.box-tag-icon {
  font-size: 13px;
}

.box-tag-badge {
  background: linear-gradient(135deg, #F59E0B, #D4AF37);
  color: #381206;
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 9999px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Image Wrap */
.box-image-wrap {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: #200709;
}

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

.diwali-box-card:hover .diwali-box-img {
  transform: scale(1.05);
}

/* Shimmer overlay on hover */
.box-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.24) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.diwali-box-card:hover .box-image-wrap::after {
  transform: translateX(100%);
}

/* Floating Badges over Image */
.box-floating-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.badge-top-right {
  top: 14px;
  right: 14px;
  background: rgba(29, 78, 216, 0.92);
  color: #FFFFFF;
  border: 1px solid rgba(212, 160, 23, 0.7);
}

.badge-dot-gold {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F59E0B;
  box-shadow: 0 0 6px #F59E0B;
}

.badge-bottom-left {
  bottom: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--maroon-700);
  border: 1px solid var(--maroon-border);
}

.badge-icon {
  font-size: 13px;
}

/* Card Body */
.box-card-body {
  padding: 20px 22px 22px;
}

.box-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.box-cat-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #92530A;
  margin-bottom: 3px;
}

.box-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--maroon-700);
  line-height: 1.15;
  margin: 0;
}

.box-peso-stamp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #047857;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Items Preview Chips */
.box-items-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.box-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(29, 78, 216, 0.05);
  color: #6B1C22;
  border: 1px solid rgba(29, 78, 216, 0.12);
}

/* Price & Action Bar */
.box-price-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-hairline);
  flex-wrap: wrap;
}

.box-pricing-group {
  display: flex;
  flex-direction: column;
}

.box-mrp-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mrp-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.mrp-val {
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.mrp-discount-tag {
  background: rgba(220, 38, 38, 0.1);
  color: #DC2626;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.box-deal-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.deal-curr {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--maroon-700);
}

.deal-val {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--maroon-700);
  line-height: 1;
}

.deal-unit {
  font-size: 11.5px;
  color: var(--text-secondary);
  font-weight: 600;
  margin-left: 4px;
}

.box-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  max-width: 250px;
}

.btn-box-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 9999px;
  background: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #062411;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

.btn-box-order:hover {
  background: #1eb857;
  color: #FFFFFF;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.45);
  transform: translateY(-1px);
}

.btn-box-catalog {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  color: var(--maroon-700);
  font-size: 11.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.btn-box-catalog:hover {
  background: rgba(29, 78, 216, 0.06);
  color: var(--maroon-800);
}

@media (max-width: 480px) {
  .box-price-action-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .box-action-buttons {
    max-width: 100%;
  }
}

/* Scroll Cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.hero-scroll-cue:hover {
  color: var(--maroon-700);
}

.scroll-cue-txt {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 32px;
  height: 1.5px;
  background: var(--maroon-border);
}

@media (max-width: 900px) {
  .hero-scroll-cue {
    display: none;
  }
}

/* ==========================================================================
   Infinite Marquee Ribbon
   ========================================================================== */
.luxury-marquee {
  overflow: hidden;
  background: #050E14;
  border-top: 1px solid var(--maroon-border);
  border-bottom: 1px solid var(--maroon-border);
  padding: 14px 0;
  position: relative;
  z-index: 10;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marqueeLoop 38s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--maroon-700);
}

.marquee-star {
  color: var(--gold-500);
  font-size: 14px;
}

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

/* ==========================================================================
   Editorial Sections Shared (Warm Ivory Background)
   ========================================================================== */
.editorial-section {
  padding: 100px 20px;
  position: relative;
}

.editorial-section.dark-alt {
  background: #050E14;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.section-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.editorial-section-header {
  max-width: 740px;
  margin-bottom: 56px;
}

.section-tag-gold {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--maroon-700);
  margin-bottom: 12px;
}

.section-title-serif {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.section-desc {
  font-family: var(--font-editorial);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Editorial Card in Clean Warm White */
.editorial-card {
  background: linear-gradient(165deg, #071922 0%, #0D2F38 45%, #06151C 100%);
  border: 1.5px solid rgba(224, 188, 94, 0.38);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(224, 188, 94, 0.3);
}

.cat-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #050E14;
  border: 1px solid var(--border-light);
  margin-bottom: 18px;
}

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

.luxury-cat-card:hover .cat-thumb-img {
  transform: scale(1.08);
}

.cat-index-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--maroon-border);
  color: var(--maroon-700);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.cat-price-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--maroon-700);
  color: #FFFFFF;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.cat-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cat-card-title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.cat-card-tagline {
  font-size: 12.5px;
  color: var(--maroon-700);
  margin-bottom: 10px;
  font-weight: 600;
}

.cat-card-specs {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 18px;
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

.cat-card-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.btn-card-details {
  padding: 9px 12px;
  border-radius: 8px;
  background: var(--maroon-subtle);
  border: 1px solid var(--maroon-border);
  color: var(--maroon-700);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-card-details:hover {
  background: var(--maroon-700);
  color: #FFFFFF;
}

.btn-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 8px;
  background: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #062411;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-card-wa:hover {
  background: #1eb857;
  color: #FFFFFF;
}


/* ==========================================================================
   Section 3: Interactive 3D Orbital Firework Study Deck
   ========================================================================== */
.study-card {
  padding: 36px 32px;
  background: #FFFFFF;
}

.study-deck-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .study-deck-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.deck-label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon-700);
  margin-bottom: 14px;
}

.formula-chips-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.formula-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #050E14;
  border: 1px solid var(--border-hairline);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}

.formula-chip:hover {
  background: var(--maroon-subtle);
  border-color: var(--maroon-border);
}

.formula-chip.active {
  background: var(--maroon-subtle);
  border-color: var(--maroon-700);
  color: var(--maroon-700);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.15);
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

.study-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.deck-info-box {
  background: #050E14;
  border: 1px solid var(--maroon-border);
  border-radius: 14px;
  padding: 24px;
}

#study-formula-name {
  font-size: 1.35rem;
  color: var(--maroon-700);
  font-weight: 800;
  margin-bottom: 8px;
}

#study-formula-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.deck-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border-hairline);
  padding-top: 16px;
}

.spec-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.spec-val {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-primary);
}

/* ==========================================================================
   Section 4: Brand Story & Heritage
   ========================================================================== */
.story-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 991px) {
  .story-split-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.story-card {
  padding: 16px;
  background: #FFFFFF;
}

.story-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
}

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

.story-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #1D4ED8;
  color: #FFFFFF;
  border: 1px solid var(--gold-400);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.4);
}

.badge-year {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
}

.badge-txt {
  font-size: 11.5px;
  color: #050E14;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.story-lead {
  font-family: var(--font-editorial);
  font-size: 1.45rem;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.story-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cred-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--maroon-subtle);
  color: var(--maroon-700);
  border: 1px solid var(--maroon-border);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.cred-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
}

.cred-item p {
  font-size: 12.5px;
  color: var(--text-secondary);
}

/* ==========================================================================
   Section 5: Master 142 Products Catalog (Uniq Ultra Style Table)
   ========================================================================== */
.catalog-section {
  background: #050E14;
  color: var(--text-primary);
  padding: 60px 16px 100px;
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.catalog-inner-container {
  max-width: 1180px;
  margin: 0 auto;
}

.catalog-header-block {
  margin-bottom: 28px;
}

.catalog-header-top {
  margin-bottom: 18px;
}

.catalog-main-heading {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin: 6px 0 8px;
  letter-spacing: -0.02em;
}

.catalog-sub-heading {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 720px;
}

/* Sticky Search & Mobile Category Ribbon */
.catalog-sticky-search {
  position: sticky;
  top: 72px;
  z-index: 45;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(24, 10, 5, 0.08);
  margin-bottom: 24px;
}

.search-and-controls-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-input-wrap input {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(24, 10, 5, 0.16);
  padding: 0 16px 0 46px;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.search-input-wrap input:focus {
  border-color: var(--maroon-700);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

.catalog-action-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.mobile-cat-picker-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 50px;
  background: #ffffff;
  border: 1.5px solid var(--maroon-border);
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--maroon-800);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(29, 78, 216, 0.08);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.mobile-cat-picker-btn:hover {
  background: #050E14;
  border-color: var(--maroon-700);
}

.picker-chevron {
  font-size: 10px;
  color: var(--text-muted);
}

.btn-quick-popup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1D4ED8 0%, #0B1D3A 100%);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: #050E14;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.25);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-quick-popup:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
  border-color: var(--gold-300);
  color: #FFF;
}

@media (max-width: 1023px) {
  .search-and-controls-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .catalog-action-buttons {
    display: flex;
    width: 100%;
    gap: 8px;
  }
  .mobile-cat-picker-btn {
    display: flex;
    flex: 1;
    justify-content: space-between;
  }
  .btn-quick-popup {
    flex-shrink: 0;
    padding: 0 14px;
    font-size: 12.5px;
  }
}

.search-svg-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

/* Mobile Category Pills */
.mobile-cat-nav {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-cat-nav {
    display: block;
    margin-top: 10px;
  }
}

.mobile-pills-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  list-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mobile-pills-list::-webkit-scrollbar {
  display: none;
}

.mobile-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 12.5px;
  font-family: inherit;
  font-weight: 500;
  border: 1px solid rgba(24, 10, 5, 0.15);
  background: #ffffff;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s;
}

.mobile-pill-link.active {
  background: var(--maroon-700);
  color: #ffffff;
  font-weight: 700;
  border-color: var(--maroon-700);
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
}

.pill-count {
  font-size: 11px;
  opacity: 0.8;
}

/* 2-Column Layout (Sidebar + Content) */
.catalog-split-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: start;
}

@media (max-width: 1023px) {
  .catalog-split-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Desktop Sidebar */
.catalog-sidebar {
  display: block;
}

@media (max-width: 1023px) {
  .catalog-sidebar {
    display: none;
  }
}

.sidebar-sticky-box {
  position: sticky;
  top: 145px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 4px;
}

.sidebar-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px 10px;
  border-bottom: 1px solid rgba(24, 10, 5, 0.08);
  margin-bottom: 8px;
}

.sidebar-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}

.sidebar-total-badge {
  background: rgba(24, 10, 5, 0.06);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 9999px;
}

.sidebar-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: none;
  background: transparent;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.18s;
  font-weight: 500;
}

.sidebar-cat-link:hover {
  background: rgba(24, 10, 5, 0.04);
  color: var(--text-primary);
}

.sidebar-cat-link.active {
  background: rgba(29, 78, 216, 0.08);
  color: var(--maroon-700);
  font-weight: 700;
}

.cat-link-count {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.sidebar-cat-link.active .cat-link-count {
  color: var(--maroon-700);
  font-weight: 700;
}

/* Right Content Area */
.catalog-content-area {
  min-width: 0;
}

/* Focused Single-Category Header Bar */
.cat-focus-header {
  background: #FFFFFF;
  border: 1.5px solid var(--maroon-border);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cat-focus-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cat-focus-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.cat-focus-badge {
  background: rgba(29, 78, 216, 0.08);
  color: var(--maroon-700);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(29, 78, 216, 0.15);
}

.cat-focus-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cat-nav-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #050E14;
  border: 1px solid var(--border-hairline);
  color: var(--text-primary);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
}

.cat-nav-arrow-btn:hover {
  background: #050E14;
  border-color: var(--maroon-border);
  color: var(--maroon-700);
}

.cat-toggle-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-hairline);
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
}

.cat-toggle-all-btn:hover {
  background: #050E14;
  color: var(--text-primary);
  border-color: var(--maroon-border);
}

@media (max-width: 767px) {
  .cat-focus-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 12px;
  }
  .cat-focus-actions {
    width: 100%;
    justify-content: space-between;
  }
  .cat-nav-arrow-btn {
    flex: 1;
    justify-content: center;
    padding: 8px 8px;
    font-size: 12px;
  }
}

.category-section {
  scroll-margin-top: 145px;
  margin-bottom: 44px;
  content-visibility: auto;
  contain-intrinsic-size: 0 450px;
}

.category-section-header {
  margin-bottom: 14px;
}

.category-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-transform: none;
}

.category-count {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Desktop Table View */
.desktop-table-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(24, 10, 5, 0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.03);
}

@media (max-width: 1023px) {
  .desktop-table-card {
    display: none;
  }
}

.wholesale-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.wholesale-price-table thead tr {
  background: #050E14;
  border-bottom: 1px solid rgba(24, 10, 5, 0.08);
}

.wholesale-price-table th {
  padding: 12px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  font-weight: 600;
  text-align: left;
}

.wholesale-price-table th.th-mrp,
.wholesale-price-table th.th-price,
.wholesale-price-table th.th-total {
  text-align: right;
}

.wholesale-price-table th.th-qty {
  text-align: center;
}

.wholesale-price-table td,
.wholesale-price-table th[scope="row"] {
  padding: 12px 16px;
  border-top: 1px solid rgba(24, 10, 5, 0.05);
  vertical-align: middle;
  font-weight: normal;
}

.product-table-row:hover {
  background: rgba(24, 10, 5, 0.015);
}

.product-table-row.row-active {
  background: rgba(29, 78, 216, 0.04);
}

.prod-identity-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prod-thumb-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(24, 10, 5, 0.14);
  padding: 0;
  background: #fdfdfd;
  cursor: pointer;
  flex-shrink: 0;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.prod-thumb-box:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.prod-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-title-text {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.td-unit {
  color: var(--text-secondary);
  font-size: 13px;
}

.td-mrp {
  text-align: right;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 13px;
}

.td-price {
  text-align: right;
  white-space: nowrap;
}

.price-bold {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.discount-pill-green {
  background: var(--green-badge-bg);
  color: var(--green-badge);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  margin-left: 8px;
  display: inline-block;
}

/* Stepper Control */
.stepper-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.step-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(24, 10, 5, 0.18);
  background: #ffffff;
  color: var(--text-primary);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.step-btn:hover:not(:disabled) {
  border-color: var(--maroon-700);
  color: var(--maroon-700);
  background: #050E14;
}

.step-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.step-input-num {
  width: 44px;
  height: 34px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(24, 10, 5, 0.18);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  outline: none;
  -moz-appearance: textfield;
}

.step-input-num::-webkit-outer-spin-button,
.step-input-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.td-total {
  text-align: right;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

/* Mobile Products List */
.mobile-products-list {
  display: none;
}

@media (max-width: 1023px) {
  .mobile-products-list {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(24, 10, 5, 0.1);
    border-radius: 14px;
    overflow: hidden;
    list-style: none;
  }
}

.mobile-product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(24, 10, 5, 0.06);
}

.mobile-product-card:last-child {
  border-bottom: none;
}

.mobile-product-card.mobile-active {
  background: rgba(29, 78, 216, 0.04);
}

.mobile-thumb {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.mobile-info-column {
  flex: 1;
  min-width: 0;
}

.mobile-prod-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.25;
}

.mobile-prod-unit {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.mobile-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-subtotal-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--maroon-700);
  margin-top: 3px;
}

.mobile-stepper-column {
  flex-shrink: 0;
}

/* Empty search result */
.catalog-empty-search {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.catalog-empty-search h3 {
  color: var(--text-primary);
  margin-bottom: 8px;
}

/* ==========================================================================
   Sticky Bottom Wholesale Bar (Rich Espresso & Gold)
   ========================================================================== */
.sticky-wholesale-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: rgba(29, 18, 12, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold-border);
  padding: 12px 16px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-wholesale-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-meter-col {
  flex: 1;
  min-width: 240px;
}

.sticky-meter-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 6px;
}

.meter-status-text {
  color: #FFFFFF;
  font-weight: 600;
}

.cart-summary-text {
  color: var(--gold-300);
  font-weight: 700;
}

.sticky-meter-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  overflow: hidden;
}

.sticky-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #D4A017, #10B981);
  transition: width 0.3s ease;
  border-radius: 9999px;
}

.sticky-actions-col {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--gold-border);
  color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sticky-btn-cart:hover {
  background: rgba(212, 160, 23, 0.25);
}

.sticky-badge {
  background: var(--gold-500);
  color: #060709;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 9999px;
}

.sticky-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: #25D366;
  border: none;
  color: #062411;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sticky-btn-wa:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Section 6: Contact & Factory Enquiry
   ========================================================================== */
.contact-deck-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
}

@media (max-width: 900px) {
  .contact-deck-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card,
.contact-form-card {
  padding: 36px 32px;
  background: linear-gradient(165deg, #071922 0%, #0D2F38 45%, #06151C 100%);
  border: 1.5px solid rgba(224, 188, 94, 0.40);
  border-radius: 24px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(224, 188, 94, 0.35), 0 0 25px rgba(13, 47, 56, 0.4);
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--maroon-700);
  font-weight: 800;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
}

.contact-item p, .contact-link {
  font-size: 13.5px;
  color: var(--text-secondary);
  text-decoration: none;
}

.contact-link:hover {
  color: var(--maroon-700);
  text-decoration: underline;
}

.form-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.editorial-form label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.editorial-form input,
.editorial-form textarea {
  width: 100%;
  background: #050E14;
  border: 1px solid var(--border-hairline);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.editorial-form input:focus,
.editorial-form textarea:focus {
  border-color: var(--maroon-700);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

/* ==========================================================================
   Editorial Footer (Deep Grounding Royal Base)
   ========================================================================== */
.editorial-footer {
  background: #1C0E0B;
  border-top: 1px solid var(--gold-border);
  padding: 80px 20px 30px;
  position: relative;
  z-index: 10;
  color: #D6CCC2;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  .footer-top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

.footer-brand .brand-title {
  color: #FFFFFF;
}

.footer-brand .brand-origin {
  color: var(--gold-400);
}

.footer-brand-desc {
  font-size: 13.5px;
  color: #B3A59A;
  line-height: 1.6;
  max-width: 320px;
}

.footer-nav-col h4 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}

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

.footer-nav-col a {
  color: #D6CCC2;
  text-decoration: none;
  font-size: 13.5px;
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--gold-300);
}

.footer-bullet {
  color: var(--gold-400);
  margin-right: 6px;
}

.legal-disclaimer-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 12px;
  color: #A19184;
  line-height: 1.6;
  margin-bottom: 40px;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  font-size: 12px;
  color: #8C7B72;
}

/* ==========================================================================
   Modals & Drawers
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(29, 18, 12, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  max-width: 600px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--maroon-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--maroon-border);
  color: var(--maroon-700);
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
}

.modal-img-wrap {
  width: 100%;
  height: 240px;
  background: #050E14;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 28px;
}

#cat-modal-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 6px 0 10px;
}

.modal-specs {
  font-size: 13px;
  color: var(--maroon-700);
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.modal-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.modal-highlights-list li::before {
  content: '✓ ';
  color: var(--green-badge);
  font-weight: 800;
}

/* Image Lightbox */
.image-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(29, 18, 12, 0.85);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.image-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.image-modal-box {
  max-width: 680px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--maroon-border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.image-modal-box img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  background: #050E14;
}

.modal-details {
  padding: 18px 24px;
  color: var(--text-primary);
}

/* Wholesale Cart Drawer (Warm White/Ivory) */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  border-left: 1px solid var(--maroon-border);
  z-index: 180;
  display: flex;
  flex-direction: column;
  transition: right 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -15px 0 50px rgba(29, 78, 216, 0.12);
}

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

.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(29, 18, 12, 0.5);
  backdrop-filter: blur(4px);
  z-index: 175;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #050E14;
}

.cart-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-title-row h3 {
  font-size: 1.25rem;
  color: var(--maroon-700);
}

.cart-count-badge {
  background: rgba(29, 78, 216, 0.1);
  color: var(--maroon-700);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
}

/* Min Order Meter */
.min-order-meter-box {
  padding: 14px 24px;
  background: rgba(212, 160, 23, 0.08);
  border-bottom: 1px solid var(--border-hairline);
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--text-secondary);
}

.meter-bar-track {
  height: 6px;
  background: rgba(24, 10, 5, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.meter-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #D4A017, #10B981);
  border-radius: 9999px;
  transition: width 0.3s;
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-hairline);
}

.cart-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  background: #fdfdfd;
  border: 1px solid var(--border-hairline);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-meta {
  font-size: 11.5px;
  color: var(--text-muted);
}

.cart-item-stepper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-step-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #050E14;
  border: 1px solid var(--border-hairline);
  color: var(--text-primary);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
}

.cart-qty-text {
  font-size: 13px;
  font-weight: 700;
  min-width: 24px;
  text-align: center;
}

.cart-item-subtotal {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--maroon-700);
  min-width: 55px;
  text-align: right;
}

.cart-empty-msg {
  text-align: center;
  padding: 60px 10px;
  color: var(--text-muted);
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-hairline);
  background: #050E14;
}

.cart-pricing-summary {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13.5px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.breakdown-row.savings {
  color: var(--green-badge);
  font-weight: 700;
}

.breakdown-row.total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  border-top: 1px solid var(--border-hairline);
  padding-top: 8px;
  margin-top: 4px;
}

.breakdown-row.total span:last-child {
  color: var(--maroon-700);
}

.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #25D366;
  border: none;
  color: #062411;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  margin-bottom: 10px;
}

.cart-checkout-btn:hover:not(:disabled) {
  filter: brightness(1.08);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

.cart-checkout-btn:disabled {
  background: rgba(29, 18, 12, 0.12);
  color: var(--text-muted);
  cursor: not-allowed;
}

.cart-invoice-btn {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-hairline);
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cart-invoice-btn:hover {
  background: #fdfdfd;
  color: var(--text-primary);
}

/* ==========================================================================
   Category Quick-Order Pop-up ("Orey Pop-up")
   ========================================================================== */
.cat-quick-modal-card {
  max-width: 780px;
  width: 96%;
  max-height: 88vh;
  background: #FFFFFF;
  border: 1.5px solid var(--maroon-border);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(29, 78, 216, 0.28), 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: modalScaleUp 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.94) translateY(12px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.cat-quick-modal-header {
  padding: 18px 24px 14px;
  background: #050E14;
  border-bottom: 1px solid var(--border-hairline);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cat-quick-title-wrap {
  flex: 1;
  min-width: 0;
}

.cat-quick-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--maroon-700);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
}

.cat-quick-title {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.25;
}

.cat-quick-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Category Tabs Bar inside Quick Pop-up */
.cqm-category-tabs-bar {
  background: #050E14;
  border-bottom: 1px solid var(--border-hairline);
  padding: 8px 16px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.cqm-category-tabs-bar::-webkit-scrollbar {
  height: 4px;
}

.cqm-category-tabs-bar::-webkit-scrollbar-thumb {
  background: rgba(29, 78, 216, 0.2);
  border-radius: 4px;
}

.cqm-tabs-track {
  display: flex;
  gap: 6px;
  white-space: nowrap;
}

.cqm-tab-pill {
  padding: 6px 13px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  background: #FFFFFF;
  color: var(--text-secondary);
  border: 1px solid rgba(24, 10, 5, 0.12);
  cursor: pointer;
  transition: all 0.16s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.cqm-tab-pill:hover {
  background: #050E14;
  color: var(--maroon-700);
  border-color: var(--maroon-border);
}

.cqm-tab-pill.active {
  background: var(--maroon-700);
  color: #FFFFFF;
  border-color: var(--maroon-700);
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.cqm-tab-pill .pill-num {
  font-size: 10.5px;
  opacity: 0.85;
}

/* Products Scroll Container */
.cqm-products-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: calc(88vh - 220px);
  background: #050E14;
}

/* Product Card Row in Quick Pop-up */
.cqm-product-row {
  background: #FFFFFF;
  border: 1px solid rgba(24, 10, 5, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: all 0.18s ease;
}

.cqm-product-row:hover {
  border-color: var(--maroon-border);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.cqm-product-row.has-qty {
  background: #050E14;
  border-color: var(--maroon-border);
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.08);
}

.cqm-prod-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.cqm-prod-thumb {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: cover;
  background: #050E14;
  border: 1px solid var(--border-hairline);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.16s ease;
}

.cqm-prod-thumb:hover {
  transform: scale(1.06);
}

.cqm-prod-meta {
  flex: 1;
  min-width: 0;
}

.cqm-prod-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.cqm-prod-unit {
  font-size: 11.5px;
  color: var(--text-muted);
}

.cqm-prod-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.cqm-prod-mrp {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.cqm-prod-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--maroon-700);
}

.cqm-prod-disc {
  font-size: 11px;
  font-weight: 700;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  padding: 1px 6px;
  border-radius: 9999px;
}

.cqm-prod-ctrls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cqm-prod-subtotal {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--maroon-700);
  min-width: 60px;
  text-align: right;
}

/* Quick Modal Footer */
.cqm-footer {
  padding: 14px 20px;
  background: #050E14;
  border-top: 1px solid var(--border-hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cqm-total-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cqm-items-count {
  font-size: 12px;
  color: var(--text-muted);
}

.cqm-cat-total {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--maroon-700);
}

.cqm-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 640px) {
  .cat-quick-modal-card {
    max-height: 94vh;
    width: 98%;
  }
  .cat-quick-modal-header {
    padding: 14px 16px 12px;
  }
  .cqm-products-scroll {
    padding: 12px 14px;
    gap: 8px;
  }
  .cqm-product-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 12px;
  }
  .cqm-prod-ctrls {
    justify-content: space-between;
    width: 100%;
    border-top: 1px dashed rgba(24, 10, 5, 0.08);
    padding-top: 8px;
  }
  .cqm-footer {
    padding: 12px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cqm-actions {
    width: 100%;
  }
  .cqm-actions button {
    flex: 1;
    justify-content: center;
    font-size: 13px;
    padding: 10px 8px;
  }
}

/* ==========================================================================
   Mobile Category Bottom Sheet
   ========================================================================== */
.mobile-sheet-card {
  max-width: 600px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid var(--maroon-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 85vh;
  position: relative;
  animation: modalScaleUp 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 767px) {
  #mobile-category-sheet-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .mobile-sheet-card {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    max-height: 82vh;
    animation: slideUpBottom 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@keyframes slideUpBottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.mobile-sheet-header {
  padding: 16px 20px;
  background: #050E14;
  border-bottom: 1px solid var(--border-hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sheet-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--maroon-700);
  margin-top: 2px;
}

.mobile-sheet-grid {
  padding: 16px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  background: #050E14;
}

.mobile-sheet-cat-card {
  background: #FFFFFF;
  border: 1px solid rgba(24, 10, 5, 0.1);
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.mobile-sheet-cat-card:hover,
.mobile-sheet-cat-card:active {
  background: #050E14;
  border-color: var(--maroon-border);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 78, 216, 0.1);
}

.mobile-sheet-cat-card.active {
  background: rgba(29, 78, 216, 0.08);
  border-color: var(--maroon-700);
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.2);
}

.mobile-sheet-cat-icon {
  font-size: 24px;
  margin-bottom: 6px;
}

.mobile-sheet-cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 4px;
}

.mobile-sheet-cat-count {
  font-size: 11px;
  color: var(--text-muted);
  background: rgba(24, 10, 5, 0.06);
  padding: 2px 7px;
  border-radius: 9999px;
}




/* ==========================================================================
   IGNIS LUXE / SHINE LUXE ULTRA-PREMIUM MIDNIGHT BLUE & CHAMPAGNE GOLD THEME
   Strictly matched to the User Reference Image:
   Deep Midnight Petrol-Sapphire, Champagne Gold Filigree, Cyan Spiral Energy,
   Circular Gold-Rimmed Emblems, and NEERI Green Safety Accents.
   ========================================================================== */

:root {
  /* Ultra-Premium Midnight Canvas */
  --bg-page: #040D13;
  --bg-surface: #06151E;
  --bg-card: #081B24;
  --bg-card-alt: #0C232E;
  --bg-alt: #081922;

  /* Reference Image Champagne Gold */
  --gold-300: #F3DE9A;
  --gold-400: #E7C972;
  --gold-500: #E0BC5E;
  --gold-600: #C5A049;
  --gold-700: #9F7E32;
  --gold-subtle: rgba(224, 188, 94, 0.12);
  --gold-border: rgba(224, 188, 94, 0.38);
  --gold-border-bright: rgba(224, 188, 94, 0.70);
  --gold-glow: rgba(224, 188, 94, 0.35);

  /* Reference Image Cyan Energy */
  --cyan-spiral: #38BDF8;
  --cyan-glow: rgba(56, 189, 248, 0.40);

  /* Reference Image NEERI Green */
  --neeri-green: #66D99E;
  --neeri-green-subtle: rgba(102, 217, 158, 0.14);
  --neeri-green-border: rgba(102, 217, 158, 0.35);

  /* High-Contrast Luxury Typography */
  --text-primary: #FFFFFF;
  --text-secondary: #C4D6E0;
  --text-muted: #7E97A6;
  --text-gold: #E0BC5E;

  /* Editorial Fonts */
  --font-display: 'Cinzel', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

/* Base Body Dark Luxury Canvas */
body.luxury-body {
  background-color: var(--bg-page) !important;
  background-image: 
    radial-gradient(ellipse at 50% 0%, #0D2F38 0%, #071922 45%, #040D13 100%) !important;
  color: var(--text-primary) !important;
}

/* Announcement Top Bar */
.luxury-top-bar {
  background: linear-gradient(135deg, #05131A 0%, #0C2B36 50%, #05131A 100%) !important;
  border-bottom: 1px solid var(--gold-border) !important;
}
.top-bar-badge {
  background: var(--gold-subtle) !important;
  border: 1px solid var(--gold-border-bright) !important;
  color: var(--gold-500) !important;
  font-family: var(--font-display) !important;
  letter-spacing: 1px;
}
.top-bar-text {
  color: #FFFFFF !important;
}
.top-bar-link {
  color: var(--gold-400) !important;
}

/* Sticky Header */
.luxury-header {
  background: rgba(6, 21, 28, 0.88) !important;
  border-bottom: 1px solid rgba(224, 188, 94, 0.22) !important;
  backdrop-filter: blur(16px) !important;
}
.brand-monogram {
  border: 1.5px solid var(--gold-border-bright) !important;
  background: rgba(13, 47, 56, 0.75) !important;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.3) !important;
}
.brand-title {
  color: #FFFFFF !important;
  font-family: var(--font-display) !important;
  letter-spacing: 2px !important;
}
.brand-origin {
  color: var(--gold-500) !important;
  letter-spacing: 3px !important;
}
.nav-item {
  color: var(--text-secondary) !important;
}
.nav-item:hover {
  color: var(--gold-400) !important;
}
.highlighted-nav {
  border: 1px solid var(--gold-border) !important;
  background: var(--gold-subtle) !important;
  color: var(--gold-400) !important;
}
.nav-count-badge {
  background: var(--gold-500) !important;
  color: #040D13 !important;
}
.header-icon-btn, .header-cart-btn, .mobile-toggle-btn {
  background: rgba(13, 47, 56, 0.75) !important;
  border: 1px solid var(--gold-border) !important;
  color: var(--gold-400) !important;
}

/* Hero Section */
.hero-eyebrow {
  color: var(--gold-500) !important;
}
.hero-editorial-title {
  color: #FFFFFF !important;
}
.hero-editorial-title .line-2 {
  color: var(--gold-400) !important;
  text-shadow: 0 0 30px rgba(224, 188, 94, 0.45);
}
.hero-desc-lead {
  color: var(--text-secondary) !important;
}
.btn-gold-luxury {
  background: linear-gradient(135deg, #E0BC5E 0%, #C5A049 100%) !important;
  color: #040D13 !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(224, 188, 94, 0.35) !important;
}
.btn-translucent-luxury {
  background: rgba(13, 47, 56, 0.65) !important;
  border: 1.5px solid var(--gold-border) !important;
  color: #FFFFFF !important;
}
.btn-translucent-luxury:hover {
  border-color: var(--gold-border-bright) !important;
  color: var(--gold-400) !important;
}
.metric-card {
  background: rgba(8, 27, 36, 0.75) !important;
  border: 1px solid var(--gold-border) !important;
}
.metric-num {
  color: var(--gold-400) !important;
}
.metric-lbl {
  color: var(--text-secondary) !important;
}

/* ==========================================================================
   IGNIS LUXE CARD SPECIFIC STYLES (Direct Match to User Reference Screenshot)
   ========================================================================== */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ignis-luxe-card {
  position: relative;
  background: linear-gradient(165deg, #071922 0%, #0D2F38 45%, #06151C 100%);
  border: 1.5px solid rgba(224, 188, 94, 0.40);
  border-radius: 26px;
  padding: 24px 20px;
  box-shadow: 
    0 16px 40px rgba(2, 10, 15, 0.8),
    inset 0 1px 0 rgba(224, 188, 94, 0.35),
    0 0 25px rgba(13, 47, 56, 0.4);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
}
.ignis-luxe-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 188, 94, 0.85);
  box-shadow: 
    0 24px 50px rgba(2, 10, 15, 0.9),
    inset 0 1px 0 rgba(224, 188, 94, 0.6),
    0 0 35px rgba(56, 189, 248, 0.3);
}

/* Card Top: IGNIS LUXE + Glowing Cyan Spiral */
.ignis-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 4px 4px;
}
.ignis-brand-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-500);
}
.cyan-swirl-icon {
  filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.65));
}

/* Golden Hairline Divider */
.ignis-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(224, 188, 94, 0.45) 20%, rgba(224, 188, 94, 0.45) 80%, transparent);
  margin: 12px 0 16px 0;
}

/* Center Circle Frame with Gold Rim */
.ignis-center-circle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 16px 0;
}
.ignis-circle-emblem {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(224, 188, 94, 0.65);
  box-shadow: 
    0 0 24px rgba(6, 26, 34, 0.95),
    inset 0 0 18px rgba(224, 188, 94, 0.25),
    0 0 15px rgba(56, 189, 248, 0.2);
  background: radial-gradient(circle, #0D2F38 0%, #061820 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ignis-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ignis-luxe-card:hover .ignis-circle-img {
  transform: scale(1.08);
}
.ignis-circle-flame-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(7, 25, 34, 0.85);
  border: 1px solid var(--gold-border-bright);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(224, 188, 94, 0.5);
}

/* Card Info: Title + Grade 1 Sivakasi */
.ignis-card-info {
  text-align: center;
  padding: 4px 0;
}
.ignis-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1.5px;
  line-height: 1.3;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.ignis-card-grade {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-500);
  text-transform: uppercase;
}

/* Bottom Row: NEERI Green + Wholesale Price */
.ignis-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 14px 4px;
}
.ignis-neeri-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--neeri-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-shadow: 0 0 12px rgba(102, 217, 158, 0.4);
}
.ignis-price-val {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--gold-500);
  text-shadow: 0 0 15px rgba(224, 188, 94, 0.4);
}

/* Action Buttons inside Card */
.ignis-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr 44px;
  gap: 8px;
  margin-top: auto;
}
.btn-ignis-specs {
  background: rgba(13, 47, 56, 0.6);
  border: 1px solid var(--gold-border);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 9px 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ignis-specs:hover {
  background: rgba(224, 188, 94, 0.15);
  border-color: var(--gold-500);
  color: var(--gold-400);
}
.btn-ignis-quick {
  background: linear-gradient(135deg, #0E3642 0%, #164E5E 100%);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ignis-quick:hover {
  background: var(--gold-500);
  color: #040D13;
  box-shadow: 0 0 16px rgba(224, 188, 94, 0.4);
}
.btn-ignis-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #040D13;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-ignis-wa:hover {
  background: #2BF074;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   WHOLESALE CATALOG TABLE & PRODUCT CARDS (Dark Luxury Styling)
   ========================================================================== */
.table-responsive-wrapper {
  background: rgba(8, 27, 36, 0.85) !important;
  border: 1.5px solid var(--gold-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 40px rgba(2, 10, 15, 0.8) !important;
  backdrop-filter: blur(12px) !important;
}
.products-table thead th {
  background: rgba(13, 47, 56, 0.85) !important;
  color: var(--gold-500) !important;
  font-family: var(--font-display) !important;
  letter-spacing: 1px !important;
  border-bottom: 1px solid var(--gold-border) !important;
}
.product-table-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: background 0.15s ease !important;
}
.product-table-row:hover {
  background: rgba(13, 47, 56, 0.35) !important;
}
.product-table-row.row-active {
  background: rgba(13, 47, 56, 0.6) !important;
  border-left: 3px solid var(--gold-500) !important;
}
.prod-title-text {
  color: #FFFFFF !important;
  font-weight: 600 !important;
}
.prod-thumb-box {
  border: 1.5px solid var(--gold-border) !important;
  border-radius: 10px !important;
  background: #071922 !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) !important;
}
.td-unit {
  color: var(--text-secondary) !important;
}
.td-mrp {
  color: var(--text-muted) !important;
  text-decoration: line-through !important;
}
.price-bold {
  color: var(--gold-400) !important;
  font-family: var(--font-display) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.discount-pill-green {
  background: var(--neeri-green-subtle) !important;
  color: var(--neeri-green) !important;
  border: 1px solid var(--neeri-green-border) !important;
  font-weight: 700 !important;
}
.stepper-flex {
  border: 1px solid var(--gold-border) !important;
  border-radius: 8px !important;
  background: #071922 !important;
}
.step-btn {
  background: #0D2F38 !important;
  color: #FFFFFF !important;
  border: none !important;
  font-weight: 700 !important;
}
.step-btn:hover:not(:disabled) {
  background: var(--gold-500) !important;
  color: #040D13 !important;
}
.step-input-num {
  background: transparent !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
}
.td-total {
  color: var(--gold-400) !important;
  font-weight: 700 !important;
}

/* Mobile Product Cards */
.mobile-product-card {
  background: linear-gradient(165deg, #071922 0%, #0D2F38 60%, #06151C 100%) !important;
  border: 1.5px solid var(--gold-border) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(2, 10, 15, 0.7) !important;
  margin-bottom: 12px !important;
}
.mobile-product-card.mobile-active {
  border-color: var(--gold-border-bright) !important;
  box-shadow: 0 0 20px rgba(224, 188, 94, 0.25) !important;
}
.mobile-prod-title {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}
.mobile-subtotal-tag {
  color: var(--gold-400) !important;
  font-weight: 700 !important;
}

/* Category Filter Navigation */
.desktop-cat-sidebar {
  background: rgba(8, 27, 36, 0.85) !important;
  border: 1px solid var(--gold-border) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(12px) !important;
}
.sidebar-cat-link {
  color: var(--text-secondary) !important;
}
.sidebar-cat-link:hover {
  color: var(--gold-400) !important;
  background: rgba(224, 188, 94, 0.08) !important;
}
.sidebar-cat-link.active {
  background: linear-gradient(135deg, #0E3642 0%, #164E5E 100%) !important;
  border: 1px solid var(--gold-border-bright) !important;
  color: var(--gold-400) !important;
}
.sidebar-cat-link.active .cat-link-count {
  background: var(--gold-500) !important;
  color: #040D13 !important;
}
.cat-pill-btn {
  background: rgba(8, 27, 36, 0.8) !important;
  border: 1px solid var(--gold-border) !important;
  color: var(--text-secondary) !important;
}
.cat-pill-btn.active {
  background: linear-gradient(135deg, #0E3642 0%, #164E5E 100%) !important;
  border-color: var(--gold-border-bright) !important;
  color: var(--gold-400) !important;
}

/* Sticky Bottom Wholesale Cart Bar */
.sticky-wholesale-bar {
  background: rgba(6, 21, 28, 0.92) !important;
  border-top: 1.5px solid var(--gold-border) !important;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(16px) !important;
}
.order-estimate-drawer {
  background: #071922 !important;
  border-left: 1.5px solid var(--gold-border) !important;
}
.drawer-header {
  background: #09232E !important;
  border-bottom: 1px solid var(--gold-border) !important;
}
.drawer-title {
  color: var(--gold-400) !important;
  font-family: var(--font-display) !important;
}
.cat-quick-modal-card, .mobile-sheet-card {
  background: #071922 !important;
  border: 1.5px solid var(--gold-border-bright) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(56, 189, 248, 0.25) !important;
}
.cat-quick-modal-header, .mobile-sheet-header {
  background: #09232E !important;
  border-bottom: 1px solid var(--gold-border) !important;
}
.cat-quick-title, .mobile-sheet-title {
  color: #FFFFFF !important;
  font-family: var(--font-display) !important;
}
.cat-quick-badge, .section-tag-gold {
  color: var(--gold-500) !important;
  font-family: var(--font-display) !important;
}
.study-card {
  background: rgba(8, 27, 36, 0.8) !important;
  border: 1.5px solid var(--gold-border) !important;
}
.formula-chip {
  background: #071922 !important;
  border: 1px solid var(--gold-border) !important;
  color: var(--text-secondary) !important;
}
.formula-chip.active {
  border-color: var(--gold-border-bright) !important;
  color: var(--gold-400) !important;
  box-shadow: 0 0 12px rgba(224, 188, 94, 0.3) !important;
}



/* ==========================================================================
   HIGH CONTRAST ULTRA-PREMIUM CATALOG & TYPOGRAPHY FIX
   Ensures ALL words, headings, labels, table headers, and sidebar items
   have crystal-clear, high-contrast readability against the dark midnight theme.
   ========================================================================== */

/* Catalog Section Base */
.catalog-section {
  background: #040D13 !important;
  background-color: #040D13 !important;
  color: #FFFFFF !important;
  border-top: 1px solid rgba(224, 188, 94, 0.25) !important;
  border-bottom: 1px solid rgba(224, 188, 94, 0.25) !important;
}

/* Headings & Eyebrows */
.section-tag-gold, .catalog-header-top .section-tag-gold {
  color: #E0BC5E !important;
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-shadow: 0 0 15px rgba(224, 188, 94, 0.4) !important;
}

.catalog-main-heading {
  color: #FFFFFF !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: clamp(2.2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8) !important;
}

.catalog-sub-heading {
  color: #CBD5E1 !important;
  font-size: 15.5px !important;
  line-height: 1.6 !important;
  max-width: 760px !important;
}

.catalog-sub-heading strong, .catalog-sub-heading span {
  color: #E0BC5E !important;
  font-weight: 700 !important;
}

/* Search Bar & Quick Pop-up Header */
.catalog-search-wrap {
  display: flex !important;
  gap: 16px !important;
  align-items: center !important;
  margin: 24px 0 32px 0 !important;
}

.search-input-box, #catalog-search-input {
  background: #071922 !important;
  background-color: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.4) !important;
  border-radius: 14px !important;
  color: #FFFFFF !important;
  font-size: 15px !important;
  padding: 14px 18px 14px 44px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 2px rgba(0,0,0,0.4) !important;
}

.search-input-box::placeholder, #catalog-search-input::placeholder {
  color: #8DA4B1 !important;
  opacity: 1 !important;
}

.search-icon-wrap svg {
  stroke: #E0BC5E !important;
}

.search-clear-btn {
  color: #8DA4B1 !important;
}
.search-clear-btn:hover {
  color: #FFFFFF !important;
}

.btn-search-quick-modal {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(224, 188, 94, 0.5) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.4) !important;
}

/* Category Sidebar */
.desktop-cat-sidebar {
  background: #071922 !important;
  background-color: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7) !important;
  padding: 20px 16px !important;
}

.sidebar-title {
  color: #E0BC5E !important;
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2.5px !important;
}

.sidebar-count-total {
  background: rgba(224, 188, 94, 0.15) !important;
  border: 1px solid rgba(224, 188, 94, 0.4) !important;
  color: #E0BC5E !important;
  font-weight: 700 !important;
}

.sidebar-cat-link {
  color: #E2E8F0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  transition: all 0.18s ease !important;
}

.sidebar-cat-link:hover {
  background: rgba(224, 188, 94, 0.12) !important;
  color: #E0BC5E !important;
}

.sidebar-cat-link.active {
  background: linear-gradient(135deg, #0C2B36 0%, #134556 100%) !important;
  border: 1.5px solid #E0BC5E !important;
  color: #E0BC5E !important;
  box-shadow: 0 0 15px rgba(224, 188, 94, 0.25) !important;
}

.sidebar-cat-link .cat-link-name {
  color: inherit !important;
}

.sidebar-cat-link .cat-link-count {
  background: rgba(224, 188, 94, 0.18) !important;
  color: #E0BC5E !important;
  border: 1px solid rgba(224, 188, 94, 0.35) !important;
  font-weight: 700 !important;
}

.sidebar-cat-link.active .cat-link-count {
  background: #E0BC5E !important;
  color: #040D13 !important;
}

/* Category Navigation Ribbon (Mobile & Horizontal) */
.category-ribbon-bar {
  background: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  border-radius: 16px !important;
  padding: 12px 16px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6) !important;
}

.cat-pill-btn {
  background: #0D2F38 !important;
  border: 1px solid rgba(224, 188, 94, 0.3) !important;
  color: #E2E8F0 !important;
  font-weight: 600 !important;
}

.cat-pill-btn:hover {
  border-color: #E0BC5E !important;
  color: #E0BC5E !important;
}

.cat-pill-btn.active {
  background: #E0BC5E !important;
  color: #040D13 !important;
  border-color: #FFFFFF !important;
  font-weight: 700 !important;
}

.ribbon-action-btn {
  background: #0D2F38 !important;
  border: 1px solid rgba(224, 188, 94, 0.35) !important;
  color: #E2E8F0 !important;
}

.ribbon-action-btn:hover {
  background: rgba(224, 188, 94, 0.15) !important;
  color: #E0BC5E !important;
}

.btn-open-pop-ribbon {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%) !important;
  border: 1px solid #E0BC5E !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

/* Category Focus Heading above table */
.category-focus-heading-row {
  margin: 28px 0 16px 0 !important;
}

.cat-focus-name {
  color: #FFFFFF !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
}

.cat-focus-badge {
  background: rgba(224, 188, 94, 0.15) !important;
  border: 1px solid rgba(224, 188, 94, 0.45) !important;
  color: #E0BC5E !important;
  font-family: var(--font-display) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

/* Master Wholesale Products Table */
.table-responsive-wrapper {
  background: #071922 !important;
  background-color: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.4) !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8) !important;
  overflow: hidden !important;
}

.products-table {
  background: #071922 !important;
  background-color: #071922 !important;
  width: 100% !important;
  border-collapse: collapse !important;
}

.products-table thead th {
  background: #0B2533 !important;
  background-color: #0B2533 !important;
  color: #E0BC5E !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 16px 14px !important;
  border-bottom: 2px solid rgba(224, 188, 94, 0.45) !important;
}

.product-table-row {
  background: #071922 !important;
  background-color: #071922 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background 0.15s ease !important;
}

.product-table-row:hover {
  background: #0D2F38 !important;
  background-color: #0D2F38 !important;
}

.product-table-row.row-active {
  background: #0E3642 !important;
  background-color: #0E3642 !important;
  border-left: 4px solid #E0BC5E !important;
}

.prod-title-text {
  color: #FFFFFF !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.prod-thumb-box {
  background: #040D13 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.4) !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6) !important;
}

.td-unit {
  color: #CBD5E1 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.td-mrp {
  color: #94A3B8 !important;
  text-decoration: line-through !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.td-price {
  white-space: nowrap !important;
}

.price-bold {
  color: #F6CF65 !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-shadow: 0 0 12px rgba(246, 207, 101, 0.3) !important;
}

.discount-pill-green {
  background: rgba(102, 217, 158, 0.15) !important;
  color: #66D99E !important;
  border: 1px solid rgba(102, 217, 158, 0.4) !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  padding: 3px 7px !important;
  border-radius: 6px !important;
}

.stepper-flex {
  background: #040D13 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.4) !important;
  border-radius: 9px !important;
}

.step-btn {
  background: #0D2F38 !important;
  color: #FFFFFF !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  border: none !important;
  transition: all 0.15s ease !important;
}

.step-btn:hover:not(:disabled) {
  background: #E0BC5E !important;
  color: #040D13 !important;
}

.step-input-num {
  background: transparent !important;
  color: #FFFFFF !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.td-total {
  color: #F6CF65 !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
}

/* Mobile Product Cards */
.mobile-product-card {
  background: linear-gradient(165deg, #071922 0%, #0D2F38 60%, #06151C 100%) !important;
  border: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7) !important;
}

.mobile-product-card.mobile-active {
  border-color: #E0BC5E !important;
  box-shadow: 0 0 20px rgba(224, 188, 94, 0.3) !important;
}

.mobile-prod-title {
  color: #FFFFFF !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}

.mobile-prod-unit {
  color: #CBD5E1 !important;
}

.mobile-subtotal-tag {
  color: #F6CF65 !important;
  font-weight: 700 !important;
}

/* Heritage / Story Section */
.story-heritage-section {
  background: #040D13 !important;
  color: #FFFFFF !important;
}
.story-headline {
  color: #FFFFFF !important;
}
.story-lead, .story-body {
  color: #CBD5E1 !important;
}
.cred-item {
  background: #071922 !important;
  border: 1px solid rgba(224, 188, 94, 0.3) !important;
}
.cred-item strong {
  color: #FFFFFF !important;
}
.cred-item p {
  color: #94A3B8 !important;
}

/* FAQ & Reviews Section */
.faq-section, .reviews-section {
  background: #050E14 !important;
  color: #FFFFFF !important;
}
.faq-item, .review-card {
  background: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.3) !important;
}
.faq-question, .reviewer-name {
  color: #FFFFFF !important;
}
.faq-answer, .review-quote {
  color: #CBD5E1 !important;
}

/* Footer */
.luxury-footer {
  background: #02070A !important;
  border-top: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  color: #CBD5E1 !important;
}
.footer-title {
  color: #FFFFFF !important;
}
.footer-brand-origin {
  color: #E0BC5E !important;
}
.footer-nav-link {
  color: #94A3B8 !important;
}
.footer-nav-link:hover {
  color: #E0BC5E !important;
}
.footer-copy {
  color: #64748B !important;
}



/* ==========================================================================
   DEFINITIVE ULTRA-PREMIUM CONTACT & ALL CARDS FIX
   Eliminates all remaining white boxes, fixes unreadable text, and creates
   a cohesive Midnight Petrol-Sapphire & Champagne Gold luxury experience.
   ========================================================================== */

/* Section Headers Across Entire Site */
.section-tag-gold {
  color: #E0BC5E !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-shadow: 0 0 14px rgba(224, 188, 94, 0.45) !important;
  display: block !important;
  margin-bottom: 8px !important;
}

.section-title-serif {
  color: #FFFFFF !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: clamp(2rem, 3.8vw, 2.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.5px !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8) !important;
  margin-bottom: 12px !important;
}

.section-desc {
  color: #CBD5E1 !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  max-width: 700px !important;
  margin: 0 auto 36px auto !important;
}

/* Contact Section & Grid */
#contact, .contact-section {
  background: #040D13 !important;
  background-color: #040D13 !important;
  color: #FFFFFF !important;
  padding: 80px 16px 100px !important;
  border-top: 1px solid rgba(224, 188, 94, 0.25) !important;
}

.contact-deck-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.25fr !important;
  gap: 32px !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .contact-deck-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Contact Cards (Left: Info, Right: Form) */
.contact-info-card,
.contact-form-card {
  background: linear-gradient(165deg, #071922 0%, #0D2F38 45%, #06151C 100%) !important;
  background-color: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.40) !important;
  border-radius: 24px !important;
  padding: 36px 32px !important;
  box-shadow: 
    0 16px 45px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(224, 188, 94, 0.35),
    0 0 25px rgba(13, 47, 56, 0.4) !important;
}

.contact-card-title {
  color: #FFFFFF !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 24px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(224, 188, 94, 0.25) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}

/* Contact Item Rows (Left Card) */
.contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  margin-bottom: 22px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.contact-item:last-child {
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.contact-icon {
  background: rgba(13, 47, 56, 0.85) !important;
  border: 1.5px solid rgba(224, 188, 94, 0.45) !important;
  border-radius: 50% !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25) !important;
}

.contact-item strong {
  display: block !important;
  color: #E0BC5E !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  margin-bottom: 4px !important;
}

.contact-item p {
  color: #FFFFFF !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

.contact-link {
  color: #FFFFFF !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.contact-link:hover {
  color: #38BDF8 !important;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5) !important;
}

/* Contact Enquiry Form (Right Card) */
.form-desc {
  color: #CBD5E1 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin-bottom: 24px !important;
}

.editorial-form label {
  color: #E0BC5E !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

.editorial-form input,
.editorial-form textarea {
  width: 100% !important;
  background: #040D13 !important;
  background-color: #040D13 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  border-radius: 12px !important;
  padding: 13px 16px !important;
  font-size: 14.5px !important;
  color: #FFFFFF !important;
  outline: none !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.2s ease !important;
}

.editorial-form input::placeholder,
.editorial-form textarea::placeholder {
  color: #7E97A6 !important;
  opacity: 1 !important;
}

.editorial-form input:focus,
.editorial-form textarea:focus {
  border-color: #E0BC5E !important;
  background: #071922 !important;
  box-shadow: 0 0 15px rgba(224, 188, 94, 0.35), inset 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

#submit-enquiry-btn {
  background: linear-gradient(135deg, #E0BC5E 0%, #C5A049 100%) !important;
  color: #040D13 !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  letter-spacing: 1.2px !important;
  padding: 16px 24px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 6px 25px rgba(224, 188, 94, 0.4) !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  margin-top: 8px !important;
}

#submit-enquiry-btn:hover {
  box-shadow: 0 8px 30px rgba(224, 188, 94, 0.6) !important;
  transform: translateY(-2px) !important;
}

/* Modals & Quick Order Popups (Dark Luxury) */
.modal-card,
.image-modal-box,
.cat-quick-modal-card,
.mobile-sheet-card {
  background: linear-gradient(165deg, #071922 0%, #0D2F38 60%, #06151C 100%) !important;
  border: 1.5px solid rgba(224, 188, 94, 0.45) !important;
  border-radius: 24px !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(56, 189, 248, 0.25) !important;
  color: #FFFFFF !important;
}

.cqm-product-row {
  background: #040D13 !important;
  border: 1px solid rgba(224, 188, 94, 0.3) !important;
  color: #FFFFFF !important;
}

.cqm-product-name {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.cqm-product-price {
  color: #F6CF65 !important;
  font-weight: 800 !important;
}

.modal-header,
.cat-quick-modal-header,
.mobile-sheet-header {
  background: #09232E !important;
  border-bottom: 1px solid rgba(224, 188, 94, 0.3) !important;
}

.modal-title,
.cat-quick-title,
.mobile-sheet-title {
  color: #FFFFFF !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
}

.modal-close-btn {
  background: #0D2F38 !important;
  border: 1px solid rgba(224, 188, 94, 0.4) !important;
  color: #E0BC5E !important;
}

/* Order Estimate Drawer (Dark Luxury) */
.order-estimate-drawer {
  background: #06151E !important;
  border-left: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  color: #FFFFFF !important;
}

.drawer-header {
  background: #081D27 !important;
  border-bottom: 1px solid rgba(224, 188, 94, 0.3) !important;
}

.drawer-title {
  color: #E0BC5E !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
}

.cart-item-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.cart-item-name {
  color: #FFFFFF !important;
  font-weight: 700 !important;
}

.cart-item-price {
  color: #F6CF65 !important;
  font-weight: 800 !important;
}

.cart-total-label {
  color: #CBD5E1 !important;
}

.cart-total-val {
  color: #F6CF65 !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
}

.cart-invoice-btn {
  background: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  color: #E0BC5E !important;
  font-weight: 700 !important;
}

.cart-invoice-btn:hover {
  background: rgba(224, 188, 94, 0.15) !important;
}



/* ==========================================================================
   STICKY SEARCH BAR & CATEGORY FOCUS HEADER DARK THEME FIX
   Replaces white search containers and white ribbon header with 
   Midnight Petrol-Sapphire & Champagne Gold styling.
   ========================================================================== */

/* Sticky Search Bar Container */
.catalog-sticky-search {
  position: sticky !important;
  top: 70px !important;
  z-index: 45 !important;
  background: rgba(4, 13, 19, 0.94) !important;
  background-color: rgba(4, 13, 19, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(224, 188, 94, 0.25) !important;
  margin-bottom: 28px !important;
}

.search-and-controls-row {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100% !important;
}

.search-input-wrap {
  position: relative !important;
  flex: 1 !important;
  min-width: 220px !important;
}

.search-input-wrap input,
#catalog-search {
  width: 100% !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: #071922 !important;
  background-color: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.4) !important;
  padding: 0 18px 0 48px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  outline: none !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(0, 0, 0, 0.5) !important;
  transition: all 0.2s ease !important;
}

.search-input-wrap input::placeholder,
#catalog-search::placeholder {
  color: #8DA4B1 !important;
  opacity: 1 !important;
}

.search-input-wrap input:focus,
#catalog-search:focus {
  border-color: #E0BC5E !important;
  background: #09232E !important;
  box-shadow: 0 0 16px rgba(224, 188, 94, 0.4), inset 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.search-svg-icon {
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #E0BC5E !important;
  stroke: #E0BC5E !important;
  pointer-events: none !important;
}

.catalog-action-buttons {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important;
}

.btn-quick-popup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  height: 52px !important;
  padding: 0 22px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%) !important;
  border: 1.5px solid rgba(224, 188, 94, 0.5) !important;
  color: #FFFFFF !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 18px rgba(29, 78, 216, 0.45) !important;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-quick-popup:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 25px rgba(224, 188, 94, 0.55), 0 0 18px rgba(37, 99, 235, 0.5) !important;
  border-color: #E0BC5E !important;
  color: #FFFFFF !important;
}

/* Category Focus Header Bar (Ribbon Bar) */
.cat-focus-header {
  background: linear-gradient(165deg, #071922 0%, #0D2F38 45%, #06151C 100%) !important;
  background-color: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.40) !important;
  border-radius: 20px !important;
  padding: 16px 22px !important;
  margin-bottom: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(224, 188, 94, 0.3) !important;
}

.cat-focus-info {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.cat-focus-title {
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6) !important;
}

.cat-focus-badge {
  background: rgba(224, 188, 94, 0.15) !important;
  color: #E0BC5E !important;
  font-family: var(--font-display), 'Cinzel', serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  padding: 4px 12px !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(224, 188, 94, 0.45) !important;
  text-transform: uppercase !important;
}

.cat-focus-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.cat-nav-arrow-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  background: #0D2F38 !important;
  background-color: #0D2F38 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.35) !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.cat-nav-arrow-btn:hover {
  background: #134556 !important;
  border-color: #E0BC5E !important;
  color: #E0BC5E !important;
  box-shadow: 0 0 12px rgba(224, 188, 94, 0.3) !important;
}

.cat-toggle-all-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  background: #0D2F38 !important;
  background-color: #0D2F38 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.4) !important;
  color: #E0BC5E !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.18s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.cat-toggle-all-btn:hover {
  background: #E0BC5E !important;
  color: #040D13 !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 0 15px rgba(224, 188, 94, 0.5) !important;
}

/* Mobile Category Picker & Horizontal Pills */
.mobile-cat-picker-btn {
  background: #071922 !important;
  border: 1.5px solid rgba(224, 188, 94, 0.4) !important;
  color: #FFFFFF !important;
}

.mobile-pill-link {
  background: #071922 !important;
  border: 1px solid rgba(224, 188, 94, 0.35) !important;
  color: #CBD5E1 !important;
}

.mobile-pill-link.active {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%) !important;
  border-color: #E0BC5E !important;
  color: #FFFFFF !important;
  box-shadow: 0 2px 10px rgba(29, 78, 216, 0.4) !important;
}
