/* ==========================================================================
   VM IMITATION — MASTER LUXURY DESIGN SYSTEM & STYLESHEET
   Offline Typography: Cormorant Garamond (Display) + Inter (UI / Body / Menu)
   PageSpeed 100% Compliant | Zero Framework Bloat | Mobile-First B2B
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. OFFLINE LOCAL FONTS (@font-face with font-display: swap)
   -------------------------------------------------------------------------- */

/* Cinzel (Luxury Brand Display Typography) */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cinzel-bold.woff2') format('woff2');
}

/* Cormorant Garamond (Serif - Luxury Display / Headings Only) */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-600-italic.woff2') format('woff2');
}

/* Inter (Offline Sans-Serif - Crystal-Clear Body, UI, Menu, Buttons, Badges) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-800.woff2') format('woff2');
}

/* Manrope (Sans-Serif Fallback) */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/manrope-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/manrope-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/manrope-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/manrope-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/manrope-800.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   2. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Luxury Palette */
  --color-primary: #8B0000;          /* Deep Royal Maroon / Ruby */
  --color-primary-dark: #660000;     /* Deep Wine */
  --color-primary-light: #9E1B32;    /* Vibrant Ruby */
  
  --color-accent: #C5A880;           /* Champagne Gold Accent */
  --color-accent-light: #DFCAAB;     /* Soft Gold */
  --color-accent-dark: #9A7B4F;      /* Antique Gold */

  --color-dark: #111827;             /* Obsidian / Deep Slate */
  --color-dark-muted: #334155;       /* Soft Slate for Crystal-Clear Legibility */
  --color-light: #FFFFFF;            /* Pure White */
  --color-surface: #FDFBF7;          /* Soft Pearl Canvas */
  --color-surface-alt: #F4EFEA;      /* Subtle Warm Cream */
  --color-border: #E5E7EB;           /* Crisp Light Border */
  --color-border-gold: #E8DCCB;      /* Luxury Gold Border */
  --color-success: #15803D;          /* WhatsApp / Verified Green */

  /* Typography Stacks */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Sizing & Spacing */
  --page-width: 1260px;
  --header-height: 80px;
  --topbar-height: 38px;
  
  /* Radii & Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(17, 24, 39, 0.04);
  --shadow-md: 0 6px 16px rgba(17, 24, 39, 0.06);
  --shadow-lg: 0 12px 32px rgba(17, 24, 39, 0.08);
  --shadow-luxury: 0 16px 40px rgba(139, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-gold: 0 10px 30px rgba(197, 168, 128, 0.25);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;                  /* 16px minimum */
  line-height: 1.68;                /* 1.65 - 1.70 strictly */
  color: var(--color-dark);
  background-color: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
h1, h2, .font-serif, .hero-title, .luxury-heading {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.35;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;                  /* 16px */
  line-height: 1.68;
  color: var(--color-dark-muted);
  margin-bottom: 1.25rem;
}

p.lead {
  font-size: 1.125rem;              /* 18px */
  line-height: 1.7;
  color: var(--color-dark);
}

.text-gold { color: var(--color-accent); }
.text-ruby { color: var(--color-primary); }
.text-dark { color: var(--color-dark); }
.text-muted { color: var(--color-dark-muted); }
.text-white { color: var(--color-light); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8125rem;             /* 13px */
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.eyebrow-gold {
  color: var(--color-accent-dark);
}

/* --------------------------------------------------------------------------
   5. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: min(calc(100% - 32px), var(--page-width));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
}

.section-alt {
  background-color: var(--color-surface-alt);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-light);
}
.section-dark p {
  color: #9CA3AF;
}
.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--color-light);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

/* Dual-Tier Creative Section Titles (Consistent with Hero Introduction Division) */
.section-header h2,
.creative-section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1.85vw, 1.45rem);
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: 0.85rem;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.section-header h2 .title-primary,
.creative-section-title .title-primary {
  color: #0E2254;
  font-weight: 700;
  letter-spacing: 0.012em;
  display: block;
}

.section-header h2 .title-accent,
.creative-section-title .title-accent {
  color: #C81D25;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.012em;
}

.section-header h2 .title-accent::before,
.creative-section-title.is-centered .title-accent::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: linear-gradient(270deg, #C81D25 0%, #C5A880 100%);
  border-radius: 2px;
}

.section-header h2 .title-accent::after,
.creative-section-title .title-accent::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #C81D25 0%, #C5A880 100%);
  border-radius: 2px;
}

.section-header p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.90;
  letter-spacing: 0.019em;
  color: #475569;
  max-width: 820px;
  margin-inline: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
}

/* --------------------------------------------------------------------------
   6. BUTTONS & B2B CTAS (Manrope 600 / 700)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;             /* 15px */
  letter-spacing: 0.02em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-light);
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(139, 0, 0, 0.3);
}

.btn-whatsapp {
  background-color: var(--color-success);
  color: var(--color-light);
  box-shadow: 0 4px 12px rgba(21, 128, 61, 0.25);
}
.btn-whatsapp:hover {
  background-color: #166534;
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.35);
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 10px 18px 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .whatsapp-float {
    display: none;
  }
}

.btn-secondary {
  background-color: var(--color-light);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover {
  border-color: var(--color-accent-dark);
  color: var(--color-primary);
  background-color: #FFF;
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--color-accent);
  color: var(--color-dark);
}
.btn-gold:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;              /* 14px */
  font-weight: 600;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.0625rem;             /* 17px */
}

/* --------------------------------------------------------------------------
   7. TOPBAR & LUXURY HEADER (Centered VM IMITATION, No Letter-Spacing)
   -------------------------------------------------------------------------- */
.topbar {
  background: #0E2254;              /* Exact Royal Sapphire Navy from VM Logo */
  color: #E2E8F0;
  font-size: 0.8125rem;             /* 13px */
  border-bottom: 1px solid rgba(197, 168, 128, 0.35);
}
.topbar .container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--topbar-height);
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
}
.topbar-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-brand {
  font-family: 'Cinzel', 'Manrope', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0 !important;      /* Letter-spacing removed as requested */
  color: #FFFFFF;
  white-space: nowrap;
  text-align: center;
  text-shadow: none !important;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  color: #E2E8F0;
}
.topbar a.topbar-item {
  color: #E2E8F0;
  transition: color var(--transition-fast);
}
.topbar a.topbar-item:hover {
  color: var(--color-accent-light);
}
.topbar a.topbar-item svg {
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FDFBF7;
  border-bottom: 1px solid var(--color-border-gold);
  transition: all var(--transition-fast);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;                 /* Generous height for larger logo */
  gap: 20px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  width: 72px;                      /* Enlarged prominent logo size */
  height: 60px;
  object-fit: contain;
  transition: transform var(--transition-fast);
}
.brand-logo:hover {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   8. LUXURY MEGA MENUS & SUBPANELS (Crystal-Clear Solid Typography)
   -------------------------------------------------------------------------- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  font-family: var(--font-sans);
  font-weight: 600;                 /* Strictly 600 for menu */
  font-size: 0.9375rem;             /* 15px */
  color: #1E293B;                   /* High contrast solid dark */
  border-radius: var(--radius-xs);
  white-space: nowrap;
  text-shadow: none !important;
  transition: color var(--transition-fast), background-color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #0E2254;
  background-color: rgba(14, 34, 84, 0.06);
}

/* Dropdown Panels (2-Column Subpanels with Icons & Captions) */
.nav-dropdown {
  position: relative;
}

.dropdown-panel-2col {
  position: absolute;
  top: 100%;
  left: 0;
  width: 540px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 16px 40px rgba(14, 34, 84, 0.10), 0 4px 12px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 150;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 12px;
}

.nav-dropdown:hover .dropdown-panel-2col,
.nav-dropdown:focus-within .dropdown-panel-2col {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Full Width Mega Dropdown Panel */
.mega-dropdown {
  position: static;
}

.mega-menu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 18px 45px rgba(14, 34, 84, 0.10), 0 4px 12px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 150;
}

.mega-dropdown:hover .mega-menu-panel,
.mega-dropdown:focus-within .mega-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

.mega-col-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;              /* 12px - compact, refined luxury title */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;          /* Elegant uppercase letter-spacing */
  line-height: 1.25;
  color: #C81D25;                  /* VM Logo Ruby Red - stands out cleanly */
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(200, 29, 37, 0.14);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  text-shadow: none !important;
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 4px;                        /* Clean, comfortable breathing room */
}

/* Mega & Submenu Link Item: Clean Transparent Icon, Highly Readable Font */
.mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;                /* Balanced compact padding */
  border-radius: 6px;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
  gap: 8px;
}
.mega-item:hover {
  background-color: #F8FAFC;
  transform: translateX(3px);
}

.mega-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mega-item-icon {
  width: 20px;
  height: 20px;
  background: transparent !important; /* No background box */
  color: #0E2254;                  /* Royal Sapphire Blue from Topbar */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
}

.mega-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-item-text {
  font-family: var(--font-sans);
  font-size: 0.84375rem;           /* 13.5px - perfect balance, easily readable */
  font-weight: 600;                /* Crisp clean weight */
  color: #0F172A;                  /* Deep readable slate */
  line-height: 1.25;
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-shadow: none !important;
  transition: color var(--transition-fast);
}
.mega-item:hover .mega-item-text {
  color: #0E2254;                  /* Royal Sapphire Blue on hover */
}

.mega-item-caption {
  font-family: var(--font-sans);
  font-size: 0.75rem;              /* 12px - highly legible secondary text */
  color: #64748B;                  /* Clear high-contrast slate */
  font-weight: 450;                /* Readable weight */
  line-height: 1.3;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: none !important;
}

.tag-trending {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 1.2;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: none !important;
}
.tag-hot { background: #FEE2E2; color: #DC2626; }
.tag-new { background: #FEF3C7; color: #B45309; }
.tag-royal { background: #E0F2FE; color: #0369A1; }
.tag-gold { background: rgba(197, 168, 128, 0.22); color: #8A6828; }

/* Mega Promo Card */
.mega-promo {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  border-radius: var(--radius-sm);
  padding: 18px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.mega-promo img {
  border-radius: var(--radius-xs);
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 10px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-dark-muted);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  color: var(--color-primary);
  background-color: var(--color-surface);
  padding-left: 22px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-xs);
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   9. 100% FULL-WIDTH HERO VIDEO BANNER (@manish.mp4, ZERO SPACING, TOP-RIGHT SOUND ONLY)
   -------------------------------------------------------------------------- */
.hero-video-banner-full {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000000;
  overflow: hidden;
  border-bottom: 2px solid var(--color-accent);
}

.video-full-wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.video-full-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: none;
}

/* Single Top-Right Floating Mute/Unmute Circle Icon Button */
.video-sound-toggle-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(14, 34, 84, 0.82);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 20;
}
.video-sound-toggle-btn:hover {
  background: #C81D25;
  border-color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(200, 29, 37, 0.35);
}
.video-sound-toggle-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .video-sound-toggle-btn {
    top: 10px;
    right: 12px;
    width: 30px;
    height: 30px;
  }
  .video-sound-toggle-btn svg {
    width: 14px;
    height: 14px;
  }
}

/* --------------------------------------------------------------------------
   10. B2B MANUFACTURER INTRODUCTION DIVISION (Below Video Banner)
   -------------------------------------------------------------------------- */
.hero-intro-section {
  position: relative;
  padding-top: clamp(2.5rem, 4.5vw, 3.75rem);
  padding-bottom: clamp(2.5rem, 4.5vw, 3.75rem);
  background: linear-gradient(135deg, #FCFAF7 0%, #F6EFE8 50%, #FAF5EE 100%);
  border-bottom: 1px solid var(--color-border-gold);
}

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

@media (max-width: 991px) {
  .hero-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.hero-intro-content {
  text-align: left;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.badge-ruby {
  background-color: rgba(200, 29, 37, 0.08);
  color: #C81D25;
  border: 1px solid rgba(200, 29, 37, 0.25);
}

.badge-gold {
  background-color: rgba(197, 168, 128, 0.18);
  color: var(--color-accent-dark);
  border: 1px solid rgba(197, 168, 128, 0.4);
}

.hero-intro-title {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 1.85vw, 1.45rem);
  font-weight: 700;
  line-height: 1.38;
  margin-bottom: 1.1rem;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-intro-title .title-primary {
  color: #0E2254;
  font-weight: 700;
  letter-spacing: 0.012em;
  display: block;
}

.hero-intro-title .title-accent {
  color: #C81D25;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.012em;
}

.hero-intro-title .title-accent::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #C81D25 0%, #C5A880 100%);
  border-radius: 2px;
}

.hero-intro-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.90;
  letter-spacing: 0.019em;
  color: #334155;
  margin-bottom: 1.75rem;
  max-width: 680px;
}

/* 4 Compact Trust Highlights in 2x2 Grid */
.hero-intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 168, 128, 0.3);
}

@media (max-width: 575px) {
  .hero-intro-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.intro-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(197, 168, 128, 0.28);
  box-shadow: 0 2px 6px rgba(14, 34, 84, 0.03);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.intro-feat-item:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(14, 34, 84, 0.07);
}

.intro-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(200, 29, 37, 0.08);
  color: #C81D25;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.intro-feat-icon svg {
  width: 17px;
  height: 17px;
}

.intro-feat-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.intro-feat-meta strong {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: #0E2254;
  line-height: 1.3;
}

.intro-feat-meta span {
  font-size: 0.775rem;
  color: #64748B;
  line-height: 1.35;
}

/* Right Column Luxury Media Frame */
.hero-intro-media {
  position: relative;
  width: 100%;
}

.intro-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  box-shadow: 0 16px 36px rgba(14, 34, 84, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #0E2254;
}

.intro-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-image-frame:hover img {
  transform: scale(1.03);
}

.frame-tag-top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  background: rgba(14, 34, 84, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid rgba(197, 168, 128, 0.45);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.35);
  display: inline-block;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.frame-glass-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(14, 34, 84, 0.15);
  z-index: 2;
}

.glass-card-title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: #0E2254;
  line-height: 1.3;
}

.glass-card-sub {
  font-size: 0.75rem;
  color: #64748B;
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   10. IMITATION JEWELLERY MANUFACTURING PROCESS (Light Luxury Edition)
   -------------------------------------------------------------------------- */
.section-process-light {
  background: linear-gradient(180deg, #FBF9F5 0%, #F5EFE6 50%, #FAF6F0 100%);
  border-top: 1px solid var(--color-border-gold);
  border-bottom: 1px solid var(--color-border-gold);
  position: relative;
}

/* --------------------------------------------------------------------------
   10B. PROCESS VIDEO THEATRE & INTERACTIVE TECHNICAL MILESTONE HUB
   -------------------------------------------------------------------------- */
.process-video-showcase-hub {
  display: grid;
  grid-template-columns: 1.22fr 0.98fr;
  gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: stretch;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

@media (max-width: 991px) {
  .process-video-showcase-hub {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.process-theatre-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  box-shadow: 0 16px 40px rgba(14, 34, 84, 0.12), 0 2px 10px rgba(197, 168, 128, 0.2);
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.process-theatre-frame video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.process-theatre-frame .frame-tag-top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  background: rgba(14, 34, 84, 0.90);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(197, 168, 128, 0.45);
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.process-theatre-frame .video-sound-toggle-btn {
  top: 14px;
  right: 14px;
}

.process-theatre-frame .frame-glass-card {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(14, 34, 84, 0.15);
  z-index: 2;
}

/* Vertical Technical Milestone Stepper Panel */
.process-stepper-panel {
  background: #FFFFFF;
  border-radius: 16px;
  border: 1.5px solid rgba(197, 168, 128, 0.35);
  padding: clamp(22px, 2.5vw, 28px) clamp(20px, 2.2vw, 26px);
  box-shadow: 0 10px 30px rgba(14, 34, 84, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stepper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.3);
}

.stepper-header-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0E2254;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stepper-header-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: #C81D25;
  background: rgba(200, 29, 37, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(200, 29, 37, 0.2);
}

.stepper-timeline {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 13px);
  flex-grow: 1;
  justify-content: space-between;
}

.stepper-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #FCFAF7;
  border: 1px solid rgba(197, 168, 128, 0.24);
  transition: all var(--transition-fast);
}

.stepper-item:hover {
  background: #FFFFFF;
  border-color: #C5A880;
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(14, 34, 84, 0.08);
}

.stepper-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0E2254;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(14, 34, 84, 0.2);
}

.stepper-item:nth-child(even) .stepper-num {
  background: #C81D25;
  box-shadow: 0 2px 6px rgba(200, 29, 37, 0.2);
}

.stepper-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stepper-name {
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 700;
  color: #0E2254;
  line-height: 1.38;
  letter-spacing: -0.01em;
}

.stepper-sub {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.55;
  letter-spacing: 0.012em;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 20px);
  margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

@media (max-width: 1024px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.process-step-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 12px;
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(14, 34, 84, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.process-step-card:hover {
  transform: translateY(-4px);
  border-color: #C5A880;
  box-shadow: 0 12px 28px rgba(14, 34, 84, 0.09), 0 2px 8px rgba(197, 168, 128, 0.2);
}

.step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.step-card-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 800;
  color: #FFFFFF;
  background: #0E2254;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 5px rgba(14, 34, 84, 0.2);
}

.step-phase-tag {
  font-family: var(--font-sans);
  font-size: 0.725rem;
  font-weight: 700;
  color: #C81D25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FBF8F3 0%, #F5EDE0 100%);
  border: 1px solid rgba(197, 168, 128, 0.45);
  box-shadow: 0 2px 6px rgba(197, 168, 128, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.process-icon-box svg {
  width: 22px;
  height: 22px;
}

.process-step-card:hover .process-icon-box {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(200, 29, 37, 0.2);
}

.process-step-title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0E2254;
  line-height: 1.32;
  margin-bottom: 6px;
}

.process-step-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.62;
  letter-spacing: 0.012em;
  margin-bottom: 12px;
  flex-grow: 1;
}

.process-step-footer {
  padding-top: 10px;
  border-top: 1px solid rgba(197, 168, 128, 0.22);
}

.step-feature-pill {
  font-family: var(--font-sans);
  font-size: 0.725rem;
  font-weight: 700;
  color: #8A6B3D;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   10C. EXECUTIVE LIGHT LUXURY TRUST PILLARS RIBBON
   -------------------------------------------------------------------------- */
.process-stats-ribbon {
  background: #FFFFFF;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(14, 34, 84, 0.06), 0 2px 6px rgba(0, 0, 0, 0.02);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

@media (max-width: 991px) {
  .process-stats-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .process-stats-ribbon {
    grid-template-columns: 1fr;
  }
}

.stat-ribbon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-right: 1px solid rgba(197, 168, 128, 0.35);
  transition: background-color var(--transition-fast);
}

.stat-ribbon-item:last-child {
  border-right: none;
}

@media (max-width: 991px) {
  .stat-ribbon-item:nth-child(2) {
    border-right: none;
  }
  .stat-ribbon-item:nth-child(1),
  .stat-ribbon-item:nth-child(2) {
    border-bottom: 1px solid rgba(197, 168, 128, 0.35);
  }
}

@media (max-width: 575px) {
  .stat-ribbon-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.35);
  }
  .stat-ribbon-item:last-child {
    border-bottom: none;
  }
}

.stat-ribbon-item:hover {
  background-color: #FCFAF7;
}

.stat-ribbon-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200, 29, 37, 0.08);
  color: #C81D25;
  border: 1px solid rgba(200, 29, 37, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.stat-ribbon-item:hover .stat-ribbon-icon {
  transform: scale(1.08);
}

.stat-ribbon-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-ribbon-content .stat-num {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.2vw, 1.95rem);
  font-weight: 800;
  color: #0E2254;
  line-height: 1;
  margin-bottom: 2px;
}

.stat-ribbon-content .stat-label {
  font-family: var(--font-sans);
  font-size: 0.775rem;
  font-weight: 700;
  color: #C81D25;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.stat-ribbon-content .stat-sub {
  font-size: 0.725rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.25;
}

/* Product Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  color: var(--color-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.tab-btn:hover, .tab-btn.active {
  background: var(--color-primary);
  color: var(--color-light);
  border-color: var(--color-primary);
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.25);
}

/* --------------------------------------------------------------------------
   11. PRODUCT CARDS & SHOWCASE
   -------------------------------------------------------------------------- */
.product-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--color-accent);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #F9FAFB;
  overflow: hidden;
}

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

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

.product-code-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(17, 24, 39, 0.85);
  color: var(--color-light);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  backdrop-filter: blur(4px);
}

.product-pack-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(197, 168, 128, 0.95);
  color: var(--color-dark);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.6875rem;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-dark-muted);
  margin-bottom: 14px;
  flex-grow: 1;
}

.product-card .btn-whatsapp {
  width: 100%;
}

/* --------------------------------------------------------------------------
   12. CATEGORY CARDS & B2B HIGHLIGHTS
   -------------------------------------------------------------------------- */
.category-card {
  position: relative;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(139, 0, 0, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-box {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--color-light);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.feature-box:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   13. FAQ ACCORDION (Full Width Container Luxury Standard)
   -------------------------------------------------------------------------- */
.faq-list {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(14, 34, 84, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: #C5A880;
  box-shadow: 0 4px 14px rgba(14, 34, 84, 0.06);
}

.faq-item.active {
  border-color: #0E2254;
  border-left: 4px solid #C81D25;
  background: #FCFAF7;
  box-shadow: 0 8px 24px rgba(14, 34, 84, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  color: #0E2254;
  background: transparent;
  cursor: pointer;
  border: none;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: #C81D25;
}

.faq-item.active .faq-question {
  color: #0E2254;
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #C5A880;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #C81D25;
}

.faq-answer {
  padding: 0 24px 22px 24px;
  display: none;
  border-top: 1px dashed rgba(197, 168, 128, 0.25);
}

.faq-item.active .faq-answer {
  display: block;
  padding-top: 14px;
}

.faq-answer p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
}

/* --------------------------------------------------------------------------
   14. FOOTER & INTERNAL SEO LINKING (Ultra-Premium Luxury Foundry Theme)
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, #091224 0%, #060D1A 100%);
  color: #D1D5DB;
  padding-top: clamp(3.5rem, 5vw, 5rem);
  padding-bottom: 2.25rem;
  border-top: 2px solid #C5A880;
  box-shadow: inset 0 2px 20px rgba(197, 168, 128, 0.06);
}

.footer-grid-5 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}
@media (min-width: 640px) {
  .footer-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 992px) {
  .footer-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
}
@media (min-width: 1240px) {
  .footer-grid-5 { grid-template-columns: 1.35fr 1.05fr 1.05fr 1.05fr 1.35fr; gap: 2.5rem; }
}

/* Luxury Column Headings - Normal Clean Size */
.footer-heading {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #DFCAAB;
  margin-bottom: 1.15rem;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heading-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid rgba(197, 168, 128, 0.35);
  color: #DFCAAB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-heading-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Luxury Links & Normal Readable Font Size */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: #94A3B8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition-fast);
}

.footer-links a .link-bullet {
  font-size: 7px;
  color: rgba(197, 168, 128, 0.5);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-links a:hover .link-bullet {
  color: #DFCAAB;
}

/* Brand & Tax Box in Column 1 */
.footer-col-brand .footer-brand-header {
  margin-bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-logo-link {
  display: inline-flex;
  justify-content: center;
}

.footer-brand-img {
  width: 84px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.footer-tagline-text {
  font-family: 'Cinzel', 'Manrope', Georgia, serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #DFCAAB;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.footer-brand-desc {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.7;
  letter-spacing: 0.015em;
  color: #94A3B8;
  margin-bottom: 1.25rem;
  text-align: justify;
}

.footer-ownership-box {
  background: linear-gradient(135deg, rgba(14, 34, 84, 0.5) 0%, rgba(10, 22, 55, 0.7) 100%);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.ownership-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #DFCAAB;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.footer-tax-credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.775rem;
  padding-top: 8px;
  border-top: 1px solid rgba(197, 168, 128, 0.18);
}

.footer-tax-credentials .tax-row {
  display: grid;
  grid-template-columns: 88px 10px 1fr;
  align-items: center;
  gap: 4px;
  font-weight: 400;
}

.footer-tax-credentials .tax-lbl {
  color: #94A3B8;
  font-weight: 400;
}

.footer-tax-credentials .tax-sep {
  color: #64748B;
  text-align: center;
}

.footer-tax-credentials .tax-val {
  color: #CBD5E1;
  font-weight: 500;
}

.footer-tax-credentials .gstin-highlight {
  color: #F87171;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Contact Cards in Column 5 */
.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-card-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

.footer-card-item.is-interactive {
  cursor: pointer;
}

.footer-card-item.is-interactive:hover {
  background: rgba(14, 34, 84, 0.6);
  border-color: #C5A880;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.card-icon-bubble {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(197, 168, 128, 0.15);
  color: #DFCAAB;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-bubble.wa-bubble {
  background: rgba(37, 211, 102, 0.18);
  color: #25D366;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.card-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
}

.card-text {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #CBD5E1;
  letter-spacing: 0.01em;
}
.card-text.not-italic {
  font-style: normal;
}

.card-text.highlight-gold {
  color: #DFCAAB;
  font-weight: 600;
}

.card-arrow {
  color: #94A3B8;
  align-self: center;
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.footer-card-item.is-interactive:hover .card-arrow {
  transform: translate(2px, -2px);
  color: #DFCAAB;
}

/* Footer Bottom Bar (Zero Duplication) */
.footer-bottom {
  padding-top: 1.75rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(197, 168, 128, 0.22);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .footer-bottom-main {
    flex-direction: row;
    align-items: center;
  }
}

.footer-copyright {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #94A3B8;
  margin: 0;
  line-height: 1.6;
}

.footer-bottom-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-bottom-nav a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #CBD5E1;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
}
.footer-bottom-nav a:hover {
  color: #DFCAAB;
}

.nav-sep {
  color: #64748B;
  font-size: 0.75rem;
}

.footer-b2b-notice {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #94A3B8;
  letter-spacing: 0.02em;
  text-align: center;
}

/* --------------------------------------------------------------------------
   14B. HOMEPAGE ELITE COMPONENTS (Process, Stats, Why Cards, B2B Quote)
   -------------------------------------------------------------------------- */
.stats-banner {
  background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 168, 128, 0.35);
  padding: 32px 24px;
  color: #FFF;
  margin-top: 2rem;
  box-shadow: var(--shadow-luxury);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-inline: 12px;
}
.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-size: 0.8125rem;
  color: #D1D5DB;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* 5-Stage Process Cards */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(5, 1fr); }
}

.process-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  position: relative;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-luxury);
}

.process-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139, 0, 0, 0.08);
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(139, 0, 0, 0.2);
}

.process-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-dark-muted);
}

/* --------------------------------------------------------------------------
   12A. WHOLESALE SOURCING ADVANTAGES (Why Choose VM Imitation)
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.why-card {
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.why-card:hover {
  border-color: #C5A880;
  box-shadow: 0 14px 36px rgba(14, 34, 84, 0.08), 0 2px 8px rgba(197, 168, 128, 0.15);
  transform: translateY(-4px);
}

.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FBF8F3 0%, #F5EDE0 100%);
  border: 1px solid rgba(197, 168, 128, 0.45);
  color: #0E2254;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(197, 168, 128, 0.12);
  transition: all var(--transition-fast);
}
.why-card:hover .why-icon {
  background: #0E2254;
  color: #FFFFFF;
  border-color: #0E2254;
  transform: scale(1.05);
}

.why-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0E2254;
  line-height: 1.35;
  margin-bottom: 8px;
}

.why-card p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.68;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  flex-grow: 1;
}

.why-feature-badge {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  color: #C81D25;
  letter-spacing: 0.025em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid rgba(197, 168, 128, 0.22);
}

/* --------------------------------------------------------------------------
   12B. LEADERSHIP & INDUSTRY TRUST (Executive Luxury Cards)
   -------------------------------------------------------------------------- */
.section-leadership {
  background: linear-gradient(180deg, #FFFFFF 0%, #FDFBF7 100%);
  position: relative;
}

.leadership-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 2rem;
}
@media (min-width: 900px) {
  .leadership-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

.leader-executive-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(197, 168, 128, 0.40);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(14, 34, 84, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}
.leader-executive-card:hover {
  transform: translateY(-5px);
  border-color: #C5A880;
  box-shadow: 0 18px 45px rgba(14, 34, 84, 0.10), 0 4px 12px rgba(197, 168, 128, 0.2);
}

.leader-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 580px) and (max-width: 899px) {
  .leader-card-inner {
    flex-direction: row;
  }
}

.leader-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: 280px;
  background: #0E2254;
  overflow: hidden;
}
@media (min-width: 580px) and (max-width: 899px) {
  .leader-media-wrapper {
    width: 220px;
    flex-shrink: 0;
    aspect-ratio: auto;
    max-height: none;
  }
}
@media (min-width: 900px) {
  .leader-media-wrapper {
    aspect-ratio: 16 / 10;
    max-height: 280px;
  }
}

.leader-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.leader-executive-card:hover .leader-portrait {
  transform: scale(1.04);
}

.leader-media-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.leader-alias-pill {
  background: rgba(14, 34, 84, 0.88);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.45);
  border-radius: 50px;
  padding: 4px 12px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.leader-content-body {
  padding: clamp(20px, 2.5vw, 26px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.leader-role-header {
  margin-bottom: 12px;
}

.leader-tag-gold {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.725rem;
  font-weight: 700;
  color: #8A6B3D;
  background: rgba(197, 168, 128, 0.18);
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 4px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.leader-tag-royal {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.725rem;
  font-weight: 700;
  color: #0E2254;
  background: rgba(14, 34, 84, 0.08);
  border: 1px solid rgba(14, 34, 84, 0.2);
  border-radius: 4px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.leader-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: #0E2254;
  line-height: 1.28;
  margin-bottom: 4px;
}

.leader-designation {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #C81D25;
  display: block;
}

.leader-bio {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.68;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  flex-grow: 1;
}

.leader-focus-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(197, 168, 128, 0.24);
}

.focus-pill {
  font-family: var(--font-sans);
  font-size: 0.725rem;
  font-weight: 600;
  color: #0E2254;
  background: #FCFAF7;
  border: 1px solid rgba(197, 168, 128, 0.28);
  border-radius: 4px;
  padding: 3px 8px;
}

.leader-card-footer {
  margin-top: auto;
}

.btn-leader-profile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.84375rem;
  font-weight: 700;
  color: #0E2254;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.btn-leader-profile:hover {
  color: #C81D25;
  transform: translateX(4px);
}

/* Trust Banner Ribbon */
.leadership-trust-banner {
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 14px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  box-shadow: 0 6px 20px rgba(14, 34, 84, 0.04);
}
@media (min-width: 900px) {
  .leadership-trust-banner {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.trust-banner-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  padding: 8px 12px;
}
.trust-banner-col strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0E2254;
}
.trust-banner-col span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 500;
}

.leader-brand-ownership-banner {
  margin-top: 1.25rem;
  padding: 12px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(14, 34, 84, 0.03);
}

.leader-brand-ownership-banner p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #0E2254;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.leader-brand-ownership-banner strong {
  color: #0E2254;
  font-weight: 700;
}

.ownership-sparkle {
  color: #C81D25;
  margin-right: 6px;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   12C. COMPREHENSIVE WHOLESALE RANGE (14 Dedicated Categories)
   -------------------------------------------------------------------------- */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .categories-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .categories-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

.category-luxury-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 14px;
  padding: 22px;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.category-luxury-card:hover {
  border-color: #C5A880;
  box-shadow: 0 14px 34px rgba(14, 34, 84, 0.08), 0 2px 8px rgba(197, 168, 128, 0.15);
  transform: translateY(-4px);
}

.category-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.category-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FBF8F3 0%, #F5EDE0 100%);
  border: 1px solid rgba(197, 168, 128, 0.45);
  color: #0E2254;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(197, 168, 128, 0.12);
  transition: all var(--transition-fast);
}
.category-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}
.category-luxury-card:hover .category-icon-box {
  background: #0E2254;
  color: #FFFFFF;
  border-color: #0E2254;
  transform: scale(1.06);
}

.category-tag-b2b {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #C81D25;
  background: rgba(200, 29, 37, 0.08);
  border: 1px solid rgba(200, 29, 37, 0.2);
  border-radius: 4px;
  padding: 2px 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.category-card-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0E2254;
  line-height: 1.32;
  margin-bottom: 6px;
  transition: color var(--transition-fast);
}
.category-luxury-card:hover .category-card-title {
  color: #C81D25;
}

.category-card-desc {
  font-family: var(--font-sans);
  font-size: 0.84375rem;
  line-height: 1.62;
  color: #475569;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  flex-grow: 1;
}

.category-card-action {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0E2254;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
  transition: color var(--transition-fast);
}
.category-luxury-card:hover .category-card-action {
  color: #C81D25;
}

/* Instant B2B WhatsApp Quotation Box */
.b2b-quote-box {
  background: linear-gradient(135deg, #FFFDF9 0%, #FAF6F0 100%);
  border: 2px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow-luxury);
  max-width: 880px;
  margin-inline: auto;
}

.b2b-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .b2b-form-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-dark);
}
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--color-border);
  background: #FFFFFF;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--color-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

/* Filter Tab Visibility */
.product-card.is-hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   15. STICKY MOBILE B2B ACTION BAR
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-light);
  border-top: 1px solid var(--color-border-gold);
  padding: 8px 12px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: block;
  }
  body {
    padding-bottom: 64px;
  }
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE NAVIGATION (Mobile Drawer)
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .topbar { display: none; }
  .menu-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 12px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    z-index: 98;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-dropdown, .mega-dropdown {
    width: 100%;
  }

  .dropdown-menu, .dropdown-panel-2col, .mega-menu-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 8px;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mega-promo {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu,
  .nav-dropdown.active .dropdown-panel-2col,
  .mega-dropdown.active .mega-menu-panel {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   17. ACCESSIBILITY & PRINT
   -------------------------------------------------------------------------- */
.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--color-primary);
  color: var(--color-light);
  font-weight: 700;
  border-radius: var(--radius-xs);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   18. COMPONENT ENHANCEMENTS: CATEGORY CTA ROW, PREFOOTER LIGHT & WIDGETS
   -------------------------------------------------------------------------- */
/* Single-Line Action Button Row under 14 Categories */
.category-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 2.25rem;
  width: 100%;
}

.category-cta-row .btn {
  white-space: nowrap;
  font-size: 0.9375rem;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 920px) {
  .category-cta-row {
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Pre-Footer Direct Manufacturer Sourcing (Light Theme) */
.section-prefooter-light {
  background: #FFFFFF;
  border-top: 1px solid rgba(197, 168, 128, 0.35);
  border-bottom: 1px solid rgba(197, 168, 128, 0.35);
  padding: clamp(3rem, 5vw, 4.25rem) 0;
  position: relative;
}

.section-prefooter-light .section-header {
  margin-bottom: 1.75rem;
}

.prefooter-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.prefooter-btn-row .btn {
  white-space: nowrap;
  font-size: 0.9375rem;
  padding: 13px 28px;
}

/* Compact Floating Request Wholesale Quotation Button (Bottom Right Corner Stack) */
.inquiry-float-icon-btn {
  position: fixed;
  bottom: 88px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0E2254;
  color: #C5A880;
  border: 2px solid #C5A880;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(14, 34, 84, 0.35);
  z-index: 9994;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.inquiry-float-icon-btn:hover {
  background: #C81D25;
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(200, 29, 37, 0.45);
}

.inquiry-float-icon-btn .float-btn-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: #0E2254;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(197, 168, 128, 0.45);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.inquiry-float-icon-btn:hover .float-btn-tooltip {
  opacity: 1;
  visibility: visible;
  right: 64px;
}

@media (max-width: 767px) {
  .inquiry-float-icon-btn {
    display: none;
  }
}

/* Floating Circular WhatsApp Icon Button */
.whatsapp-float-circle {
  position: fixed;
  bottom: 24px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 9995;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.whatsapp-float-circle:hover {
  transform: scale(1.1);
  background: #1EBE5D;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-circle svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.wa-online-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #FFFFFF;
  animation: pulseDot 2s infinite;
}

@media (max-width: 767px) {
  .whatsapp-float-circle {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   19. INTERACTIVE WHATSAPP CHATBOX WIDGET POPUP
   -------------------------------------------------------------------------- */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(14, 34, 84, 0.22), 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.45);
  z-index: 9996;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-chat-widget.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-widget-header {
  background: #0E2254;
  color: #FFFFFF;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #C5A880;
}

.chat-header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-avatar-box {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 1.5px solid #C5A880;
}

.chat-avatar-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.chat-status-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10B981;
  border: 2px solid #0E2254;
}

.chat-header-text {
  display: flex;
  flex-direction: column;
}

.chat-header-name {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
}

.chat-header-status {
  font-size: 0.72rem;
  color: #CBD5E1;
}

.chat-widget-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.chat-widget-close:hover {
  background: #C81D25;
  border-color: #FFFFFF;
  transform: rotate(90deg);
}

/* Chat Body */
.chat-widget-body {
  padding: 16px;
  background: #ECE5DD url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4cbbe' fill-opacity='0.25' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
  overflow-y: auto;
}

.chat-date-pill {
  align-self: center;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748B;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.chat-bubble {
  background: #FFFFFF;
  border-radius: 10px 10px 10px 2px;
  padding: 10px 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 90%;
}

.chat-bubble p {
  margin: 0 0 4px 0;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #1E293B;
}
.chat-bubble p:last-of-type {
  margin-bottom: 0;
}

.chat-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: #94A3B8;
  margin-top: 4px;
}

/* Quick Chips */
.chat-quick-suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.chat-suggestions-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.chat-chips-grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.chat-chip {
  background: #FFFFFF;
  border: 1px solid rgba(14, 34, 84, 0.15);
  border-radius: 8px;
  padding: 6px 10px;
  font-family: var(--font-sans);
  font-size: 0.775rem;
  font-weight: 600;
  color: #0E2254;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.chat-chip:hover {
  background: #0E2254;
  color: #FFFFFF;
  border-color: #0E2254;
  transform: translateX(3px);
}

/* Chat Footer & Input */
.chat-widget-footer {
  padding: 10px 12px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-input-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-input-text {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid #CBD5E1;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: #1E293B;
  outline: none;
  transition: border-color var(--transition-fast);
}

.chat-input-text:focus {
  border-color: #25D366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.chat-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.chat-send-btn:hover {
  background: #1EBE5D;
  transform: scale(1.08);
}

.chat-secure-badge {
  font-size: 0.68rem;
  color: #64748B;
  text-align: center;
}

/* Backdrop Overlay */
.inquiry-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 34, 84, 0.65);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

/* Offcanvas Drawer Container */
.inquiry-sidebar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 490px;
  background: #FFFFFF;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 50px rgba(14, 34, 84, 0.3);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

/* Drawer Header */
.inquiry-drawer-header {
  padding: 22px 24px;
  background: linear-gradient(135deg, #0E2254 0%, #152B6B 100%);
  color: #FFFFFF;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 2px solid #C5A880;
  position: relative;
}

.drawer-header-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  background: rgba(197, 168, 128, 0.22);
  border: 1px solid rgba(197, 168, 128, 0.5);
  color: #E2C9A5;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}

.drawer-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 4px 0 0 0;
  line-height: 1.25;
}

.drawer-sub {
  font-size: 0.8125rem;
  color: #CBD5E1;
  margin: 0;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.drawer-close-btn:hover {
  background: #C81D25;
  border-color: #FFFFFF;
  transform: rotate(90deg);
}

/* Drawer Body & Form */
.inquiry-drawer-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FDFBF7;
}

.drawer-trust-box {
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.35);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(200, 29, 37, 0.08);
  color: #C81D25;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.drawer-trust-text {
  font-size: 0.8125rem;
  color: #334155;
  line-height: 1.4;
}

.drawer-trust-text strong {
  color: #0E2254;
  display: block;
}

.drawer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-field label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0E2254;
  letter-spacing: 0.01em;
}

.drawer-field input,
.drawer-field select,
.drawer-field textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #1E293B;
  background: #FFFFFF;
  border: 1px solid rgba(14, 34, 84, 0.2);
  border-radius: 8px;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.drawer-field input:focus,
.drawer-field select:focus,
.drawer-field textarea:focus {
  outline: none;
  border-color: #0E2254;
  box-shadow: 0 0 0 3px rgba(14, 34, 84, 0.12);
}

.drawer-field textarea {
  resize: vertical;
  min-height: 70px;
}

.drawer-footer-note {
  font-size: 0.75rem;
  color: #64748B;
  text-align: center;
  line-height: 1.45;
  margin-top: 4px;
}

/* ==========================================================================
   B2B WHOLESALE WELCOME GATEKEEPER MODAL (Side-by-Side 2-Column Luxury Layout)
   ========================================================================== */
body.b2b-modal-open {
  overflow: hidden !important;
  height: 100vh !important;
}

.b2b-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 2.5vw, 24px);
  background: rgba(14, 34, 84, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.b2b-modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.b2b-modal-dialog {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1.5px solid rgba(197, 168, 128, 0.55);
  box-shadow: 0 25px 60px -10px rgba(14, 34, 84, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15);
  width: 100%;
  max-width: 1060px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.b2b-modal-overlay.active .b2b-modal-dialog {
  transform: scale(1) translateY(0);
}

.b2b-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 20px;
  background: #FDFBF7;
  border-bottom: 1px solid rgba(197, 168, 128, 0.35);
  flex-shrink: 0;
}

.b2b-modal-header-badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.b2b-modal-title {
  font-family: var(--font-sans);
  font-size: 0.84375rem;
  font-weight: 700;
  color: #0E2254;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.b2b-modal-body {
  padding: 16px 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

/* 2-Column Grid */
.b2b-modal-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: center;
}

/* Left Column: Full Uncut Image */
.b2b-modal-col-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.b2b-modal-img-wrap {
  width: 100%;
  border-radius: 12px;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background: #FDFBF7;
  padding: 6px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-modal-img {
  width: 100%;
  height: auto;
  max-height: 68vh;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

/* Right Column: Wholesale Specifications, Terms & Actions */
.b2b-modal-col-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.b2b-modal-highlights {
  background: #FDFBF7;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 10px;
  padding: 12px 14px;
}

.b2b-highlights-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0E2254;
  margin: 0 0 8px 0;
  letter-spacing: 0.01em;
}

.b2b-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.b2b-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #334155;
}

.b2b-highlights-list li strong {
  color: #0E2254;
}

.b2b-highlights-list li svg {
  margin-top: 2px;
  flex-shrink: 0;
}

.b2b-modal-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-left: 3.5px solid #0E2254;
  border-radius: 8px;
  padding: 10px 12px;
}

.b2b-modal-notice p {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #334155;
  margin: 0;
}

.b2b-modal-notice strong {
  color: #0E2254;
}

.b2b-checkbox-wrap {
  padding: 10px 12px;
  background: #FFFFFF;
  border: 1.5px solid rgba(197, 168, 128, 0.45);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.b2b-checkbox-wrap.has-error {
  border-color: #C81D25 !important;
  background: #FFF5F5 !important;
  box-shadow: 0 0 0 3px rgba(200, 29, 37, 0.15) !important;
}

.b2b-checkbox-wrap.shake {
  animation: b2bShake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes b2bShake {
  10%, 90% { transform: translate3d(-1px, 0, 0); }
  20%, 80% { transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% { transform: translate3d(-3px, 0, 0); }
  40%, 60% { transform: translate3d(3px, 0, 0); }
}

.b2b-custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

.b2b-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.b2b-checkbox-box {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1.8px solid #0E2254;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.b2b-checkbox-box svg {
  display: none;
}

.b2b-checkbox-input:checked + .b2b-checkbox-box {
  background: #0E2254;
  border-color: #0E2254;
}

.b2b-checkbox-input:checked + .b2b-checkbox-box svg {
  display: block;
  stroke: #FFFFFF;
}

.b2b-checkbox-input:focus + .b2b-checkbox-box {
  box-shadow: 0 0 0 3px rgba(14, 34, 84, 0.18);
}

.b2b-checkbox-text {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  line-height: 1.48;
  color: #1E293B;
}

.b2b-checkbox-text a {
  color: #0E2254;
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 2px;
}

.b2b-checkbox-text a:hover {
  color: #C81D25;
}

.b2b-modal-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.b2b-start-btn {
  width: 100%;
  padding: 13px 22px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(135deg, #0E2254 0%, #173787 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(14, 34, 84, 0.2);
}

.b2b-start-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(50%);
  box-shadow: none;
}

.b2b-start-btn.btn-ready {
  opacity: 1 !important;
  cursor: pointer !important;
  filter: none !important;
  background: linear-gradient(135deg, #0E2254 0%, #1a409e 100%) !important;
  box-shadow: 0 8px 24px rgba(14, 34, 84, 0.35) !important;
}

.b2b-start-btn.btn-ready:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 34, 84, 0.42) !important;
  background: linear-gradient(135deg, #0A193E 0%, #0E2254 100%) !important;
}

.b2b-btn-hint {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #64748B;
  margin: 0;
  text-align: center;
  transition: opacity 0.2s ease;
}

/* Responsive Breakpoints */
@media (max-width: 920px) {
  .b2b-modal-dialog {
    max-height: 94vh;
    max-width: 680px;
  }
  .b2b-modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .b2b-modal-img {
    max-height: 48vh;
  }
}

@media (max-width: 640px) {
  .b2b-modal-header {
    padding: 10px 14px;
  }
  .b2b-modal-body {
    padding: 12px 14px 16px 14px;
  }
  .b2b-modal-img {
    max-height: 40vh;
  }
  .b2b-checkbox-text {
    font-size: 0.8125rem;
  }
  .b2b-start-btn {
    padding: 12px 18px;
    font-size: 0.9375rem;
  }
}


