/* ===================================================
   Al Zaaby A/C Spare Parts Trading — Main Stylesheet
   REBRAND: Midnight Navy + Metallic Gold Identity
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&family=Cairo:wght@400;600;700;800&family=Noto+Kufi+Arabic:wght@400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Core Brand Palette */
  --navy-950: #020B1C;  /* Midnight Navy — main background */
  --navy-900: #071329;  /* Deep Royal Navy — cards/sections */
  --navy-800: #0C1E3A;
  --navy-700: #132B4F;
  --navy-600: #1A3A68;
  --gold-500: #DDAF6C;  /* Metallic Gold — premium accent */
  --gold-400: #E8C48A;
  --gold-300: #F0D5A8;
  --gold-dark: #7B5424; /* Antique Gold — borders/shadows */
  --gold-600: #B8923E;
  --champagne: #F5DEB3; /* Soft highlight */
  --ivory: #F8F4EA;     /* Text on dark */
  --mist: #F4F7FA;      /* Light sections */

  /* Legacy compat aliases (maps old blue → gold) */
  --blue-500: #DDAF6C;
  --blue-400: #E8C48A;
  --blue-300: #F0D5A8;
  --blue-600: #B8923E;
  --cyan-500: #DDAF6C;
  --cyan-400: #E8C48A;
  --orange-600: #7B5424;
  --orange-500: #DDAF6C;
  --orange-400: #E8C48A;

  --wa-green: #25D366;
  --wa-green-d: #128C7E;

  --gray-50:  #F4F7FA;
  --gray-100: #EDF1F7;
  --gray-200: #DDE3ED;
  --gray-300: #C1CADA;
  --gray-400: #8E9BB2;
  --gray-500: #5E6E87;
  --gray-600: #3E4E66;
  --gray-700: #2A3A52;
  --gray-800: #1A2840;
  --gray-900: #0F1A2E;
  --white: #FFFFFF;

  /* Typography */
  --font: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Cinzel', 'Cormorant Garamond', 'Georgia', serif;
  --font-ar: 'Noto Kufi Arabic', 'Cairo', sans-serif;

  /* Shadows */
  --sh-sm:  0 1px 3px rgba(2,11,28,.14), 0 1px 2px rgba(2,11,28,.10);
  --sh-md:  0 4px 14px rgba(2,11,28,.12), 0 2px 4px rgba(2,11,28,.08);
  --sh-lg:  0 10px 30px rgba(2,11,28,.14), 0 4px 8px rgba(2,11,28,.08);
  --sh-xl:  0 20px 50px rgba(2,11,28,.18), 0 8px 16px rgba(2,11,28,.10);
  --sh-gold: 0 8px 32px rgba(221,175,108,.25);
  --sh-gold-sm: 0 4px 16px rgba(221,175,108,.18);
  --sh-wa:   0 8px 32px rgba(37,211,102,.35);

  /* Radii */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Easings */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);

  /* Layout */
  --header-h: 72px;
  --section-py: clamp(60px, 8vw, 100px);
  --container: 1200px;

  /* Gold gradient utility */
  --gold-gradient: linear-gradient(135deg, #DDAF6C, #E8C48A);
  --gold-gradient-dark: linear-gradient(135deg, #B8923E, #7B5424);
  --navy-gradient: linear-gradient(135deg, #020B1C, #071329);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(32px, 5vw, 60px); }
h2 { font-size: clamp(26px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: clamp(17px, 2vw, 22px); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
  font-family: var(--font);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: var(--r-full);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--navy-950);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
.section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
  font-family: var(--font);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  transition: all .25s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: .02em;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy-950);
  box-shadow: var(--sh-gold);
  font-weight: 700;
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(221,175,108,.45); transform: translateY(-1px); }

.btn-wa {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-d));
  color: var(--white);
  box-shadow: var(--sh-wa);
}
.btn-wa:hover { box-shadow: 0 12px 40px rgba(37,211,102,.45); transform: translateY(-1px); }

.btn-call {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--ivory) !important;
  box-shadow: 0 8px 32px rgba(2,11,28,.35);
  border: 1px solid rgba(221,175,108,.25);
}
.btn-call svg { color: var(--gold-500) !important; stroke: var(--gold-500) !important; }
.btn-call:hover { box-shadow: 0 12px 40px rgba(2,11,28,.45); transform: translateY(-1px); border-color: rgba(221,175,108,.4); }

/* New Category Cards V2 */
.cat-card-v2 {
  background: var(--navy-950);
  border: 3px solid rgba(221, 175, 108, 0.4);
  border-radius: var(--r-2xl);
  padding: 36px 28px;
  transition: all .35s var(--ease-spring);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  height: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.cat-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(221, 175, 108, 0.15), 0 0 30px rgba(2, 11, 28, 0.4);
  border-color: var(--gold-400);
  background: #091326;
}
.cat-v2-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform .4s var(--ease-spring);
  box-shadow: var(--sh-gold-sm);
}
.cat-card-v2:hover .cat-v2-icon {
  transform: scale(1.1) rotate(-5deg);
}
.cat-v2-icon svg {
  width: 28px;
  height: 28px;
}
.cat-v2-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  font-family: var(--font);
}
.cat-v2-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.cat-v2-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-400);
  transition: all 0.3s ease;
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-card-v2:hover .cat-v2-link {
  color: var(--gold-300);
  transform: translateX(4px);
}

/* ===== Category cards v3 (image-forward) ===== */
.cat-card-v3 {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-2xl);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(2, 11, 28, .07);
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.cat-card-v3:hover {
  transform: translateY(-10px);
  border-color: var(--gold-400);
  box-shadow: 0 24px 50px rgba(2, 11, 28, .16), var(--sh-gold);
}
.cat-v3-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(120% 90% at 50% 0%, #122E54 0%, transparent 60%),
    linear-gradient(160deg, #0C1E3A 0%, #071329 55%, #020B1C 100%);
  overflow: hidden;
}
.cat-v3-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 50% 30%, rgba(221, 175, 108, .14), transparent 70%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.cat-card-v3:hover .cat-v3-media::before { opacity: 1; }
.cat-v3-media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.cat-card-v3:hover .cat-v3-media::after { transform: scaleX(1); }
.cat-v3-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .35));
  transition: transform .5s var(--ease-spring);
}
.cat-card-v3:hover .cat-v3-img { transform: scale(1.08) translateY(-2px); }
.cat-v3-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  padding: 22px 22px 24px;
}
.cat-v3-name {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
  font-family: var(--font);
  letter-spacing: -.01em;
}
.cat-v3-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.cat-v3-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-600);
  font-family: var(--font);
}
.cat-v3-link svg {
  width: 16px;
  height: 16px;
  transition: transform .35s var(--ease-out);
}
.cat-card-v3:hover .cat-v3-link { color: var(--gold-dark); }
.cat-card-v3:hover .cat-v3-link svg { transform: translateX(5px); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-500);
  color: var(--gold-500);
}
.btn-outline:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--sh-gold);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(221,175,108,.5);
  color: var(--ivory);
}
.btn-outline-white:hover {
  background: rgba(221,175,108,.15);
  border-color: var(--gold-500);
  color: var(--gold-400);
}

.btn-ghost {
  background: var(--gray-100);
  color: var(--gray-700);
}
.btn-ghost:hover { background: var(--gray-200); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 38px; font-size: 17px; }
.btn-xl { padding: 20px 48px; font-size: 18px; }

.btn-icon {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: var(--r-full);
  flex-shrink: 0;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1090; /* above page content (toolbar 1010, sticky bar 1050) so they scroll under the header, below cart/dropdown overlays */
  height: var(--header-h);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid rgba(221, 175, 108, 0.15);
}
.header.scrolled {
  background: rgba(2,11,28,.97);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 2px 24px rgba(2,11,28,.5);
  border-color: rgba(221, 175, 108, 0.35);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-icon svg { width: 26px; height: 26px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: .04em;
  font-family: var(--font-heading);
}
.logo-name span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: rgba(221,175,108,.55);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: var(--font);
}

/* Premium Rebranded Logo Box */
.logo-box-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.logo-box-link:hover {
  transform: translateY(-2px);
}
.premium-logo-box {
  background: #020917; /* Slightly darker than nav for contrast */
  border: 1.5px solid rgba(221, 175, 108, 0.45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(221, 175, 108, 0.25);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}
.premium-logo-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(221, 175, 108, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}
.logo-box-link:hover .premium-logo-box::before {
  left: 125%;
}
.premium-logo-box:hover {
  box-shadow: 0 0 25px rgba(221, 175, 108, 0.45), inset 0 0 10px rgba(221, 175, 108, 0.15);
  border-color: rgba(221, 175, 108, 0.85);
}
.premium-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Sizing variants */
.header-logo-box {
  width: 125px;
  height: 54px;
  padding: 4px 6px;
}
.footer-logo-box {
  width: 160px;
  height: 72px;
  padding: 6px 10px;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  border-radius: var(--r-md);
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--ivory);
  background: rgba(221,175,108,.08);
}
.nav-link.active { color: var(--gold-400); }

.nav-cta { margin-left: 12px; display: flex; align-items: center; gap: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--r-md);
  transition: background .2s;
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: var(--r-full);
  transition: transform .3s var(--ease), opacity .2s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(2,11,28,.97);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-top: 1px solid rgba(221,175,108,.12);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .3s;
  z-index: 999;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(248,244,234,.8);
  border-radius: var(--r-md);
  transition: background .2s, color .2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-nav-link:hover { background: rgba(221,175,108,.08); color: var(--ivory); }
.mobile-nav-link.active { color: var(--gold-400); background: rgba(221,175,108,.1); }
.mobile-cta { display: flex; flex-direction: column; gap: 10px; }
.mobile-cta .btn { justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(2, 11, 28, 0.25) 0%, rgba(2, 11, 28, 0.72) 80%),
              linear-gradient(180deg, rgba(2, 11, 28, 0.35) 0%, rgba(2, 11, 28, 0.85) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image:
    linear-gradient(rgba(221,175,108,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221,175,108,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#hero-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(221,175,108,.1);
  border: 1px solid rgba(221,175,108,.3);
  color: var(--champagne);
  padding: 6px 16px 6px 10px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(2,11,28,0.2);
  font-family: var(--font);
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6.5vw, 68px);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.1;
  letter-spacing: .02em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(2,11,28,0.5);
  max-width: 800px;
}

.hero-title .highlight {
  color: var(--gold-400);
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-shadow: 0 2px 15px rgba(221, 175, 108, 0.2);
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(248,244,234,.75);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 660px;
  text-shadow: 0 2px 8px rgba(2,11,28,0.5);
  font-family: var(--font);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

/* Glassmorphic Stats Container at bottom */
.hero-stats-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  background: rgba(2, 11, 28, 0.35);
  border: 1px solid rgba(221, 175, 108, 0.15);
  border-radius: var(--r-2xl);
  padding: 20px 48px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 35px rgba(2, 11, 28, 0.4);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--ivory);
  line-height: 1;
  font-family: var(--font-heading);
}

.hero-stat-num span { color: var(--gold-500); }

.hero-stat-label {
  font-size: 11px;
  color: rgba(221,175,108,.55);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-family: var(--font);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-2xl);
  padding: 32px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 480px;
}
.product-grid-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-visual-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 16px 12px;
  text-align: center;
  transition: transform .3s var(--ease-spring), background .2s;
}
.product-visual-item:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(14,165,233,.15);
  border-color: rgba(14,165,233,.3);
}
.product-visual-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(14,165,233,.25), rgba(6,182,212,.15));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 22px;
}
.product-visual-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}
.hero-visual-badge {
  position: absolute;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-d));
  color: white;
  padding: 10px 16px;
  border-radius: var(--r-lg);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--sh-wa);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: floatY 4s ease-in-out infinite;
}
.hero-visual-badge-2 {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: var(--sh-orange);
  animation-delay: -2s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-top-left { top: -20px; left: -30px; }
.badge-bottom-right { bottom: -20px; right: -20px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::before {
  content: '';
  width: 4px; height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: var(--r-full);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: .4; }
}

/* ===== QUICK ACTION ===== */
.quick-action {
  padding: var(--section-py) 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.qa-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: transform .3s var(--ease-spring), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.qa-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
}
.qa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
}
.qa-card:hover::before { opacity: 1; }
.qa-card-1::before { background: linear-gradient(135deg, rgba(37,211,102,.06), rgba(18,140,126,.04)); }
.qa-card-2::before { background: linear-gradient(135deg, rgba(14,165,233,.06), rgba(6,182,212,.04)); }
.qa-card-3::before { background: linear-gradient(135deg, rgba(249,115,22,.06), rgba(234,88,12,.04)); }
.qa-card-4::before { background: linear-gradient(135deg, rgba(99,102,241,.06), rgba(79,70,229,.04)); }

.qa-card:hover .qa-icon { transform: scale(1.1) rotate(-5deg); }
.qa-icon {
  width: 72px; height: 72px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform .3s var(--ease-spring);
  font-size: 32px;
  position: relative;
  z-index: 1;
}
.qa-icon-wa { background: linear-gradient(135deg, rgba(37,211,102,.15), rgba(18,140,126,.12)); }
.qa-icon-search { background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(6,182,212,.12)); }
.qa-icon-cat { background: linear-gradient(135deg, rgba(249,115,22,.15), rgba(234,88,12,.12)); }
.qa-icon-quote { background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(79,70,229,.12)); }

.qa-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.qa-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.qa-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.qa-action-wa { color: var(--wa-green); }
.qa-action-blue { color: var(--blue-500); }
.qa-action-orange { color: var(--orange-500); }
.qa-action-indigo { color: #6366F1; }
.qa-action svg { transition: transform .2s; }
.qa-card:hover .qa-action svg { transform: translateX(4px); }

/* ===== BRANDS WE STOCK (logo wall) ===== */
.brands-strip {
  background: #050d1a;
  padding: clamp(46px, 6vw, 72px) 0;
  border-top: 1px solid rgba(221, 175, 108, 0.12);
  border-bottom: 1px solid rgba(221, 175, 108, 0.12);
  position: relative;
  overflow: hidden;
}
.brands-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 50% 0%, rgba(221, 175, 108, 0.06), transparent 70%);
  pointer-events: none;
}
.brands-eyebrow {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 36px;
}
.brands-eyebrow strong {
  color: var(--gold-300);
  font-weight: 800;
}
.brands-note {
  position: relative;
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}
.brands-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px 48px;
  max-width: 1040px;
  margin: 0 auto;
}
.brand-item {
  font-family: var(--font);
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 20px);
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  opacity: 0.85;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  cursor: pointer;
}
.brand-item:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 560px) {
  .brands-grid { gap: 20px 30px; }
  .brand-item { font-size: 15px; }
}

/* ===== CATEGORIES ===== */
.categories {
  padding: var(--section-py) 0;
  background: #f9f8f6;
}
.categories-header { margin-bottom: 48px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/2;
  display: flex;
  align-items: flex-end;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.cat-card:hover .cat-img { transform: scale(1.06); }
.cat-card:hover .cat-overlay { opacity: .85; }
.cat-card:hover .cat-arrow { transform: translateX(4px); }

.cat-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.cat-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform .5s var(--ease);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  opacity: .75;
  transition: opacity .3s;
}
.cat-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}
.cat-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.cat-count {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 4px;
}
.cat-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform .2s;
  backdrop-filter: blur(4px);
  z-index: 2;
}

/* Category color themes */
.cat-c1 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c1 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }
.cat-c2 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c2 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }
.cat-c3 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c3 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }
.cat-c4 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c4 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }
.cat-c5 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c5 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }
.cat-c6 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c6 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }
.cat-c7 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c7 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }
.cat-c8 .cat-img-placeholder { background: var(--gold-gradient); color: var(--navy-950); }
.cat-c8 .cat-overlay { background: linear-gradient(to top, var(--navy-950) 20%, transparent); }

/* cat-card span (large) */
.cat-card.cat-large { grid-column: span 2; }

/* ===== FEATURED PRODUCTS ===== */
.featured {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(221, 175, 108, 0.2);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .3s var(--ease-spring);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(2, 11, 28, 0.03);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(221, 175, 108, 0.16), 0 4px 25px rgba(2, 11, 28, 0.06);
  border-color: var(--gold-400);
  background: var(--white);
}
.product-card:hover .product-img-placeholder { transform: scale(1.04); }
.product-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF8F5, #F3EFE9);
  position: relative;
  border-bottom: 1px solid rgba(221, 175, 108, 0.12);
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform .4s var(--ease);
  background: linear-gradient(135deg, #FAF8F5, #EAE5DC);
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-hot { background: #FEF2F2; color: #DC2626; }
.badge-new { background: #F0FDF4; color: #16A34A; }
.badge-popular { background: #EFF6FF; color: #2563EB; }

.product-body { padding: 14px; }
.product-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-600);
  margin-bottom: 8px;
}
.product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 8px;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  transition: color 0.3s ease;
}
.product-card:hover .product-name {
  color: var(--gold-600);
}
.product-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #16A34A;
}
.product-avail::before {
  content: '';
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
}
.product-cta {
  padding: 8px 14px;
  font-size: 12px;
  border-radius: var(--r-full);
  font-weight: 600;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: background .2s, color .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card:hover .product-cta {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--sh-gold-sm);
}

/* ===== WHY US ===== */
.why-us {
  padding: var(--section-py) 0;
  background: #020813;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(221, 175, 108, 0.05), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(221, 175, 108, 0.03), transparent 40%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  z-index: 0;
}
.why-us-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-label .section-eyebrow { color: var(--gold-400); }
.why-us-label .section-eyebrow::before { background: var(--gold-gradient); }
.why-us-title { color: var(--white); font-family: var(--font-heading); }
.why-us-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-us-subtitle { color: #94a3b8; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  background: #091124;
  border: 1.5px solid rgba(221, 175, 108, 0.12);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  transition: all .3s ease;
  position: relative;
}
.feature-card:hover {
  background: #0c1833;
  border-color: rgba(221, 175, 108, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(221, 175, 108, 0.03);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  border: 2.5px solid var(--gold-400);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-400);
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 8px;
  font-family: var(--font);
}
.feature-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--white);
}
.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: var(--gold-gradient);
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  position: relative;
  z-index: 1;
}
.step-item:hover .step-number {
  transform: scale(1.12);
  box-shadow: var(--sh-gold);
}
.step-num-inner {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-icon { font-size: 28px; }
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== B2B ===== */
.b2b {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.b2b-features { margin: 28px 0; display: flex; flex-direction: column; gap: 16px; }
.b2b-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.b2b-feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(6,182,212,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.b2b-feature-title { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.b2b-feature-desc { font-size: 13px; color: var(--gray-500); }

.b2b-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-2xl);
  padding: 40px;
  box-shadow: var(--sh-lg);
}
.b2b-card-title { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 6px; }
.b2b-card-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 28px; }

/* Form styles */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(221,175,108,.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--navy-950);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(221,175,108,.05), transparent);
}
.testimonials-header { position: relative; z-index: 1; }
.testimonials-header .section-eyebrow { color: var(--gold-400); }
.testimonials-header .section-eyebrow::before { background: var(--gold-gradient); }
.testimonials-header .section-title { color: var(--ivory); }
.testimonials-header .section-title span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counters-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  background: rgba(221,175,108,.04);
  border: 1px solid rgba(221,175,108,.12);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(8px);
}
.counter-item { text-align: center; flex: 1; min-width: 120px; }
.counter-num {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: var(--ivory);
  line-height: 1;
  font-family: var(--font-heading);
}
.counter-num .counter-unit { color: var(--gold-500); }
.counter-label {
  font-size: 13px;
  color: rgba(221,175,108,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 500;
  margin-top: 6px;
  font-family: var(--font);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(221,175,108,.04);
  border: 1px solid rgba(221,175,108,.1);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: background .3s, transform .3s;
}
.testimonial-card:hover {
  background: rgba(221,175,108,.07);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold-500);
  font-size: 15px;
}
.testimonial-text {
  font-size: 14px;
  color: rgba(248,244,234,.65);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--ivory); }
.testimonial-role { font-size: 12px; color: rgba(221,175,108,.45); }

/* ===== CONTACT ===== */
.contact-strip {
  padding: var(--section-py) 0;
  background: var(--white);
}
.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-200);
  transition: border-color .2s, box-shadow .2s;
}
.contact-item:hover { border-color: var(--blue-300); box-shadow: var(--sh-sm); }
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item-label { font-size: 12px; font-weight: 600; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--gray-800); }
.contact-item-link { color: var(--blue-500); transition: color .2s; }
.contact-item-link:hover { color: var(--navy-700); }

.map-embed {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--sh-md);
}
.map-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(135deg, #E0E7EF, #C3D4E5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: '📍';
  font-size: 48px;
}
.map-placeholder::after {
  content: 'Musaffah Industrial Area, Abu Dhabi';
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-950);
  color: rgba(248,244,234,.5);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(221,175,108,.1);
}
.footer-brand { }
.footer-logo { margin-bottom: 20px; }
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(248,244,234,.4);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: rgba(221,175,108,.06);
  border: 1px solid rgba(221,175,108,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s, transform .2s;
}
.footer-social:hover { background: rgba(221,175,108,.15); transform: translateY(-2px); }

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
  font-family: var(--font);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 13px;
  color: rgba(248,244,234,.4);
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--gold-400); padding-left: 4px; }
.footer-link::before { content: '›'; font-size: 16px; opacity: 0.5; }

.footer-contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(248,244,234,.4);
  line-height: 1.5;
}
.footer-contact-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(248,244,234,.25); }
.footer-copy a { color: var(--gold-400); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { font-size: 12px; color: rgba(248,244,234,.25); transition: color .2s; }
.footer-bottom-link:hover { color: rgba(248,244,234,.55); }

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 14px;
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  box-shadow: var(--sh-xl);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
  position: relative;
  max-width: 60px;
  overflow: hidden;
  white-space: nowrap;
}
.float-btn:hover { transform: scale(1.06); max-width: 220px; }
.float-btn-text { opacity: 0; transform: translateX(8px); transition: opacity .25s .1s, transform .25s .1s; pointer-events: none; }
.float-btn:hover .float-btn-text { opacity: 1; transform: translateX(0); }

.float-wa { background: linear-gradient(135deg, var(--wa-green), var(--wa-green-d)); box-shadow: var(--sh-wa); }
.float-call { background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); box-shadow: 0 8px 32px rgba(2,11,28,.35); border: 1px solid rgba(221,175,108,.15); }
.float-btn-icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.float-btn-icon svg { stroke: white !important; color: white !important; }
.float-btn-pulse {
  position: absolute;
  top: 8px; left: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: floatPulse 2s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.5); opacity: 0; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy-950);
  padding: calc(var(--header-h) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(221,175,108,.08), transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(248,244,234,.4);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold-400); transition: color .2s; }
.breadcrumb a:hover { color: var(--ivory); }
.breadcrumb-sep { color: rgba(221,175,108,.2); }
.page-hero-title { color: var(--ivory); font-size: clamp(30px, 4.5vw, 52px); margin-bottom: 12px; font-family: var(--font-heading); }
.page-hero-sub { color: rgba(248,244,234,.5); font-size: 16px; max-width: 560px; }

/* ===== ABOUT PAGE ===== */
.about-story {
  padding: var(--section-py) 0;
  background: var(--white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual-main {
  width: 100%;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}
.about-visual-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(14,165,233,.2), transparent 60%);
}
.about-exp-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px; height: 120px;
  background: var(--gold-gradient);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  box-shadow: var(--sh-gold-sm);
  border: 4px solid var(--white);
}
.about-exp-num { font-size: 36px; font-weight: 900; line-height: 1; color: var(--navy-950); }
.about-exp-text { font-size: 11px; font-weight: 700; text-align: center; line-height: 1.3; text-transform: uppercase; letter-spacing: .05em; color: var(--navy-950); }

.about-text .section-eyebrow { margin-bottom: 10px; }
.about-body { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-top: 20px; }
.about-body p + p { margin-top: 16px; }
.about-values { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
}
.about-value-icon { font-size: 22px; flex-shrink: 0; }
.about-value-title { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.about-value-desc { font-size: 13px; color: var(--gray-500); }

/* ===== PRODUCTS PAGE ===== */
.products-page { padding: var(--section-py) 0; background: var(--gray-50); }
.products-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1010;
}
.search-bar {
  flex: 1;
  min-width: 240px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 14px;
  background: var(--white);
  color: var(--gray-800);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.search-bar input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(14,165,233,.1);
}
.search-bar-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 16px;
  pointer-events: none;
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter-tag {
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 500;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
}
.filter-tag:hover, .filter-tag.active {
  border-color: var(--gold-500);
  color: var(--gold-600);
  background: rgba(221,175,108,.06);
}
.filter-tag.active { font-weight: 600; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

.separator {
  height: 1px;
  background: var(--gray-200);
}

/* Section padding */
section { scroll-margin-top: var(--header-h); }

/* Fade in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card.cat-large { grid-column: span 1; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .b2b-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-inner { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-track::before { display: none; }
  .quick-action-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .counters-row { flex-wrap: wrap; gap: 24px; padding: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .b2b-card { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .quick-action-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .float-btns { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { max-width: 52px; padding: 12px; }
  .float-btn:hover { max-width: 52px; }
  .float-btn-text { display: none; }
}

/* Print */
@media print {
  .header, .float-btns, .mobile-menu { display: none; }
  .hero { padding-top: 0; min-height: auto; }
}

/* ===================================================
   ADDITIONS: Browse View, Quote Cart, Instagram
   =================================================== */

/* ===== VIEW TOGGLE ===== */
.view-toggle {
  display: flex;
  gap: 3px;
  background: var(--gray-100);
  padding: 4px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
}
.view-toggle-btn {
  padding: 8px 16px;
  border-radius: calc(var(--r-md) - 2px);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all .2s var(--ease);
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  white-space: nowrap;
}
.view-toggle-btn.active {
  background: var(--white);
  color: var(--gray-900);
  box-shadow: var(--sh-sm);
}
.view-toggle-btn:hover:not(.active) { color: var(--gray-700); }

/* ===== BROWSE LAYOUT (sidebar + content) ===== */
.browse-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* Sidebar */
.browse-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.sidebar-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
}
.sidebar-cats { padding: 8px; }
.sidebar-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background .15s, color .15s;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font);
}
.sidebar-cat-btn:hover { background: var(--gray-50); }
.sidebar-cat-btn.active { background: rgba(221,175,108,.08); }
.sidebar-cat-btn.active .scb-name { color: var(--gold-500); font-weight: 700; }
.sidebar-cat-btn.active .scb-icon-wrap { background: rgba(221,175,108,.12); }
.scb-icon-wrap {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: background .15s;
}
.scb-text { flex: 1; }
.scb-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.2;
}
.scb-count {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 1px;
}
.scb-arrow {
  color: var(--gray-300);
  font-size: 14px;
  flex-shrink: 0;
}
.sidebar-cat-btn.active .scb-arrow { color: var(--gold-400); }

.sidebar-wa {
  padding: 12px;
  border-top: 1px solid var(--gray-100);
}
.sidebar-wa-btn {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-d));
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: opacity .2s, transform .2s;
}
.sidebar-wa-btn:hover { opacity: .92; transform: translateY(-1px); }

/* Browse content area */
.browse-content { min-width: 0; }
.browse-cat-section {
  margin-bottom: 52px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}
.browse-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-200);
}
.browse-cat-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  background: var(--gray-100);
  flex-shrink: 0;
}
.browse-cat-title { font-size: 20px; font-weight: 800; color: var(--gray-900); margin: 0; }
.browse-cat-sub { font-size: 13px; color: var(--gray-400); margin: 2px 0 0; }
.browse-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ===== ADD TO QUOTE / PRODUCT CARD FOOTER ===== */
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.btn-add-quote {
  width: 100%;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  border: 2px solid var(--gold-500);
  color: var(--gold-600);
  background: rgba(221,175,108,.04);
  font-family: var(--font);
  transition: all .2s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.btn-add-quote:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--sh-gold);
  transform: translateY(-1px);
}
.btn-add-quote.added {
  background: #F0FDF4;
  border-color: #22C55E;
  color: #16A34A;
}
.btn-add-quote.added:hover {
  background: #22C55E;
  color: white;
  box-shadow: 0 6px 20px rgba(34,197,94,.3);
}
.btn-check-avail {
  width: 100%;
  padding: 9px 14px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  font-family: var(--font);
  transition: all .2s;
}
.btn-check-avail:hover { background: var(--gray-200); color: var(--gray-800); }

/* "Added!" ripple */
@keyframes addedPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.btn-add-quote.pop { animation: addedPop .3s var(--ease-spring); }

/* ===== QUOTE CART FLOATING BUTTON ===== */
.cart-float {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 997;
  display: none; /* shown via JS when items exist, always on products page */
}
.cart-float.visible { display: block; }
.cart-float-btn {
  position: relative;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-xl);
  border: 2px solid rgba(255,255,255,.1);
  font-family: var(--font);
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.cart-float-btn:hover { transform: scale(1.08); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.cart-float-btn svg { width: 24px; height: 24px; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  border-radius: 11px;
  font-size: 12px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(249,115,22,.5);
  border: 2px solid white;
  animation: badgePop .3s var(--ease-spring);
}
@keyframes badgePop {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}
.cart-float-label {
  position: absolute;
  left: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s .1s;
  box-shadow: var(--sh-md);
}
.cart-float:hover .cart-float-label { opacity: 1; }

/* ===== QUOTE CART PANEL ===== */
.qc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1099;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.qc-overlay.open { opacity: 1; pointer-events: all; }

.qc-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 95vw;
  background: var(--white);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .35s var(--ease-out);
}
.qc-panel.open { transform: translateX(0); }

.qc-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: var(--gray-50);
}
.qc-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 10px;
}
.qc-title-count {
  font-size: 12px;
  font-weight: 700;
  background: var(--orange-500);
  color: white;
  padding: 2px 8px;
  border-radius: var(--r-full);
}
.qc-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  border: none;
  font-family: var(--font);
  transition: background .2s, color .2s;
}
.qc-close:hover { background: var(--gray-300); color: var(--gray-900); }

.qc-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.qc-body::-webkit-scrollbar { width: 4px; }
.qc-body::-webkit-scrollbar-track { background: transparent; }
.qc-body::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }

.qc-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  color: var(--gray-400);
}
.qc-empty-icon { font-size: 52px; margin-bottom: 16px; opacity: .5; }
.qc-empty-title { font-size: 16px; font-weight: 700; color: var(--gray-500); margin-bottom: 8px; }
.qc-empty-sub { font-size: 13px; color: var(--gray-400); line-height: 1.6; }

.qc-items-list { display: flex; flex-direction: column; gap: 12px; }
.qc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: border-color .2s;
}
.qc-item:hover { border-color: var(--gray-300); }
.qc-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.qc-item-info { flex: 1; min-width: 0; }
.qc-item-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue-500);
  margin-bottom: 3px;
}
.qc-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 8px;
}
.qc-qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.qc-qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: background .15s, color .15s;
  line-height: 1;
}
.qc-qty-btn:hover { background: var(--gray-300); color: var(--gray-900); }
.qc-qty-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--gray-900);
  min-width: 22px;
  text-align: center;
}
.qc-item-remove {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--gray-400);
  font-size: 14px;
  transition: background .15s, color .15s;
  border: none;
  background: none;
  font-family: var(--font);
}
.qc-item-remove:hover { background: #FEE2E2; color: #EF4444; }

/* Cart footer */
.qc-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
  background: var(--gray-50);
}
.qc-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.qc-summary-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
}
.qc-summary-count {
  font-size: 13px;
  color: var(--gray-500);
}
.qc-clear-btn {
  font-size: 12px;
  color: var(--gray-400);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: none;
  font-family: var(--font);
  transition: color .15s;
}
.qc-clear-btn:hover { color: #EF4444; }

.qc-actions { display: flex; flex-direction: column; gap: 10px; }
.qc-submit-wa {
  width: 100%;
  padding: 14px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-d));
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  box-shadow: var(--sh-wa);
  transition: opacity .2s, transform .2s;
}
.qc-submit-wa:hover { opacity: .92; transform: translateY(-1px); }

.qc-submit-email {
  width: 100%;
  padding: 12px;
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  font-family: var(--font);
  transition: border-color .2s, background .2s, color .2s;
}
.qc-submit-email:hover { border-color: var(--blue-500); color: var(--blue-500); background: rgba(14,165,233,.03); }

.qc-note {
  font-size: 11px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== INSTAGRAM ICON IN FOOTER ===== */
.footer-social-instagram:hover { background: rgba(225,48,108,.2); }

/* ===== RESPONSIVE: browse layout ===== */
@media (max-width: 900px) {
  .browse-layout { grid-template-columns: 1fr; }
  .browse-sidebar { position: static; }
  .browse-products-grid { grid-template-columns: repeat(2, 1fr); }
  .qc-panel { width: 100%; max-width: 100%; }
}
@media (max-width: 520px) {
  .browse-products-grid { grid-template-columns: 1fr; }
  .cart-float { left: 16px; bottom: 20px; }
}

/* ===== HERO SLIDER CAROUSEL ===== */
/* ===== HERO SLIDER CAROUSEL (Full Screen Background) ===== */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slides-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.06);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transform: scale(1.01);
}

.hero-slider-dots-wrap {
  margin-top: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 5;
}

.hero-slider-dots {
  display: flex;
  gap: 10px;
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-slider-dots .dot.active {
  background: var(--gold-500);
  width: 24px;
  border-radius: 4px;
}

/* Centered Hero Animations for Text */
.slide-up-anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up-anim.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Custom animation delays for premium staggered entry */
#hero-active-badge {
  transition-delay: 0s;
}
#hero-active-title {
  transition-delay: 0.15s;
}
#hero-active-subtitle {
  transition-delay: 0.3s;
}
#hero-active-cta {
  transition-delay: 0.45s;
}

/* Floating Quote Button and Variant Selectors styling */
.floating-quote-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-950);
  border: 1px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--sh-gold-sm);
  transition: all 0.2s ease;
  opacity: 0;
  transform: scale(0.8);
  z-index: 10;
}
.product-card:hover .floating-quote-btn {
  opacity: 1;
  transform: scale(1);
}
.floating-quote-btn:hover {
  background: var(--navy-950);
  color: var(--gold-300);
  border-color: var(--navy-950);
  transform: scale(1.1) !important;
}
.floating-quote-btn.added {
  background: #22C55E;
  color: white;
  border-color: #22C55E;
  opacity: 1;
  transform: scale(1);
}
.floating-quote-btn.added:hover {
  background: #16A34A;
  border-color: #16A34A;
}

@media (max-width: 1024px) {
  .floating-quote-btn {
    opacity: 1;
    transform: scale(1);
  }
}

/* Variant Selectors inside Card */
.variant-selectors {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 10px 0;
  padding: 6px 0;
  border-top: 1px dashed var(--gray-100);
  border-bottom: 1px dashed var(--gray-100);
}
.selector-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.selector-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-400);
  width: 38px;
  letter-spacing: 0.05em;
}
.selector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pill-btn {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.pill-btn:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}
.pill-btn.active {
  background: var(--blue-50);
  border-color: var(--blue-500);
  color: var(--blue-600);
  font-weight: 700;
}
.stock-status-badge {
  font-size: 11px;
  font-weight: 600;
}
.stock-status-badge.in-stock {
  color: #16A34A;
}
.stock-status-badge.out-of-stock {
  color: #DC2626;
}

/* B2B Spec Table Styles */
#tableProductsBody tr:hover {
  background: var(--gray-50);
}
#tableProductsBody tr.row-in-cart {
  background: #F0FDF4;
}
#tableProductsBody tr.row-in-cart:hover {
  background: #DCFCE7;
}

/* Catalog Layout with Filter Sidebar */
.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 16px;
}
.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  padding: 20px;
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
}
.catalog-sidebar::-webkit-scrollbar {
  width: 5px;
}
.catalog-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.catalog-sidebar::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}
.catalog-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}
.catalog-sidebar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.catalog-sidebar-title button {
  background: none;
  border: none;
  font-size: 11px;
  color: var(--blue-500);
  cursor: pointer;
  font-weight: 600;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.catalog-sidebar-title button:hover {
  text-decoration: underline;
}
.filter-group {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.filter-group-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}
.filter-options::-webkit-scrollbar {
  width: 4px;
}
.filter-options::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 2px;
}
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-600);
  cursor: pointer;
  user-select: none;
  padding: 2px 0;
}
.filter-option:hover {
  color: var(--navy-900);
}
.filter-option-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-option input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  border: 1.5px solid var(--gray-300);
  cursor: pointer;
  accent-color: var(--gold-500);
}
.filter-option-count {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .catalog-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 12px;
    max-height: none;
    overflow-y: visible;
  }
}

/* ===== BRAND VIDEO SHOWCASE ===== */
.brand-showcase {
  background: var(--navy-950);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(221, 175, 108, 0.1);
  border-bottom: 1px solid rgba(221, 175, 108, 0.1);
}
.brand-showcase-container {
  max-width: 960px;
  margin: 0 auto;
}
.brand-video-wrapper {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: #010610;
  border: 1.5px solid rgba(221, 175, 108, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(221, 175, 108, 0.1);
  aspect-ratio: 16/9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-video-wrapper:hover {
  border-color: rgba(221, 175, 108, 0.65);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(221, 175, 108, 0.2);
}
.brand-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.brand-video-element.fade-out {
  opacity: 0;
}
.brand-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(1, 6, 16, 0.95), transparent);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}
.brand-video-wrapper:hover .brand-video-controls {
  opacity: 1;
  transform: translateY(0);
}
.brand-video-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(221, 175, 108, 0.25);
  color: var(--gold-400);
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.brand-video-btn:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  border-color: var(--gold-500);
  transform: scale(1.05);
}
.brand-video-progress {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.brand-video-progress-bar {
  height: 100%;
  width: 0;
  background: var(--gold-gradient);
  border-radius: var(--r-full);
  transition: width 0.1s linear;
}
.brand-video-time {
  font-family: var(--font-mono, monospace);
  font-size: 13px;
  color: var(--gold-300);
  min-width: 85px;
  text-align: right;
}
.brand-video-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.brand-video-indicator {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(221, 175, 108, 0.1);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all 0.3s ease;
}
.brand-video-indicator.active {
  color: var(--navy-950);
  background: var(--gold-gradient);
  border-color: var(--gold-400);
  box-shadow: var(--sh-gold-sm);
}
.brand-video-indicator:hover:not(.active) {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(221, 175, 108, 0.3);
}

/* Watermark cover badge styles */
.video-watermark-cover {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 90px;
  height: 90px;
  background: var(--gold-gradient);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  box-shadow: var(--sh-gold-sm);
  border: 3px solid var(--white);
  z-index: 5;
  pointer-events: none;
  font-family: var(--font-heading);
  text-transform: uppercase;
}
.video-watermark-cover .cover-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--navy-950);
}
.video-watermark-cover .cover-year {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: var(--navy-950);
}

/* Floating Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-950);
  border: 1.5px solid var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(2, 11, 28, 0.25), var(--sh-gold-sm);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(221, 175, 108, 0.4), var(--sh-gold-lg);
  color: var(--navy-900);
}
.scroll-to-top:active {
  transform: scale(0.95);
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
  transition: transform 0.25s ease;
}
.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* ==========================================================================
   UI ENHANCEMENTS: SEARCH, LOGO REDESIGN, DROPDOWN FILTERS & AIRBNB STICKY BAR
   ========================================================================== */

/* Logo Redesign & Tooltip */
.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-cropped {
  width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(221, 175, 108, 0.45);
  background: #020917;
}
.logo-cropped img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* B2B temporarily hidden from all menus (page kept in codebase, just unlinked).
   To bring it back, delete this rule. */
.nav a[href="b2b.html"],
.mobile-nav a[href="b2b.html"],
.footer-links a[href="b2b.html"] { display: none !important; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-400);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 16px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.logo-popup {
  position: absolute;
  top: 100%;
  left: 0;
  width: 320px;
  background: #020917;
  border: 1.5px solid var(--gold-400);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(221, 175, 108, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1200;
  margin-top: 8px;
}
.logo-wrapper:hover .logo-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.logo-popup img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Header Search Form */
.header-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(221, 175, 108, 0.2);
  border-radius: 50px;
  padding: 2px 6px 2px 14px;
  width: 180px;
  transition: all 0.3s ease;
  margin-left: 12px;
}
.header-search-form:focus-within {
  width: 230px;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-400);
  box-shadow: 0 0 10px rgba(221, 175, 108, 0.15);
}
.header-search-form input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--gray-100);
  font-size: 13px;
  width: 100%;
  font-family: var(--font);
}
.header-search-form input::placeholder {
  color: var(--gray-500);
}
.header-search-form button {
  background: transparent;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.2s;
}
.header-search-form button:hover {
  color: var(--gold-400);
  background: rgba(221, 175, 108, 0.1);
}

/* Filters Dropdown Styles */
.filter-dropdown-wrapper {
  position: relative;
  display: none; /* Controlled via JS */
  margin-right: 12px;
  z-index: 1020;
}
.filter-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  padding: 8px 16px;
  border-radius: var(--r-lg);
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-dropdown-toggle:hover {
  border-color: var(--gold-400);
  background: var(--gray-50);
}
.filter-dropdown-toggle .filter-badge {
  background: var(--gold-gradient);
  color: var(--navy-950);
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.catalog-sidebar.dropdown-sidebar {
  position: absolute !important;
  top: 100%;
  right: 0 !important;
  left: auto !important;
  width: 320px;
  max-height: 480px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 20px;
  z-index: 1100;
  margin-top: 8px;
  display: none;
  overflow-y: auto;
}
.catalog-layout.full-width {
  grid-template-columns: 1fr !important;
}

/* ============================================================
   CATALOG — overflow safety + mobile-optimized toolbar/filters
   ============================================================ */

/* Allow grid/flex children to shrink below their content size so a
   single 1fr track never blows out wider than the viewport. */
.catalog-layout { min-width: 0; }
.catalog-sidebar,
.catalog-content,
#viewGrid, #viewBrowse, #viewTable,
.products-grid, .browse-products-grid,
.product-card { min-width: 0; }
.product-card img,
.product-img-wrap img { max-width: 100%; height: auto; }
.product-img-placeholder { font-size: clamp(28px, 7vw, 40px); }

/* Tablet & mobile: collapse the catalog toolbar into clean stacked rows */
@media (max-width: 900px) {
  .products-toolbar {
    gap: 10px;
    margin-bottom: 22px;
  }
  /* Full-width search on its own row */
  .search-bar {
    flex: 1 1 100%;
    min-width: 0;
  }
  /* Full-width segmented view switcher */
  .view-toggle {
    order: 1;
    flex: 1 1 100%;
    width: 100%;
  }
  .view-toggle-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
    font-size: 11.5px;
    padding: 9px 6px;
    line-height: 1.2;
  }
  .view-toggle-btn svg { flex: 0 0 auto; }
  /* Prominent full-width "Filters" dropdown button (shown via JS in grid view) */
  .filter-dropdown-wrapper {
    order: 2;
    flex: 1 1 100%;
    margin-right: 0;
  }
  .filter-dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 11px 16px;
  }
  /* The "Can't Find It?" button is redundant on mobile (floating WhatsApp +
     the banner below cover it) — hide to declutter the toolbar */
  .products-toolbar > .btn-wa { display: none; }
}

/* Make the filters dropdown panel fit small screens */
@media (max-width: 600px) {
  .catalog-sidebar.dropdown-sidebar {
    width: calc(100vw - 24px);
    max-width: 360px;
    right: 0;
    left: auto !important;
    max-height: 70vh;
  }
}

/* ============================================================
   SPEC TABLE — per-column autofilter (funnel button + dropdown)
   ============================================================ */
.th-flex { display: inline-flex; align-items: center; gap: 6px; }
.col-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  flex: 0 0 auto;
  border: 1px solid var(--gray-300);
  border-radius: 5px;
  background: var(--white);
  color: var(--gray-500);
  cursor: pointer;
  transition: all .15s ease;
}
.col-filter-btn:hover { border-color: var(--gold-400); color: var(--gold-600); background: var(--gray-50); }
.col-filter-btn.active {
  background: var(--gold-gradient);
  border-color: var(--gold-500);
  color: var(--navy-950);
}
.col-filter-dropdown {
  position: absolute;
  z-index: 1200;
  display: none;
  width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(2, 11, 28, .18);
  padding: 12px;
  font-family: var(--font);
}
.cfd-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.cfd-clear {
  background: none;
  border: none;
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0;
}
.cfd-clear:hover { text-decoration: underline; }
.cfd-search {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: 13px;
  font-family: var(--font);
  outline: none;
  margin-bottom: 8px;
}
.cfd-search:focus { border-color: var(--gold-400); }
.cfd-list {
  max-height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cfd-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  padding: 4px;
  border-radius: 6px;
  cursor: pointer;
}
.cfd-opt:hover { background: var(--gray-50); }
.cfd-opt input { accent-color: var(--gold-500); cursor: pointer; flex: 0 0 auto; }
.cfd-val { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-transform: none; }
.cfd-count { font-size: 11px; color: var(--gray-400); font-weight: 600; }
.cfd-all {
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 8px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* Airbnb-style Sticky Bar */
.airbnb-sticky-bar {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  left: 50%;
  transform: translate(-50%, -100px);
  background: rgba(2, 11, 28, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1.5px solid rgba(221, 175, 108, 0.4);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(2, 11, 28, 0.5), 0 0 15px rgba(221, 175, 108, 0.15);
  padding: 4px 6px 4px 18px;
  display: flex;
  align-items: center;
  z-index: 1050;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.airbnb-sticky-bar.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.airbnb-sticky-bar:hover {
  border-color: var(--gold-400);
  box-shadow: 0 12px 35px rgba(2, 11, 28, 0.6), 0 0 20px rgba(221, 175, 108, 0.25);
  background: rgba(2, 11, 28, 0.9);
}
.airbnb-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.airbnb-section {
  display: flex;
  flex-direction: column;
}
.airbnb-section .label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-400);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.airbnb-section .value {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-100);
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.airbnb-divider {
  width: 1px;
  height: 24px;
  background: rgba(221, 175, 108, 0.2);
}
.airbnb-search-btn {
  background: var(--gold-gradient);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  cursor: pointer;
  transition: transform 0.2s;
}
.airbnb-search-btn:hover {
  transform: scale(1.08);
}

/* Hide Tags on scroll down */
.filter-tags {
  transition: all 0.3s ease;
}
.filter-tags.hide-tags {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

@media (max-width: 991px) {
  .header-search-form {
    display: none; /* Handled in mobile menu */
  }
}

/* Mobile Responsiveness & Layout Enhancements */
@media (max-width: 768px) {
  .logo-popup {
    display: none !important; /* Hide popup to prevent hidden width overflow */
  }
}

@media (max-width: 600px) {
  /* Prevent horizontal scrolling globally */
  html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Force 2 products per row on mobile for both grids */
  .products-grid, .browse-products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  /* Optimize product cards for compact grid */
  .product-card {
    border-radius: var(--r-lg) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05) !important;
  }
  .product-body {
    padding: 10px !important;
  }
  .product-name {
    font-size: 13px !important;
    margin-bottom: 6px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em; /* Keep uniform height */
    line-height: 1.3;
  }
  .product-cat {
    font-size: 9px !important;
    margin-bottom: 4px !important;
  }
  .product-spec-row {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }
  
  /* Adjust variations selectors inside card */
  .product-var-select {
    padding: 4px 6px !important;
    font-size: 11px !important;
  }
  
  /* Floating cart button inside card */
  .floating-quote-btn {
    width: 30px !important;
    height: 30px !important;
    top: 8px !important;
    right: 8px !important;
  }
  
  /* Categories horizontal scroller instead of vertical list */
  .filter-tags {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    padding-bottom: 8px !important;
    gap: 8px !important;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tag {
    white-space: nowrap !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
  }
  
  /* Airbnb Sticky Bar sizing on mobile */
  .airbnb-sticky-bar {
    width: calc(100% - 32px) !important;
    max-width: 360px !important;
    top: calc(var(--header-h) + 10px) !important;
    padding: 4px 6px 4px 14px !important;
  }
  .airbnb-inner {
    gap: 8px !important;
    width: 100% !important;
    justify-content: space-between !important;
  }
  .airbnb-section .label {
    font-size: 8px !important;
  }
  .airbnb-section .value {
    font-size: 11px !important;
    max-width: 90px !important;
  }
  .airbnb-divider {
    height: 18px !important;
  }
  .airbnb-search-btn {
    width: 30px !important;
    height: 30px !important;
  }
}




/* ============================================================
   BLOG (public)
   ============================================================ */
.blog-section { padding: clamp(40px, 6vw, 80px) 0; background: #f9f8f6; min-height: 50vh; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-empty { grid-column: 1 / -1; text-align: center; color: var(--gray-500); padding: 60px 20px; font-size: 15px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden; text-decoration: none;
  box-shadow: 0 6px 20px rgba(2,11,28,.06);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold-400); box-shadow: 0 20px 44px rgba(2,11,28,.14); }
.blog-card-media { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(160deg,#0C1E3A,#020B1C); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-spring); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; opacity: .5; }
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-tag {
  align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--gold-600); background: rgba(221,175,108,.1); border: 1px solid rgba(221,175,108,.25);
  padding: 3px 9px; border-radius: var(--r-full); margin-bottom: 12px;
}
.blog-card-title { font-size: 18px; font-weight: 800; color: var(--navy-900); line-height: 1.3; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 14px; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; flex-grow: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-meta { font-size: 12.5px; color: var(--gray-400); font-weight: 600; }

/* Single post */
.blog-post-section { padding: clamp(36px, 5vw, 70px) 0; background: #fff; }
.blog-post { max-width: 760px; margin: 0 auto; }
.blog-post-head { margin-bottom: 28px; }
.blog-back { display: inline-block; font-size: 13px; font-weight: 700; color: var(--gold-600); text-decoration: none; margin-bottom: 18px; }
.blog-back:hover { color: var(--gold-dark); }
.blog-post-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--navy-950); line-height: 1.15; margin: 10px 0 12px; }
.blog-post-meta { font-size: 14px; color: var(--gray-500); font-weight: 600; }
.blog-post-cover { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 32px; box-shadow: var(--sh-lg); }
.blog-post-cover img { width: 100%; display: block; }
.blog-post-body { font-size: 17px; line-height: 1.85; color: var(--gray-700); }
.blog-post-body h2 { font-size: 26px; font-weight: 800; color: var(--navy-900); margin: 36px 0 14px; }
.blog-post-body h3 { font-size: 21px; font-weight: 700; color: var(--navy-900); margin: 28px 0 12px; }
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol { margin: 0 0 20px 24px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body img { max-width: 100%; height: auto; border-radius: var(--r-lg); margin: 24px 0; }
.blog-post-body a { color: var(--gold-600); text-decoration: underline; }
.blog-post-body blockquote { border-left: 3px solid var(--gold-500); padding: 6px 0 6px 20px; margin: 24px 0; color: var(--gray-600); font-style: italic; }
.blog-post-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--gray-200); }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Quote cart — email request form */
.qc-or { display:flex; align-items:center; text-align:center; gap:10px; margin:16px 0 12px; color:var(--gray-400); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; }
.qc-or::before, .qc-or::after { content:''; flex:1; height:1px; background:var(--gray-200); }
.qc-email-form { display:flex; flex-direction:column; gap:10px; }
.qc-input { width:100%; padding:11px 14px; border:1.5px solid var(--gray-200); border-radius:var(--r-md); font-size:14px; font-family:var(--font); color:var(--gray-800); outline:none; transition:border-color .2s; }
.qc-input:focus { border-color:var(--gold-400); box-shadow:0 0 0 3px rgba(221,175,108,.12); }
.qc-turnstile { display:flex; justify-content:center; }
.qc-status { font-size:13px; font-weight:600; text-align:center; min-height:18px; }

/* ===== TOAST ===== */
.toast-host {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 2000; display: flex; flex-direction: column; gap: 10px; align-items: center;
  pointer-events: none; width: max-content; max-width: 92vw;
}
.toast {
  display: flex; align-items: center; gap: 11px;
  background: #071329; color: #fff;
  border: 1px solid rgba(221,175,108,.4); border-radius: 12px;
  padding: 14px 20px; font-size: 14px; font-weight: 600; line-height: 1.4;
  box-shadow: 0 14px 44px rgba(2,11,28,.45);
  opacity: 0; transform: translateY(16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease-spring);
  pointer-events: auto; max-width: 460px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast-icon {
  display: inline-flex; width: 22px; height: 22px; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--gold-gradient); color: var(--navy-950);
  font-size: 13px; font-weight: 800; flex: 0 0 auto;
}
.toast-error { border-color: rgba(220,38,38,.55); }
.toast-error .toast-icon { background: #DC2626; color: #fff; }
@media (max-width: 520px) { .toast-host { bottom: 90px; } }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-section { padding: calc(var(--header-h) + 32px) 0 64px; background: #f9f8f6; min-height: 70vh; }
.pd-empty { text-align: center; color: var(--gray-500); padding: 80px 20px; font-size: 16px; }
.pd-empty a { color: var(--gold-600); font-weight: 700; }
.pd-breadcrumb { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.pd-breadcrumb a { color: var(--gray-600); text-decoration: none; }
.pd-breadcrumb a:hover { color: var(--gold-600); }
.pd-breadcrumb span { color: var(--gray-300); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

/* Gallery */
.pd-gallery { position: sticky; top: calc(var(--header-h) + 20px); }
.pd-main {
  aspect-ratio: 4/3; background: linear-gradient(160deg, #0C1E3A, #020B1C);
  border-radius: var(--r-2xl); overflow: hidden; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(221,175,108,.2); box-shadow: var(--sh-lg);
}
.pd-main img { width: 100%; height: 100%; object-fit: contain; }
.pd-noimg { font-size: 96px; opacity: .55; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pd-thumb {
  width: 74px; height: 74px; border-radius: var(--r-md); overflow: hidden; padding: 0;
  border: 2px solid var(--gray-200); background: #fff; cursor: pointer; transition: border-color .2s;
}
.pd-thumb.active, .pd-thumb:hover { border-color: var(--gold-500); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Info */
.pd-cat {
  display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: var(--gold-600); text-decoration: none; margin-bottom: 12px;
}
.pd-cat:hover { color: var(--gold-dark); }
.pd-title { font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: var(--navy-950); line-height: 1.2; margin-bottom: 16px; word-break: break-word; }
.pd-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.pd-stock { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: var(--r-full); }
.pd-stock.in { background: #F0FDF4; color: #16A34A; }
.pd-stock.out { background: #FEF2F2; color: #DC2626; }
.pd-spec {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--gold-600); background: rgba(221,175,108,.08); border: 1px solid rgba(221,175,108,.3);
  padding: 6px 12px; border-radius: var(--r-full);
}
.pd-desc { font-size: 15px; line-height: 1.75; color: var(--gray-600); margin-bottom: 28px; }
.pd-desc.pd-muted { color: var(--gray-500); }
.pd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.pd-actions .btn { flex: 1 1 auto; justify-content: center; }
.pd-meta {
  border-top: 1px solid var(--gray-200); padding-top: 20px; display: flex; flex-direction: column; gap: 14px; margin: 0;
}
.pd-meta > div { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }
.pd-meta dt { color: var(--gray-500); font-weight: 600; margin: 0; }
.pd-meta dd { color: var(--navy-900); font-weight: 700; margin: 0; text-align: right; word-break: break-word; }
.pd-back { margin-top: 40px; }
.pd-back a { color: var(--gold-600); font-weight: 700; text-decoration: none; font-size: 14px; }
.pd-back a:hover { color: var(--gold-dark); }

@media (max-width: 860px) {
  .pd-grid { grid-template-columns: 1fr; gap: 26px; }
  .pd-gallery { position: static; }
}

/* Product card real image */
.product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.product-card:hover .product-img { transform: scale(1.05); }
