/* ============================================================
   GMC Ltd - Guru Motorcycles Kenya
   Main Stylesheet — Pure CSS, No Dependencies
   Target: 90+ PageSpeed, Mobile-First, Accessible
   ============================================================ */

/* ──────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --color-primary: #000;
  --color-primary-dark: #000001;
  --color-primary-light: #2a4e7e;
  --color-secondary: #333;
  --color-secondary-dark: #666;
  --color-accent: #DC2626 !;
  --color-accent: #DC2626 !i;
  --color-accent: #989898 !important;
  --color-warning:       #D97706;

  /* Neutrals */
  --color-dark:         #0D1B2A;
  --color-text:         #1a1a1a;
  --color-text-muted:   #6B7280;
  --color-text-light:   #9CA3AF;
  --color-bg: #fff;
  --color-bg-alt: #fff;
  --color-white:        #FFFFFF;
  --color-border:       #E5E7EB;
  --color-border-dark:  #D1D5DB;

  /* Typography */
  --font-heading: 'Rajdhani', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Sizing */
  --container-max: 1280px;
  --header-h:      64px;
  --topbar-h: 27px;
  --nav-h: 36px;
  --radius-sm:     4px;
  --radius: 4px;
  --radius-lg: 4px;
  --radius-xl:     20px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 12px rgba(0,0,0,.1);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.15);

  /* Transitions */
  --transition:  150ms ease;
  --transition-slow: 300ms ease;

  /* Z-index scale */
  --z-sticky:   100;
  --z-dropdown: 200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;
}


.gmc-chat-desc {
    font-size: 14px !important;!i;!;
    color: #444;
    line-height: normal;
    margin: 0 0 8px;
}

.gmc-chat-tagline {
    font-size: 15px !important;!i;!;
    font-weight: 700;
    color: #000;
    margin: 0 0 4px;
    line-height: normal;
}

.gmc-chat-hours {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
    padding: 5px 8px;
    background: #f5f5f5;
    border-radius: 5px;
    display: none !important;!i;!;
}


.related-products .section-header{
    margin-top: 8px !important;!im;!i;!;
}

/* ──────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.2; font-weight: 700; color: var(--color-primary); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ──────────────────────────────────────────
   LAYOUT
   ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container {padding: 0 20px;} }

.section { padding: 48px 0; }
.section--lg { padding: 72px 0; }
@media (min-width: 768px) { .section { padding: 64px 0; } .section--lg { padding: 96px 0; } }

/* ──────────────────────────────────────────
   TOP BAR
   ────────────────────────────────────────── */
.top-bar {
  background: #fff;
  color: #334155;
  font-size: 12px;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar__left, .top-bar__right { display: flex; align-items: center; gap: 16px; }
.top-bar__item { display: flex; align-items: center; gap: 6px; }
.top-bar__item a { color: inherit; transition: color var(--transition); }
.top-bar__item a:hover { color: var(--color-primary); }
.top-bar__item--link { color: #0f4c81; font-weight: 600; }
.top-bar__item--link:hover { color: var(--color-primary); }
@media (max-width: 639px) { .top-bar__item--hide-mobile { display: none; } .top-bar__right { gap: 8px; } }
@media (max-width: 767px) { .top-bar { display: none; } }

/* ──────────────────────────────────────────
   HEADER
   ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0px;
  height: var(--header-h);
}

.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo img {height: 38px;width: auto;}

.header__search {
  width: 100%;
  max-width: 560px;
  justify-self: center;
  display: flex;
  align-items: center;
  background: var(--color-bg);
  border: 2px solid #e9e9e9;
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: border-color var(--transition);
}
.header__search:focus-within { border-color: var(--color-primary); }
.header__search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
}
.header__search input::placeholder { color: var(--color-text-light); }
.header__search button {
  padding: 8px 16px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  transition: background var(--transition);
  display: flex; align-items: center;
}
.header__search button:hover { background: var(--color-secondary); }

.header__actions { display: flex; align-items: center; gap: 4px; justify-self: end; }
.header__action-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 10px;
  color: var(--color-primary);
  font-size: 11px; font-weight: 500;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.header__action-btn:hover { background: var(--color-bg); color: var(--color-secondary); }
.header__action-label { display: none; }
@media (min-width: 1024px) { .header__action-label { display: block; } }

.header__cart-btn { position: relative; }
.header__cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--color-secondary);
  color: #fff; font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.header__cart-count:empty, .header__cart-count[data-count="0"] { display: none; }

.header__mobile-toggle {
  display: none; padding: 8px;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .header__mobile-toggle { display: flex; align-items: center; }
  .header__search { display: none; }
}

.hamburger { width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.header__mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.header__mobile-toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ──────────────────────────────────────────
   MAIN NAVIGATION
   ────────────────────────────────────────── */
.main-nav {
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Improved shadow */
  box-shadow: unset;
}
.main-nav .container { display: flex; align-items: center; justify-content: space-between; }
.main-nav__list { display: flex; align-items: center; height: var(--nav-h); gap: 6px; margin: 0; padding: 0; list-style: none; }
.main-nav__item { position: relative; display: flex; align-items: center; }
.main-nav__link {
  display: flex; align-items: center; gap: 6px;
  height: calc(var(--nav-h) - 12px); padding: 0 16px;
  color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease-in-out;
  white-space: nowrap; text-decoration: none;
}
.main-nav__link:hover, .main-nav__link:focus, .main-nav__link--active { color: #fff; background: rgba(255,255,255,.15); }
.main-nav__link--has-dropdown svg { transition: transform 0.3s ease; opacity: 0.8; }
.main-nav__item:hover .main-nav__link--has-dropdown svg, .main-nav__link--has-dropdown:focus svg { transform: rotate(180deg); opacity: 1; }

/* ──────────────────────────────────────────
   DROPDOWN NAV
   ────────────────────────────────────────── */
.nav-dropdown {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  min-width: 240px;
  background: var(--color-white);
  border-radius: 3px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-secondary);
  z-index: var(--z-dropdown);
  padding: 0px 10px;
  list-style: none;
  margin: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  transition: unset;
  box-shadow: unset;
}
/* open on hover (desktop) or .is-open (JS / mobile) */
.main-nav__item--has-dropdown:hover .nav-dropdown,
.main-nav__item--has-dropdown:focus-within .nav-dropdown,
.main-nav__item--has-dropdown .nav-dropdown.is-open {visibility: visible;opacity: 1;top: calc(100% + 7px);pointer-events: auto;}

.nav-dropdown__item {
  display: flex;
  align-items: center;
  padding: 4px 2px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  text-decoration: none;
  transition: unset;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-dropdown__item:hover, .nav-dropdown__item:focus {
  background: var(--color-bg);
  color: var(--color-primary);
  padding-left: 4px;
}

/* Mega Menu Dropdown Setup */
.nav-dropdown--mega {
  min-width: 800px;
  left: 0;
  transform: none;
  padding: 1px 0;
}
.main-nav__item--has-dropdown:hover .nav-dropdown--mega,
.main-nav__item--has-dropdown:focus-within .nav-dropdown--mega,
.nav-dropdown--mega.is-open {
  transform: none;
}
.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px 10px;
  padding: 0 10px;
}
.nav-dropdown__footer {
  display: block;
}

.nav-dropdown__divider {
  height: 1px;
  background: var(--color-border);
  margin: 12px 10px 8px;
  display: none;
}
.nav-dropdown__all {
  font-weight: 700;
  color: var(--color-secondary) !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-left: 10px;
}
.nav-dropdown__all:hover { padding-left: 24px !important; gap: 8px; }

/* Mobile Search in Nav */
.mobile-search { display: none; padding: 16px; background: rgba(0,0,0,0.05); }
.mobile-search form { display: flex; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); overflow: hidden; background: rgba(255,255,255,.1); }
.mobile-search input { flex: 1; background: transparent; border: none; padding: 12px 16px; color: #fff; font-size: 15px; outline: none; }
.mobile-search input::placeholder { color: rgba(255,255,255,.6); }
.mobile-search button { padding: 8px 16px; color: #fff; background: transparent; border: none; cursor: pointer; transition: background 0.2s ease; }
.mobile-search button:hover { background: rgba(255,255,255,0.1); }

/* ── Mobile Nav ── */
@media (max-width: 767px) {
  .main-nav { display: none; }
  .main-nav.is-open {
    display: block;
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h));
    left: 0; right: 0; bottom: 0;
    overflow-y: auto;
    background: var(--color-primary);
    box-shadow: inset 0 5px 10px rgba(0,0,0,0.1);
    z-index: var(--z-overlay);
  }
  .main-nav .container { display: block; padding: 0; }
  .main-nav__list { flex-direction: column; height: auto; align-items: stretch; gap: 0; padding-bottom: 24px; }
  .main-nav__item { display: block; border-bottom: 1px solid rgba(255,255,255,.06); }
  .main-nav__link {
    height: auto;
    padding: 16px 24px;
    border-radius: 0;
    justify-content: space-between;
    font-size: 15px;
  }
  .mobile-search { display: block; }

  /* Mobile dropdown — inline accordion */
  .nav-dropdown {
    visibility: visible;
    opacity: 1;
    display: none;
    position: static;
    top: auto;
    transform: none;
    box-shadow: inset 0 3px 6px rgba(0,0,0,0.05);
    border: none;
    border-radius: 0;
    background: rgba(0,0,0,.2);
    padding: 8px 0;
    min-width: 0;
    pointer-events: auto;
  }
  .main-nav__item--has-dropdown:hover .nav-dropdown,
  .main-nav__item--has-dropdown:focus-within .nav-dropdown { display: none; } /* disable hover on mobile */
  .nav-dropdown.is-open { display: block; }

  /* Mobile Mega Menu handling */
  .nav-dropdown--mega {
    transform: none;
    left: auto;
    min-width: 0;
    padding: 8px 0;
  }
  .nav-dropdown.nav-dropdown--mega.is-open {
    transform: none;
  }
  .nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    padding: 0;
  }

  .nav-dropdown__item {
    padding: 10px 32px;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
  .nav-dropdown__item:hover, .nav-dropdown__item:focus {
    background: rgba(255,255,255,.05);
    color: #fff;
    padding-left: 36px;
  }
  .nav-dropdown__divider { background: rgba(255,255,255,.1); margin: 8px 0; }
  .nav-dropdown__all { color: var(--color-secondary) !important; }
  .nav-dropdown__all:hover { padding-left: 32px !important; }
}

/* ──────────────────────────────────────────
   NAV OVERLAY
   ────────────────────────────────────────── */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: calc(var(--z-overlay) - 1);
}
.nav-overlay.is-active { display: block; }

/* ──────────────────────────────────────────
   MOBILE BOTTOM NAV
   ────────────────────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f7f7f7;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  z-index: calc(var(--z-sticky) + 1);
  border-left: 1px solid #333;
}
@media (max-width: 767px) { .mobile-bottom-nav { display: flex; } }
.mobile-bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 4px 10px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  border-left: 1px solid #cccccc;
}
.mobile-bottom-nav__item--active,
.mobile-bottom-nav__item:hover { color: var(--color-primary); }
.mobile-bottom-nav__badge {
  position: absolute; top: 4px; right: calc(50% - 20px);
  background: var(--color-secondary); color: #fff;
  font-size: 9px; font-weight: 700; min-width: 16px; height: 16px;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
}

/* ──────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:hover:not(:disabled) { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.btn--secondary { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }
.btn--secondary:hover:not(:disabled) { background: var(--color-secondary-dark); border-color: var(--color-secondary-dark); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover:not(:disabled) { background: var(--color-primary); color: #fff; }
.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover:not(:disabled) { background: var(--color-bg); }
.btn--danger { background: var(--color-danger); color: #fff; border-color: var(--color-danger); }
/* .btn--whatsapp defined in shop-empty section below */
.btn--lg {padding: 8px 32px;font-size: 16px;margin-top: 0px;}
.btn--sm {padding: 8px 16px;font-size: 13px;border-color: #eaeaea;border-radius: var(--radius);border: 1px solid #d2d2d2;}
.btn--full { width: 100%; }
.btn--icon { padding: 10px; border-radius: var(--radius); }

/* ──────────────────────────────────────────
   HERO SECTION
   ────────────────────────────────────────── */
/* Hero: full-viewport image slides with crossfade */
.hero {
  position: relative; overflow: hidden;
  background: #111;
  min-height: 580px;
}
@media (min-width: 900px) { .hero { min-height: 640px; } }

/* Slides stacked, crossfade via opacity */
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
  pointer-events: none; z-index: 0;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
/* First slide reserves section height */
.hero-slide:first-child { position: relative; min-height: inherit; }

/* Background image layer */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr;
  align-items: center; gap: 24px;
  padding-block: 56px 88px;
}
@media (min-width: 900px) { .hero__container {padding-block: 2px 100px;max-width: 1280px;margin-bottom: 0;padding-bottom: 0px;} }
.hero__content { max-width: 700px; }
.hero__visual { display: none !important; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); color: #fff;
  border: 1px solid rgba(255,255,255,.32);
  padding: 6px 14px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero__title span { color: #fff; }
.hero__subtitle {
  font-size: 15px;
  color: #fff;
  margin-bottom: 22px;
  max-width: 600px;
  line-height: 1.65;
}
/* Hero search bar */
.hero-search {
  display: flex;
  margin-bottom: 12px;
  background: rgba(255,255,255,.1);
  border: 2.5px solid rgb(255 255 255 / 85%);
  border-radius: 11px;
  overflow: hidden;
  transition: border-color .15s;
}
.hero-search:focus-within { border-color: rgba(255,255,255,.55); }
.hero-search__input {
  flex: 1; background: transparent; border: none; outline: none;
  padding: 13px 18px; font-size: 14px; color: #fff; min-width: 0;
}
.hero-search__input::placeholder { color: rgba(255,255,255,.5); }
.hero-search__btn {
  background: #fff; border: none; cursor: pointer;
  padding: 0 20px; display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: #111;
  flex-shrink: 0; transition: background .15s;
}
.hero-search__btn:hover { background: #e5e5e5; }
.hero-search-tags {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  margin-bottom: 24px;
}
.hero-search-tags__label { font-size: 12px; color: rgba(255,255,255,.5); }
.hero-search-tag {
  font-size: 12px; color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-full); padding: 4px 11px;
  text-decoration: none; transition: background .15s, color .15s;
}
.hero-search-tag:hover { background: rgba(255,255,255,.2); color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero__stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 0px;
  border-top: 1px solid rgba(255,255,255,.15);
  margin-bottom: 5px;
}
.hero__stat strong {
  display: block; font-family: var(--font-heading);
  font-size: 24px; font-weight: 700; color: #fff;
}
.hero__stat span {
  font-size: 11px; color: rgba(255,255,255,.58);
  text-transform: uppercase; letter-spacing: .5px;
}
/* How to Order */
.hero__how-to-order {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__how-title {
  font-size: 14px;
  font-weight: 700;
  color: rgb(255 255 255 / 98%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.hero__order-steps {
  display: flex; flex-direction: column; gap: 5px;
  list-style: none; padding: 0; margin: 0;
  counter-reset: order-steps;
}
.hero__order-steps li {
  counter-increment: order-steps;
  font-size: 15px;
  color: rgb(255 255 255);
  display: -webkit-inline-box;
  align-items: flex-start;
  gap: 9px;
  line-height: 20px;
}
.hero__order-steps li::before {
  content: counter(order-steps);
  font-size: 10px; font-weight: 700;
  background: rgba(255,255,255,.18); color: #fff;
  border-radius: 50%; min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.hero__order-steps li strong { color: #fff; font-weight: 700; }
@media (min-width: 640px) {
  .hero__order-steps { flex-direction: row; flex-wrap: wrap; gap: 10px 24px; }
  .hero__order-steps li { flex: 0 1 calc(50% - 12px); }
}
/* Slider controls */
.hero__slider-nav {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: var(--radius-full);
  background: rgba(255,255,255,.35); transition: all var(--transition);
  cursor: pointer; border: none;
}
.hero__dot.is-active { width: 28px; background: #fff; }

/* ──────────────────────────────────────────
   TRUST BAR
   ────────────────────────────────────────── */
.trust-bar {
  background: var(--color-primary-dark);
  padding: 20px 0;
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) { .trust-bar__grid { grid-template-columns: repeat(4, 1fr); } }
.trust-bar__item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.9);
}
.trust-bar__icon { color: var(--color-accent); flex-shrink: 0; }
.trust-bar__content strong { display: block; font-size: 13px; font-weight: 600; }
.trust-bar__content span { font-size: 12px; color: rgba(255,255,255,.65); }

/* ──────────────────────────────────────────
   SECTION TITLES
   ────────────────────────────────────────── */
.section-title {
  font-family: var(--font-heading); font-size: clamp(24px, 4vw, 36px);
  font-weight: 700; color: var(--color-primary);
}
.section-title span { color: var(--color-secondary); }
.section-subtitle { color: var(--color-text-muted); font-size: 15px; margin-top: 8px; max-width: 560px; }
.section-header { margin-bottom: 32px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-header__row { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ──────────────────────────────────────────
   BRANDS SECTION
   ────────────────────────────────────────── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (min-width: 480px)  { .brands-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px)  { .brands-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .brands-grid { grid-template-columns: repeat(8, 1fr); } }

.brand-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 8px; border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  transition: all var(--transition-slow);
  cursor: pointer; text-decoration: none;
}
.brand-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.brand-card__img { height: 40px; display: flex; align-items: center; }
.brand-card__img img { max-height: 40px; max-width: 80px; width: auto; object-fit: contain; }
.brand-card__name { font-size: 12px; font-weight: 600; color: var(--color-text); text-align: center; }
.brand-card__count { font-size: 11px; color: var(--color-text-muted); }

/* ──────────────────────────────────────────
   BRAND STRIP (homepage — horizontal scroll)
   ────────────────────────────────────────── */
.section--brand-strip { padding-block: 40px; background: #fff; }
.brand-strip {
  display: flex; gap: 10px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 4px;
  scrollbar-width: none;
}
.brand-strip::-webkit-scrollbar { display: none; }
.brand-strip__item {
  flex: 0 0 auto; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-decoration: none; padding: 10px 8px 8px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-lg);
  background: #fff; min-width: 90px;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.brand-strip__item:hover { border-color: var(--color-secondary); box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-strip__logo-wrap { width: 84px; height: 52px; display: flex; align-items: center; justify-content: center; }
.brand-strip__logo-wrap img { max-width: 84px; max-height: 48px; width: auto; height: auto; object-fit: contain; }
.brand-strip__name { font-size: 11px; font-weight: 700; color: var(--color-text); white-space: nowrap; text-transform: uppercase; letter-spacing: .3px; }
@media (min-width: 768px) {
  .brand-strip { flex-wrap: wrap; overflow-x: visible; justify-content: center; gap: 14px; }
  .brand-strip__item {min-width: 120px;padding: 11px;}
  .brand-strip__logo-wrap { width: 110px; height: 64px; }
  .brand-strip__logo-wrap img { max-width: 110px; max-height: 58px; }
  .brand-strip__name { font-size: 12px; }
}

/* ──────────────────────────────────────────
   SHOP BY MODEL (homepage section)
   ────────────────────────────────────────── */
.section--shop-by-model { padding-block: 52px 64px; }
.sbm-brands {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 560px)  { .sbm-brands { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .sbm-brands { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

/* Brand card wrapper */
.sbm-brand {
  display: flex; flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s, transform .2s;
}
.sbm-brand:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* Brand card header */
.sbm-brand__header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 16px 18px;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}
.sbm-brand__logo-wrap {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.sbm-brand__logo-link {
  display: flex; align-items: center; flex-shrink: 0;
}
.sbm-brand__logo-link img {
  height: 44px; max-width: 100px; width: auto;
  object-fit: contain;
}
.sbm-brand__name {
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--color-heading); white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; text-decoration: none;
}
.sbm-brand__name:hover { color: var(--color-secondary); }
.sbm-brand__see-all {
  flex-shrink: 0; font-size: 12px; font-weight: 600;
  color: var(--color-secondary); text-decoration: none;
  white-space: nowrap; display: flex; align-items: center; gap: 3px;
  padding: 4px 10px; border-radius: var(--radius-full);
  border: 1px solid var(--color-secondary); transition: background .15s, color .15s;
}
.sbm-brand__see-all:hover { background: var(--color-secondary); color: #fff; }

/* Models grid inside brand card */
.sbm-models {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--color-border);
  flex: 1;
}

.sbm-model-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--color-text);
  background: #fff;
  transition: background .15s;
  text-align: center;
  overflow: hidden;
}
.sbm-model-card:hover { background: #f8f8f8; }
.sbm-model-card:hover .sbm-model-card__name { color: var(--color-secondary); }
.sbm-model-card__img-wrap {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: #fafafa; padding: 8px;
}
.sbm-model-card__img-wrap img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .22s;
}
.sbm-model-card:hover .sbm-model-card__img-wrap img { transform: scale(1.06); }
.sbm-model-card__body {
  padding: 8px 6px 10px;
  border-top: 1px solid var(--color-border);
}
.sbm-model-card__name {
  font-size: 12px; font-weight: 700; line-height: 1.3;
  color: var(--color-text); transition: color .15s;
  display: block; margin-bottom: 2px;
}
.sbm-model-card__cta {
  font-size: 10px; color: var(--color-text-muted);
  text-transform: uppercase; letter-spacing: .4px;
}

/* ──────────────────────────────────────────
   PRODUCT CARDS
   ────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px)  { .products-grid { gap: 16px; } }
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(5, 1fr); } }

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

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-slow), transform var(--transition-slow), border-color var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-border-dark);
}

.product-card__img-wrap {
  position: relative; overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 1 / 1;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%); /* For older Safari browsers */
}
.product-card:hover .product-card__img { transform: scale(1.05); }

.product-card__badges {
  position: absolute; top: 8px; left: 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.badge {
  display: inline-block; padding: 3px 8px;
  font-size: 10px; font-weight: 700; letter-spacing: .3px;
  text-transform: uppercase; border-radius: var(--radius-sm);
}
.badge--new      { background: var(--color-success); color: #fff; }
.badge--sale     { background: var(--color-secondary); color: #fff; }
.badge--brand    { background: var(--color-primary); color: #fff; }
.badge--featured { background: var(--color-accent); color: var(--color-dark); }
.badge--oos      { background: var(--color-text-muted); color: #fff; }

.product-card__quick-add {
  position: absolute; bottom: 8px; left: 8px; right: 8px;
  display: flex; gap: 6px;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.product-card:hover .product-card__quick-add {
  opacity: 1; transform: translateY(0);
}

.product-card__body {
  padding: 12px 12px 0px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.product-card__brand {
  font-size: 11px; font-weight: 600;
  color: var(--color-secondary); text-transform: uppercase; letter-spacing: .5px;
}
.product-card__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__sku { font-family: var(--font-mono); font-size: 11px; color: var(--color-text-light); }

.product-card__footer {
  padding: 8px 12px 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.product-card__price { display: flex; flex-direction: column; }
.product-card__price-main { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--color-primary); }
.product-card__price-compare { font-size: 12px; color: var(--color-text-light); text-decoration: line-through; }

.add-to-cart-btn {
  background: var(--color-primary);
  color: #fff;
  padding: 7px 9px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--color-secondary); }
.add-to-cart-btn svg { width: 14px; height: 14px; }

/* ──────────────────────────────────────────
   CATEGORY CARDS
   ────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 480px)  { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .categories-grid { grid-template-columns: repeat(6, 1fr); } }

.category-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  min-height: 120px; display: flex; align-items: flex-end;
  text-decoration: none;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}
@media (min-width: 768px) { .category-card { min-height: 150px; } }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.category-card__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}
.category-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.category-card__content {
  position: relative; z-index: 1;
  padding: 12px; width: 100%;
}
.category-card__icon { font-size: 24px; margin-bottom: 4px; }
.category-card__name {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: #fff; line-height: 1.2;
}
@media (min-width: 768px) { .category-card__name { font-size: 16px; } }
.category-card__count { font-size: 11px; color: rgba(255,255,255,.7); }

/* ──────────────────────────────────────────
   BREADCRUMBS
   ────────────────────────────────────────── */
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px;
  padding: 12px 0; font-size: 13px; color: var(--color-text-muted);
}
.breadcrumb__item { display: flex; align-items: center; gap: 6px; }
.breadcrumb__item a { color: var(--color-text-muted); transition: color var(--transition); }
.breadcrumb__item a:hover { color: var(--color-primary); }
.breadcrumb__item--current { color: var(--color-text); font-weight: 500; }
.breadcrumb__sep { color: var(--color-border-dark); }

/* ──────────────────────────────────────────
   SHOP PAGE FILTERS
   ────────────────────────────────────────── */
.shop-layout {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: start;
}
@media (min-width: 1024px) { .shop-layout { grid-template-columns: 240px 1fr; } }

.shop-filters {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden; position: sticky; top: calc(var(--topbar-h) + var(--header-h) + var(--nav-h) + 16px);
}
.shop-filters__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px; border-bottom: 1px solid var(--color-border);
  font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--color-primary);
}
.shop-filters__group { padding: 16px; border-bottom: 1px solid var(--color-border); }
.shop-filters__group:last-child { border-bottom: none; }
.shop-filters__group-title { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 12px; }
.filter-option {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; cursor: pointer; font-size: 14px;
}
.filter-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--color-primary); }
.filter-option:hover { color: var(--color-primary); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 20px;
}
.shop-toolbar__count { font-size: 14px; color: var(--color-text-muted); }
.shop-toolbar__right { display: flex; align-items: center; gap: 12px; }
.shop-sort {
  padding: 8px 12px; border: 1px solid var(--color-border);
  border-radius: var(--radius); font-size: 14px; background: var(--color-white);
  cursor: pointer; outline: none;
}
.shop-sort:focus { border-color: var(--color-primary); }

/* Mobile filter toggle */
.filter-toggle-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px; border: 1px solid var(--color-border);
  border-radius: var(--radius); font-size: 14px; font-weight: 500;
  background: var(--color-white); color: var(--color-primary);
  transition: all var(--transition);
}
.filter-toggle-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
@media (min-width: 1024px) { .filter-toggle-btn { display: none; } }

/* ──────────────────────────────────────────
   PRODUCT DETAIL PAGE
   ────────────────────────────────────────── */
.product-detail {display: grid;grid-template-columns: 1fr;gap: 32px;background-color: #fff;background: #fff;}
@media (min-width: 768px) { .product-detail { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (min-width: 1024px) { .product-detail {grid-template-columns: 100% 1fr;} }

.product-gallery__main {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 0px solid var(--color-border);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.product-gallery__thumb {
  width: 72px; height: 72px; border-radius: var(--radius);
  overflow: hidden; border: 2px solid var(--color-border);
  cursor: pointer; flex-shrink: 0; transition: border-color var(--transition);
}
.product-gallery__thumb.is-active { border-color: var(--color-primary); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info__brand-sku { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.product-info__brand { font-size: 12px; font-weight: 700; color: var(--color-secondary); text-transform: uppercase; letter-spacing: .5px; }
.product-info__sku { font-family: var(--font-mono); font-size: 12px; color: var(--color-text-muted); background: var(--color-bg); padding: 3px 8px; border-radius: var(--radius-sm); }

.product-info__title { font-size: clamp(22px, 3vw, 30px); margin-bottom: 12px; color: var(--color-primary); }

.product-info__price-block { margin: 16px 0; }
.product-info__price { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--color-primary); }
.product-info__compare { font-size: 16px; color: var(--color-text-light); text-decoration: line-through; margin-left: 8px; }
.product-info__price-note { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; }

.product-info__availability { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; }
.stock-dot--in  { background: var(--color-success); }
.stock-dot--out { background: var(--color-danger); }

.product-info__compatibility {
  background: #e8f5e9; border-left: 4px solid var(--color-success);
  padding: 12px 16px; border-radius: var(--radius);
  margin-bottom: 20px; font-size: 14px;
}
.product-info__compatibility strong { color: var(--color-success); }

.qty-selector { display: flex; align-items: center; gap: 0; border: 2px solid var(--color-border); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.qty-selector__btn { padding: 10px 16px; font-size: 18px; font-weight: 700; color: var(--color-primary); background: var(--color-bg); border: none; cursor: pointer; transition: background var(--transition); line-height: 1; }
.qty-selector__btn:hover { background: var(--color-primary); color: #fff; }
.qty-selector__input { width: 52px; text-align: center; border: none; font-size: 16px; font-weight: 600; padding: 10px 0; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); outline: none; }

.product-info__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.product-info__actions .btn { flex: 1; min-width: 160px; }

.product-info__meta {margin-top: 0px;padding-top: 8px;border-top: 1px solid var(--color-border);}
.product-info__meta-item { display: flex; gap: 8px; font-size: 13px; margin-bottom: 8px; }
.product-info__meta-item strong { color: var(--color-text-muted); min-width: 80px; }

/* Product Tabs */
.product-tabs { margin-top: 48px; }
.product-tabs__nav { display: flex; border-bottom: 2px solid var(--color-border); overflow-x: auto; gap: 0; }
.product-tab-btn {
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  color: var(--color-text-muted); border-bottom: 3px solid transparent;
  margin-bottom: -2px; white-space: nowrap; transition: all var(--transition);
  cursor: pointer;
}
.product-tab-btn.is-active { color: var(--color-primary); border-bottom-color: var(--color-primary); }
.product-tab-btn:hover { color: var(--color-primary); }
.product-tab-panel { padding: 24px 0; display: none; }
.product-tab-panel.is-active { display: block; }
.product-tab-panel .description-html { font-size: 15px; line-height: 1.8; }
.product-tab-panel .description-html h2, .product-tab-panel .description-html h3 { font-family: var(--font-heading); color: var(--color-primary); margin: 16px 0 8px; }
.product-tab-panel .description-html ul { padding-left: 20px; }
.product-tab-panel .description-html li { margin-bottom: 6px; list-style: disc; }
.product-tab-panel .description-html strong { color: var(--color-primary); }

/* ──────────────────────────────────────────
   CART PAGE
   ────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 360px; align-items: start; } }

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); border-bottom: 2px solid var(--color-border); }
.cart-table td { padding: 16px; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.cart-item__img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--color-border); }
.cart-item__info { display: flex; align-items: center; gap: 12px; }
.cart-item__title { font-weight: 500; font-size: 14px; line-height: 1.4; }
.cart-item__sku { font-family: var(--font-mono); font-size: 11px; color: var(--color-text-muted); }
.cart-item__price { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--color-primary); }
.cart-item__remove { color: var(--color-danger); padding: 6px; border-radius: var(--radius-sm); transition: background var(--transition); }
.cart-item__remove:hover { background: #fee2e2; }

/* ── Mobile cart: proper card layout via CSS grid areas ── */
@media (max-width: 640px) {
  /* Kill table layout entirely */
  .cart-table thead { display: none; }
  .cart-table { display: block; border: none; background: transparent; }
  .cart-table tbody { display: flex; flex-direction: column; gap: 12px; }

  /* Each row → a self-contained card */
  .cart-table__row {
    display: grid;
    grid-template-areas:
      "product product remove"
      "footer  footer  footer";
    grid-template-columns: 1fr 1fr auto;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
    border-bottom: 1px solid var(--color-border) !important;
  }

  /* Top: product info */
  .cart-table__product {
    grid-area: product;
    padding: 14px 12px 14px 14px;
    border-bottom: 1px solid var(--color-border);
  }
  .cart-product { align-items: flex-start; }
  .cart-product__img { width: 68px; height: 68px; flex-shrink: 0; border-radius: 8px; }
  .cart-product__info { gap: 3px; min-width: 0; }
  .cart-product__name {
    font-size: 13px; font-weight: 600; line-height: 1.35;
    white-space: normal; display: -webkit-box;
    -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  }
  .cart-product__brand { font-size: 11px; color: var(--color-text-muted); }
  .cart-product__sku   { font-size: 10px; color: var(--color-text-muted); }

  /* Top-right: remove button */
  .cart-table__remove {
    grid-area: remove;
    display: flex; align-items: flex-start; justify-content: center;
    padding: 10px 10px 0 0;
    border-bottom: 1px solid var(--color-border);
    width: auto; text-align: center;
  }
  .cart-remove-btn {
    width: 28px; height: 28px; border-radius: 50%;
    background: #fee2e2; color: var(--color-danger);
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
  }
  .cart-remove-btn:hover { background: #fecaca; }

  /* Bottom action bar — spans full width */
  .cart-table__qty,
  .cart-table__price,
  .cart-table__total {
    grid-area: footer; /* overridden individually below */
    background: var(--color-bg-alt);
  }

  /* Re-assign footer cells via a flex row trick:
     make all three "footer" cells stack but display as one row */
  .cart-table__qty {
    grid-area: unset;
    display: flex; align-items: center;
    padding: 10px 14px;
    background: var(--color-bg-alt);
    border-top: none;
  }
  .cart-table__price {
    grid-area: unset;
    display: flex; align-items: center; justify-content: center;
    padding: 10px 6px;
    font-size: 12px; color: var(--color-text-muted);
    background: var(--color-bg-alt);
    border-top: none;
  }
  .cart-table__price::before {
    content: 'each '; font-size: 10px; color: var(--color-text-muted);
    margin-right: 2px; white-space: nowrap;
  }
  .cart-table__total {
    grid-area: unset;
    display: flex; align-items: center; justify-content: flex-end;
    padding: 10px 14px;
    font-family: var(--font-heading); font-size: 17px; font-weight: 700;
    color: var(--color-primary);
    background: var(--color-bg-alt);
    border-top: none;
    margin-left: auto;
  }

  /* Override the grid so footer row = all three qty/price/total side by side */
  .cart-table__row {
    grid-template-areas:
      "product remove"
      "qty     qty   ";
    grid-template-columns: 1fr auto;
  }
  .cart-table__product { grid-area: product; }
  .cart-table__remove  { grid-area: remove; }
  /* Qty cell becomes the whole footer row — uses internal flex to hold all three */
  .cart-table__qty {
    grid-area: qty;
    display: flex; flex-direction: row; align-items: center;
    gap: 0; width: 100%;
    padding: 0;
    border-top: 1px solid var(--color-border);
  }
  /* Qty stepper sub-cell */
  .cart-table__qty .qty-selector {margin: -2px 12px;}
  /* Price + total sit inside qty cell via sibling trick is not possible —
     instead: show price & total as overlaid flex children rendered via CSS ::after is not viable.
     Solution: make price & total absolute-free inside a wrapper */
  .cart-table__price {
    grid-area: qty; /* same area — price and total stack AFTER qty in flow */
    flex: 1; justify-content: flex-end; padding: 0 6px;
  }
  .cart-table__total {
    grid-area: qty;
    flex: 0; padding: 0 14px 0 4px;
  }

  /* Because multiple items can't share a grid area cleanly in a <tr>,
     use display:contents on tbody and manual flex on the row instead */
  .cart-table tbody { display: flex; flex-direction: column; gap: 12px; }
  .cart-table__row {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 2px solid #333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: unset;
    border-bottom: 2px solid #333 !important;
  }

  /* Row: top area = product + remove in one flex row */
  .cart-table__product {
    order: 1; display: block;
    padding: 14px 46px 14px 14px; /* right pad for remove btn */
    border-bottom: 1px solid var(--color-border);
    position: relative;
  }
  .cart-table__remove {
    order: 1; /* same visual row as product via absolute */
    position: absolute;
    display: block;
    padding: 0;
    border: none; background: none;
    /* positioned inside .cart-table__product via parent relative */
  }
  /* Wrap product + remove together */
  .cart-table__row { position: relative; }
  .cart-table__remove {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    width: auto; height: auto;
  }

  /* Row: bottom action bar */
  .cart-table__qty {
    order: 2;
    display: flex; align-items: center;
    padding: 10px 14px;
    background: #f7f7f7;
    border-top: 1px solid var(--color-border);
    flex: none; width: 100%; box-sizing: border-box;
  }
  .cart-table__price {
    order: 3; display: none; /* hidden — redundant when total is shown */
  }
  .cart-table__total {
    order: 4; display: flex;
    align-items: center; justify-content: flex-end;
    padding: 0 14px 10px;
    background: #f7f7f7;
    font-family: var(--font-heading); font-size: 18px; font-weight: 700;
    color: var(--color-primary);
  }

  /* Qty stepper sizing */
  .qty-selector--sm { border-radius: 8px; overflow: hidden; }
  .qty-selector--sm .qty-btn { width: 34px; height: 34px; font-size: 18px; }
  .qty-selector--sm .qty-input { width: 42px; height: 34px; font-size: 15px; font-weight: 700; }

  /* Qty label + total inline */
  .cart-table__qty::before {
    content: 'Qty'; font-size: 11px; color: var(--color-text-muted);
    text-transform: uppercase; letter-spacing: .5px;
    margin-right: 8px; font-weight: 600;
  }
  /* Show item total to the right of the qty bar */
  .cart-table__qty::after {
    content: attr(data-line-total);
    margin-left: auto;
    font-family: var(--font-heading); font-size: 17px; font-weight: 700;
    color: var(--color-primary);
  }

  .text-right, .text-center { text-align: left !important; }
}

.cart-summary {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 24px; position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + var(--nav-h) + 16px);
}
.cart-summary__title { font-family: var(--font-heading); font-size: 20px; color: var(--color-primary); margin-bottom: 16px; }
.cart-summary__line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--color-border); }
.cart-summary__line:last-of-type { border-bottom: none; }
.cart-summary__total { display: flex; justify-content: space-between; padding: 16px 0 0; font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--color-primary); }
.cart-summary__free-shipping { background: #e8f5e9; color: var(--color-success); font-size: 12px; font-weight: 500; padding: 8px 12px; border-radius: var(--radius); margin: 12px 0; text-align: center; }

/* Empty Cart */
.cart-empty { text-align: center; padding: 64px 24px; }
.cart-empty__icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty__title { font-family: var(--font-heading); font-size: 24px; color: var(--color-primary); margin-bottom: 8px; }
.cart-empty__text { color: var(--color-text-muted); margin-bottom: 24px; }

/* ──────────────────────────────────────────
   CHECKOUT PAGE
   ────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .checkout-layout { grid-template-columns: 1fr 400px; align-items: start; } }

.checkout-form-section { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.checkout-form-section__title { font-family: var(--font-heading); font-size: 18px; color: var(--color-primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--color-border); }

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .form-row--2col { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--color-text); }
.form-label .required { color: var(--color-danger); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px; font-size: 14px;
  border: 2px solid var(--color-border); border-radius: var(--radius);
  background: var(--color-white); color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,.1);
}
.form-input.has-error { border-color: var(--color-danger); }
.form-error { font-size: 12px; color: var(--color-danger); margin-top: 4px; }
.form-hint { font-size: 12px; color: var(--color-text-muted); }
.form-textarea { min-height: 100px; resize: vertical; }

/* Payment Methods */
.payment-methods { display: flex; flex-direction: column; gap: 12px; }
.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1px 8px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
  background: #fff;
}
.payment-method:hover { border-color: var(--color-primary); background: #f8faff; box-shadow: 0 2px 8px rgba(13,27,42,.07); }
.payment-method.is-selected { border-color: var(--color-primary); background: #f0f4fa; box-shadow: 0 2px 12px rgba(13,27,42,.1); }
.payment-method input[type="radio"] { width: 18px; height: 18px; accent-color: var(--color-primary); flex-shrink: 0; }
.payment-method__icon {display: flex;align-items: center;justify-content: center;width: 35px;height: 38px;border-radius: 5px;background: #f1f5f9;flex-shrink: 0;color: var(--color-primary);}
.payment-method.is-selected .payment-method__icon { background: var(--color-primary); color: #fff; }
.payment-method__info { flex: 1; line-height: normal; }
.payment-method__logo { width: 40px; height: 26px; object-fit: contain; }
.payment-method__info strong { display: block; font-size: 14px; font-weight: 700; color: var(--color-heading); }
.payment-method__info span { font-size: 12px; color: var(--color-text-muted); }
.payment-method__check { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; border: 2px solid #d1d5db; color: transparent; transition: all .15s; flex-shrink: 0; }
.payment-method.is-selected .payment-method__check { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* M-Pesa Instructions redesign */
.mpesa-instructions {
  margin-top: 16px;
  border: 1px solid #d1e8ff;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  background: #f0f7ff;
}
.mpesa-instructions__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.mpesa-instructions__header svg { flex-shrink: 0; }
.mpesa-details { padding: 8px 0; }
.mpesa-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1px 10px;
  border-bottom: 1px solid #e0eefd;
  font-size: 14px;
}
.mpesa-detail-row:last-child { border-bottom: none; }
.mpesa-detail-row--highlight { background: #fff; }
.mpesa-detail-label {
  flex-shrink: 0;
  width: 110px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--color-text-muted);
}
.mpesa-detail-value { flex: 1; color: var(--color-heading); }
.mpesa-detail-value--code {
  font-family: var(--font-mono, monospace);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: .05em;
}
.mpesa-detail-value--amount {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #16a34a;
}
.mpesa-instructions__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 12px 18px;
  font-size: 12px;
  color: var(--color-text-muted);
  background: #e8f3ff;
  border-top: 1px solid #d1e8ff;
  line-height: 1.5;
}
.mpesa-instructions__note svg { flex-shrink: 0; margin-top: 1px; }


/* Order Summary Sidebar */
.order-summary { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.order-summary__header { background: var(--color-primary); color: #fff; padding: 16px 20px; font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.order-summary__items { max-height: 300px; overflow-y: auto; }
.order-summary__item { display: flex; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--color-border); }
.order-summary__item-img { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--color-border); flex-shrink: 0; }
.order-summary__item-info { flex: 1; min-width: 0; }
.order-summary__item-title { font-size: 13px; font-weight: 500; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-summary__item-sku { font-family: var(--font-mono); font-size: 11px; color: var(--color-text-muted); }
.order-summary__item-price { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--color-primary); white-space: nowrap; }
.order-summary__item-qty { font-size: 11px; color: var(--color-text-muted); }
.order-summary__totals { padding: 16px 20px; }
.order-summary__line { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.order-summary__total { display: flex; justify-content: space-between; font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--color-primary); padding: 12px 0 0; border-top: 2px solid var(--color-border); margin-top: 8px; }

/* ──────────────────────────────────────────
   ORDER SUCCESS
   ────────────────────────────────────────── */
.order-success {
  text-align: center; padding: 48px 24px;
  max-width: 640px; margin: 0 auto;
}
.order-success__icon { font-size: 72px; margin-bottom: 16px; animation: bounceIn .6s ease; }
@keyframes bounceIn { 0% { transform: scale(0); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }
.order-success__title { font-family: var(--font-heading); font-size: 32px; color: var(--color-success); margin-bottom: 8px; }
.order-success__number { font-size: 18px; color: var(--color-text-muted); margin-bottom: 16px; }
.order-success__number strong { color: var(--color-secondary); font-size: 22px; }
.order-success__message { color: var(--color-text-muted); margin-bottom: 32px; }
.order-steps { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin: 24px 0; }
.order-step { display: flex; flex-direction: column; align-items: center; padding: 12px 20px; }
.order-step__dot { width: 32px; height: 32px; border-radius: 50%; background: var(--color-bg); border: 2px solid var(--color-border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--color-text-muted); margin-bottom: 8px; }
.order-step.is-active .order-step__dot { background: var(--color-success); border-color: var(--color-success); color: #fff; }
.order-step__label { font-size: 12px; color: var(--color-text-muted); text-align: center; }

/* ──────────────────────────────────────────
   TRACK ORDER
   ────────────────────────────────────────── */
.track-order-form { max-width: 480px; margin: 0 auto; }
.order-tracker { margin-top: 32px; }
.order-tracker__steps { display: flex; align-items: flex-start; gap: 0; margin-bottom: 32px; overflow-x: auto; }
.tracker-step { flex: 1; min-width: 80px; display: flex; flex-direction: column; align-items: center; position: relative; }
.tracker-step::after { content: ''; position: absolute; top: 16px; left: 50%; right: -50%; height: 2px; background: var(--color-border); z-index: 0; }
.tracker-step:last-child::after { display: none; }
.tracker-step.is-done::after { background: var(--color-success); }
.tracker-step__dot { width: 32px; height: 32px; border-radius: 50%; background: var(--color-border); display: flex; align-items: center; justify-content: center; z-index: 1; position: relative; flex-shrink: 0; }
.tracker-step.is-done .tracker-step__dot { background: var(--color-success); color: #fff; }
.tracker-step.is-current .tracker-step__dot { background: var(--color-primary); color: #fff; box-shadow: 0 0 0 4px rgba(30,58,95,.2); }
.tracker-step__label { font-size: 11px; font-weight: 500; text-align: center; margin-top: 8px; color: var(--color-text-muted); }
.tracker-step.is-done .tracker-step__label, .tracker-step.is-current .tracker-step__label { color: var(--color-primary); }

/* ──────────────────────────────────────────
   FAQ PAGE
   ────────────────────────────────────────── */
.faq-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.faq-cat-btn { padding: 8px 18px; border-radius: var(--radius-full); font-size: 13px; font-weight: 500; border: 2px solid var(--color-border); background: var(--color-white); color: var(--color-text); cursor: pointer; transition: all var(--transition); }
.faq-cat-btn.is-active, .faq-cat-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--color-text);
  background: var(--color-white); cursor: pointer; transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--color-bg); }
.accordion-trigger[aria-expanded="true"] { background: var(--color-primary); color: #fff; }
.accordion-trigger svg { flex-shrink: 0; transition: transform var(--transition); }
.accordion-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height var(--transition-slow) ease; }
.accordion-panel.is-open { max-height: 500px; }
.accordion-panel__inner { padding: 16px 20px; font-size: 14px; line-height: 1.7; color: var(--color-text-muted); border-top: 1px solid var(--color-border); }

/* ──────────────────────────────────────────
   ABOUT PAGE
   ────────────────────────────────────────── */
.about-hero { background: var(--color-primary); color: #fff; padding: 64px 0; }
.about-hero .container {display: grid;grid-template-columns: 1fr;gap: 2px;}
@media (min-width: 768px) { .about-hero .container { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
@media (min-width: 768px) { .about-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.about-stat { text-align: center; }
.about-stat__number { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--color-secondary); }
.about-stat__label { font-size: 14px; color: var(--color-text-muted); margin-top: 4px; }
.values-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; }
@media (min-width: 480px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: box-shadow var(--transition-slow), transform var(--transition-slow); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card__icon { font-size: 40px; margin-bottom: 12px; }
.value-card__title { font-family: var(--font-heading); font-size: 18px; color: var(--color-primary); margin-bottom: 8px; }
.value-card__text { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; }

/* ──────────────────────────────────────────
   CONTACT PAGE
   ────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 380px; } }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { display: flex; gap: 16px; padding: 20px; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.contact-info-card__icon { width: 48px; height: 48px; border-radius: var(--radius); background: #e8edf5; color: var(--color-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card__title { font-family: var(--font-heading); font-size: 16px; color: var(--color-primary); margin-bottom: 4px; }
.contact-info-card__text { font-size: 14px; color: var(--color-text-muted); }
.contact-info-card__text a { color: var(--color-secondary); }

/* ──────────────────────────────────────────
   PAGINATION
   ────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; flex-wrap: wrap; padding: 32px 0; }
.pagination__btn {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--color-border); border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--color-text);
  transition: all var(--transition); padding: 0 10px;
  text-decoration: none;
}
.pagination__btn:hover:not(:disabled) { border-color: var(--color-primary); color: var(--color-primary); background: var(--color-bg); }
.pagination__btn.is-active {
  background: var(--color-primary); border-color: var(--color-primary); color: #fff;
  box-shadow: 0 2px 8px rgba(30,58,95,.25);
  pointer-events: none;
}
.pagination__btn:disabled { opacity: .35; cursor: not-allowed; }
.pagination__btn--prev, .pagination__btn--next { padding: 0 14px; gap: 6px; }
.pagination__ellipsis { color: var(--color-text-muted); padding: 0 6px; font-size: 16px; line-height: 40px; }

/* ──────────────────────────────────────────
   TOAST NOTIFICATIONS
   ────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: 80px; right: 16px; z-index: var(--z-toast);
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none;
}
@media (min-width: 768px) { #toast-container { bottom: 16px; } }
.toast {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; background: var(--color-dark);
  color: #fff; border-radius: var(--radius-lg);
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-xl);
  pointer-events: all;
  animation: slideInRight .3s ease;
  max-width: 320px;
}
.toast--success { border-left: 4px solid var(--color-success); }
.toast--error   { border-left: 4px solid var(--color-danger); }
.toast--info    { border-left: 4px solid var(--color-accent); }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOutRight { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }
.toast.is-hiding { animation: slideOutRight .3s ease forwards; }

/* ──────────────────────────────────────────
   WHATSAPP FLOAT
   ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 80px; left: 16px; z-index: var(--z-sticky);
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
@media (min-width: 768px) { .whatsapp-float { bottom: 32px; left: 24px; } }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,.5); }
.whatsapp-float__tooltip {
  position: absolute; left: 68px; background: var(--color-dark); color: #fff;
  font-size: 12px; font-weight: 500; padding: 6px 12px;
  border-radius: var(--radius); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ──────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────── */
.footer-main {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.8);
  padding: 25px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col--brand { }
.footer-logo img { margin-bottom: 16px; display: block; width: auto; max-width: 180px; max-height: 60px; height: auto; object-fit: contain; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 20px; }

.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contact__item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); }
.footer-contact__item a { color: inherit; transition: color var(--transition); }
.footer-contact__item a:hover { color: #fff; }
.footer-contact__item svg { flex-shrink: 0; margin-top: 2px; }

.footer-social { display: flex; gap: 10px; }
.footer-social__link {
  width: 38px; height: 38px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}
.footer-social__link:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4); }
.footer-social__link--whatsapp:hover { background: #25D366; border-color: #25D366; }

.footer-col__title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--color-secondary);
  display: block;
}
.footer-links {display: flex;flex-direction: column;gap: 3px;}
.footer-links li a { font-size: 13px; color: rgba(255,255,255,.65); transition: color var(--transition), padding-left var(--transition); }
.footer-links li a:hover { color: var(--color-accent); padding-left: 4px; }
.footer-whatsapp-cta { margin-top: 20px; }
.footer-whatsapp-cta .btn { font-size: 13px; padding: 10px 18px; }

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .footer-col--brand,
  .footer-col--help {
    grid-column: 1 / -1;
  }

@media (max-width: 767px) {
  .footer-col--help { display: none; }
}

  .footer-links--help {
    column-count: 2;
    column-gap: 20px;
  }

  .footer-links--help li {
    break-inside: avoid;
    margin-bottom: 8px;
  }
}

.footer-bottom {
  background: #000001;
  padding: 10px 0 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom__inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom__copy { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom__copy a { color: rgba(255,255,255,.7); }
.footer-bottom__copy a:hover { color: #fff; }
.footer-bottom__badges { display: flex; gap: 12px; flex-wrap: wrap; }
/* Prevent chat FAB from overlapping footer bottom on mobile */
@media (max-width: 480px) {
  .footer-bottom { padding-bottom: 52px !important; }
}
.footer-badge {font-size: 12px;color: #000;}

/* ──────────────────────────────────────────
   ALERT/INFO BOXES
   ────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 14px; display: flex; gap: 10px; align-items: flex-start; margin-bottom: 16px; }
.alert--success { background: #d1fae5; color: #065f46; border-left: 4px solid var(--color-success); }
.alert--error   { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--color-danger); }
.alert--info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }
.alert--warning { background: #fef3c7; color: #92400e; border-left: 4px solid var(--color-warning); }

/* ──────────────────────────────────────────
   PROMO BANNER
   ────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #c44d03 100%);
  padding: 16px; text-align: center; color: #fff;
}
.promo-banner__text { font-size: 14px; font-weight: 600; }
.promo-banner__text strong { color: var(--color-accent); }

/* ──────────────────────────────────────────
   RELATED PRODUCTS SECTION
   ────────────────────────────────────────── */
.related-products {margin-top: 64px;padding-top: 20px;border-top: 2px solid var(--color-border);}

/* ──────────────────────────────────────────
   PAGE HERO (inner pages)
   ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: 40px 0; color: #fff;
}
.page-hero__title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; margin-bottom: 8px; }
.page-hero__sub { color: rgba(255,255,255,.75); font-size: 15px; }

/* ──────────────────────────────────────────
   STATIC CONTENT PAGES (About, Terms, etc)
   ────────────────────────────────────────── */
.static-content { max-width: 820px; }
.static-section { margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--color-border); }
.static-section:last-child { border-bottom: none; }
.static-section__title { font-family: var(--font-heading); font-size: 22px; color: var(--color-primary); margin-bottom: 12px; }
.static-section__body { font-size: 15px; line-height: 1.8; color: var(--color-text); }
.static-section__body p { margin-bottom: 12px; }
.static-section__body ol { padding-left: 20px; }
.static-section__body li { margin-bottom: 6px; list-style: decimal; }

/* ──────────────────────────────────────────
   SKELETON LOADING
   ────────────────────────────────────────── */
@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--radius);
}

/* ──────────────────────────────────────────
   UTILITIES
   ────────────────────────────────────────── */
.text-center   { text-align: center; }
.text-right    { text-align: right; }
.text-muted    { color: var(--color-text-muted); }
.text-success  { color: var(--color-success); }
.text-danger   { color: var(--color-danger); }
.text-primary  { color: var(--color-primary); }
.text-secondary{ color: var(--color-secondary); }
.font-bold     { font-weight: 700; }
.font-mono     { font-family: var(--font-mono); }
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: block; } }
.show-mobile { display: block; }
@media (min-width: 768px) { .show-mobile { display: none; } }
.w-full { width: 100%; }
.divider { border: none; border-top: 1px solid var(--color-border); margin: 24px 0; }

/* ──────────────────────────────────────────
   PRINT STYLES
   ────────────────────────────────────────── */
@media print {
  .site-header, .main-nav, .mobile-bottom-nav,
  .whatsapp-float, #toast-container, .footer-main, .footer-bottom { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ──────────────────────────────────────────
   HOMEPAGE EXTRAS
   ────────────────────────────────────────── */
/* Hero: block container — slides are absolute, first-child holds height */
.hero { display: block; position: relative; overflow: hidden; min-height: 580px; background: #111; }
@media (min-width: 900px) { .hero { min-height: 640px; } }
/* ALL slides absolute + full cover for crossfade */
.hero-slide { position: absolute; inset: 0; width: 100%; opacity: 0; transition: opacity 1s ease; pointer-events: none; z-index: 0; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
/* First slide is in normal flow to give the section its height */
.hero-slide:first-child { position: relative; width: 100%; min-height: 580px; }
@media (min-width: 900px) { .hero-slide:first-child { min-height: 640px; } }
.hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; width: 100%; height: 100%; }
.hero__content {position: relative;z-index: 2;color: #fff;max-width: 700px;margin-top: 53px;}
.hero__stat strong {display: block;font-family: var(--font-heading);font-size: 24px;font-weight: 700;color: #fff;line-height: 22px;}
.hero__stat span {font-size: 11px;color: rgb(255 255 255 / 93%);text-transform: uppercase;letter-spacing: .5px;}
.section-header {margin-bottom: 13px;}
.section-header__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.section-header--center { text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.value-card { text-align: center; padding: 32px 24px; background: rgba(255,255,255,.06); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.1); }
.value-card__icon { font-size: 36px; margin-bottom: 12px; }
.value-card__title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.value-card__text { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; }
.promo-banner { background: var(--color-primary-dark); color: #fff; padding: 10px 20px; text-align: center; }
.promo-banner__text { font-size: 13px; margin: 0; }

/* ──────────────────────────────────────────
   SHOP PAGE EXTRAS
   ────────────────────────────────────────── */
.shop-layout {display: grid;grid-template-columns: 260px 1fr;gap: 20px;padding-top: 16px;padding-bottom: 20px;align-items: start;}
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } .shop-sidebar { display: none; } .shop-sidebar.is-open { display: block; position: fixed; inset: 0; background: #fff; overflow-y: auto; padding: 20px; z-index: var(--z-modal); } }
.shop-sidebar { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 20px; position: sticky; top: calc(var(--header-h) + var(--nav-h) + 16px); max-height: calc(100vh - var(--header-h) - var(--nav-h) - 32px); overflow-y: auto; }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid var(--color-border); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; }
.filter-group__title { font-family: var(--font-heading); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-muted); margin-bottom: 12px; }
.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list__item {margin-bottom: 0px;}
.filter-link {display: block;padding: 4px 6px;border-radius: var(--radius-sm);font-size: 14px;color: var(--color-text);text-decoration: none;transition: all .15s;border-bottom: 1px solid #d5d5d5;}
.filter-link:hover, .filter-link.is-active { background: var(--color-primary); color: #fff; }
.active-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.active-filter-tag { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 20px; font-size: 13px; text-decoration: none; color: var(--color-text); transition: all .15s; }
.active-filter-tag:hover { border-color: var(--color-danger); color: var(--color-danger); }
.active-filter-tag--clear { background: var(--color-danger); color: #fff; border-color: var(--color-danger); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.shop-toolbar__left { display: flex; align-items: center; gap: 12px; }
.shop-results-count { font-size: 14px; color: var(--color-text-muted); margin: 0; }
.sort-form { display: flex; align-items: center; gap: 8px; }
.sort-select { padding: 8px 12px; border: 1px solid var(--color-border); border-radius: var(--radius); font-size: 14px; background: #fff; cursor: pointer; }
.shop-page-title { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 32px); font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.shop-page-desc { font-size: 15px; color: var(--color-text-muted); margin-bottom: 24px; }
/* Empty state */
.shop-empty { text-align: center; padding: 80px 20px; }
.shop-empty__icon { display: flex; justify-content: center; margin-bottom: 16px; color: var(--color-text-muted); }
.shop-empty__title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.shop-empty__text { color: var(--color-text-muted); margin-bottom: 24px; }
/* WhatsApp button — outline style, green on white */
.btn--whatsapp {
  background: #fff;
  color: #25D366;
  border: 2px solid #25D366;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37,211,102,.18);
  transition: background .2s, color .2s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn--whatsapp svg { fill: #25D366; flex-shrink: 0; transition: fill .2s; }
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn--whatsapp:hover svg,
.btn--whatsapp:focus-visible svg { fill: #fff; }
/* Model filter list — compact */
.filter-list--models .filter-link { font-size: 13px; padding: 4px 10px; }
/* Toolbar — no-wrap on mobile */
@media (max-width: 600px) {
  .shop-toolbar {flex-wrap: nowrap;align-items: center;gap: 8px;}
  .shop-results-count { font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
  .sort-select { font-size: 12px; padding: 6px 8px; }
}
.products-grid--3col { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* ──────────────────────────────────────────
   PRODUCT DETAIL EXTRAS
   ────────────────────────────────────────── */
.product-detail__layout {display: grid;grid-template-columns: 1fr 1fr;gap: 20px;margin-bottom: 16px;}
@media (max-width: 768px) { .product-detail__layout { grid-template-columns: 1fr; } }
.product-detail .container {max-width: 1280px;margin-inline: auto;display: inline-block;margin: auto;}
.product-gallery__main-wrap { position: relative; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1; }
.product-gallery__main {width: 100%;height: 100%;object-fit: contain;padding: 0px;transition: unset;}
.product-gallery__badge { position: absolute; top: 12px; left: 12px; }
.product-gallery__thumbs { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.product-gallery__thumb { border: 2px solid var(--color-border); border-radius: var(--radius); padding: 4px; cursor: pointer; background: none; transition: border-color .15s; }
.product-gallery__thumb.is-active, .product-gallery__thumb:hover { border-color: var(--color-secondary); }
.product-gallery__thumb img { width: 72px; height: 72px; object-fit: contain; border-radius: 4px; }
.product-info__brand { display: inline-block; background: var(--color-primary); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-info__model { display: block; margin-bottom: 10px; }
.product-info__model-link { display: inline-block; background: var(--color-bg-alt); color: var(--color-secondary); font-size: 12px; font-weight: 600; padding: 2px 10px; border-radius: 20px; text-decoration: none; border: 1px solid var(--color-border); transition: background .15s, color .15s; }
.product-info__model-link:hover { background: var(--color-secondary); color: #fff; }
.product-info__title { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--color-primary); margin-bottom: 12px; line-height: 1.25; }
.product-info__meta {display: flex;gap: 12px;flex-wrap: wrap;margin-bottom: 0px;font-size: 13px;color: var(--color-text-muted);}
.product-info__price {margin-bottom: -2px;}
.product-info__price-main { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--color-secondary); }
.product-info__vat { font-size: 12px; color: var(--color-text-muted); margin-left: 6px; }
.product-info__compat {display: flex;align-items: flex-start;gap: 8px;background: #fff;border: 1px solid rgba(5,150,105,.2);border-radius: var(--radius);padding: 10px 14px;margin-bottom: 20px;font-size: 14px;color: var(--color-success);}
.product-info__cart {display: flex;gap: 12px;align-items: center;margin-bottom: -1px;flex-wrap: wrap;}
.product-info__short-desc {
  width: 100%;
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.65;
  margin: 6px 0 0px;
  padding: 0px 12px;
  background: #fff;
  border-radius: 4px;
}
.product-info__short-desc p { margin: 0 0 8px; }
.product-info__short-desc p:last-child { margin-bottom: 0; }
.short-desc__how-title {font-size: 16px;font-weight: 700;color: var(--color-primary);margin: 10px 0 6px !important;border-bottom: 1px solid #000;}
.short-desc__how-list { list-style: none; padding: 0; margin: 0; }
.short-desc__how-list li {font-size: 15px;color: var(--color-text);padding: 2px 0;}
.short-desc__call-link { font-weight: 700; color: var(--color-primary); text-decoration: none; }
.short-desc__call-link:hover { text-decoration: underline; }
/* Action buttons: ATC + WA side by side */
.product-info__actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}
.product-info__actions-row .btn { width: 100%; justify-content: center; padding-left: 10px; padding-right: 10px; font-size: 13px; }
/* Call button */
.btn--call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  margin-top: 0 !important;!i;!;
}
.btn--call:hover { background: #f5f5f5; color: #000; }
.product-info__whatsapp-btn {
  background: #fff;
  color: #000;
  border-color: #000;
}
.product-info__whatsapp-btn svg {
  color: #000;
  fill: currentColor;
}
.product-info__whatsapp-btn:hover,
.product-info__whatsapp-btn:focus-visible {
  background: #f5f5f5;
  color: #000;
  border-color: #000;
}
.product-info__trust {display: flex;gap: 16px;flex-wrap: wrap;margin-top: 10px;padding-top: 5px;border-top: 1px solid var(--color-border);}
.trust-mini { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--color-text-muted); }
.product-tabs {margin-top: 10px;}
.product-tabs__nav { display: flex; gap: 0; border-bottom: 2px solid var(--color-border); margin-bottom: 24px; overflow-x: auto; }
.product-tabs__tab {padding: 12px 24px;background: #f7f7f7;border: none;border-bottom: 2px solid transparent;margin-bottom: -2px;font-size: 15px;font-weight: 600;color: var(--color-text-muted);cursor: pointer;white-space: nowrap;transition: all .2s;border-left: 6px solid #fff;}
.product-tabs__tab.is-active {color: var(--color-primary);background: #fff;}
.product-tabs__panel { display: none; }
.product-tabs__panel.is-active { display: block; }
.product-description { font-size: 15px; line-height: 1.8; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 20px; }
.specs-table th, .specs-table td { padding: 10px 14px; border: 1px solid var(--color-border); }
.specs-table th { background: var(--color-bg-alt); font-weight: 600; text-align: left; }
.compat-info { font-size: 15px; }
.compat-row { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.shipping-info { background: #fff; }
.shipping-info h3 { font-size: 17px; margin: 24px 0 10px; color: var(--color-primary); }
.shipping-info h3:first-child { margin-top: 0; }
.shipping-info ul { padding-left: 0; list-style: none; }
.shipping-info li {padding: 0px 0;font-size: 15px;display: flex;align-items: flex-start;gap: 8px;}
.si-icon { font-size: 16px; flex-shrink: 0; line-height: 1.6; }
.related-products {margin-top: 20px;}
.tags-list { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; padding: 4px 10px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 20px; font-size: 12px; text-decoration: none; color: var(--color-text-muted); }
.badge--lg { font-size: 13px; padding: 5px 14px; }

@media (max-width: 900px) {
  .product-detail__layout {
    gap: 28px;
    margin-bottom: 32px;
  }

  .product-info__cart {
    align-items: stretch;
  }

  .product-info__cart .qty-selector {
    width: 100%;
    justify-content: center;
  }

  .product-info__cart .btn {
    width: 100%;
  }

  .product-tabs__tab {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .product-gallery__main {
    padding: 0px;
  }

  .product-gallery__thumb img {
    width: 62px;
    height: 62px;
  }

  .product-info__title {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.3;
  }

  .product-info__price-main {
    font-size: 30px;
  }

  .product-info__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }

  .trust-mini {
    font-size: 12px;
  }

  .product-short-desc {
    padding: 14px 14px !important;
  }
}

/* ──────────────────────────────────────────
   CART PAGE EXTRAS
   ────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
@media (min-width: 900px) { .cart-layout { grid-template-columns: 1fr 340px; gap: 32px; } }
.page-title { font-family: var(--font-heading); font-size: clamp(22px, 4vw, 34px); font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.page-title__count { font-size: 15px; color: var(--color-text-muted); font-weight: 400; margin-left: 8px; }
.free-shipping-bar { background: linear-gradient(135deg,rgba(150,5,5,.08),rgba(182,182,182,.04)); border: 1px solid rgba(179,179,179,.2); border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px; }
.free-shipping-bar p { margin: 0 0 8px; font-size: 14px; }
.free-shipping-progress { height: 6px; background: var(--color-bg-alt); border-radius: 3px; overflow: hidden; }
.free-shipping-progress__bar { height: 100%; background: linear-gradient(90deg,var(--color-success),#d33434); border-radius: 3px; transition: width .5s ease; }
/* Product cell */
.cart-product { display: flex; gap: 12px; align-items: center; }
.cart-product__img { width: 72px; height: 72px; border-radius: var(--radius); border: 1px solid var(--color-border); overflow: hidden; flex-shrink: 0; text-decoration: none; }
.cart-product__img img { width: 100%; height: 100%; object-fit: contain; }
.cart-product__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cart-product__name { font-size: 14px; font-weight: 600; color: var(--color-text); text-decoration: none; }
.cart-product__name:hover { color: var(--color-primary); }
.cart-product__brand, .cart-product__sku { font-size: 12px; color: var(--color-text-muted); }
/* Table desktop */
.cart-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cart-table thead th { background: var(--color-bg-alt); padding: 10px 14px; text-align: left; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 2px solid var(--color-border); white-space: nowrap; }
.cart-table tbody td {padding: 5px 8px;border-bottom: 1px solid var(--color-border);vertical-align: middle;}
.cart-table tfoot td { padding: 12px 14px; border-top: 2px solid var(--color-border); font-weight: 600; }
.cart-table__remove { text-align: right; width: 40px; }
.cart-remove-btn { background: none; border: none; color: var(--color-text-muted); cursor: pointer; padding: 6px; border-radius: var(--radius-sm); transition: color .15s; }
.cart-remove-btn:hover { color: var(--color-danger); }
.cart-actions { display: flex; gap: 12px; justify-content: space-between; margin-top: 16px; flex-wrap: wrap; }
/* Summary panel */
.cart-summary { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px; }
@media (min-width: 900px) { .cart-summary { position: sticky; top: calc(var(--header-h) + var(--nav-h) + 16px); } }
.cart-summary__title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.cart-summary__rows { display: flex; flex-direction: column; gap: 12px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; }
.cart-summary__row--total { font-size: 18px; font-weight: 700; padding-top: 12px; border-top: 2px solid var(--color-border); margin-top: 4px; }
.cart-summary__payment-icons { display: flex; gap: 8px; margin-top: 16px; justify-content: center; flex-wrap: wrap; }
.payment-icon { display: inline-block; padding: 4px 10px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; }
.cart-summary__secure { text-align: center; font-size: 12px; color: var(--color-text-muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 4px; }
/* Mobile: table → cards (duplicate block — deferred to earlier block above) */
@media (max-width: 640px) {
  /* All mobile cart card styles are defined in the earlier block — this block stays minimal */
  .text-right, .text-center { text-align: left !important; }
}

/* ──────────────────────────────────────────
   CHECKOUT EXTRAS
   ────────────────────────────────────────── */
.checkout-steps { background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); padding: 12px 0; }
.checkout-steps__list { display: flex; list-style: none; gap: 0; margin: 0; padding: 0; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); justify-content: center; }
.checkout-steps__item { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--color-text-muted); padding: 0 20px; }
.checkout-steps__item.is-done { color: var(--color-success); }
.checkout-steps__item.is-active { color: var(--color-primary); font-weight: 700; }
.checkout-steps__item span { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--color-bg-alt); border: 2px solid currentColor; font-size: 12px; }
.checkout-steps__item.is-done span { background: var(--color-success); color: #fff; border-color: var(--color-success); }
.checkout-steps__item.is-active span { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.checkout-layout {display: grid;grid-template-columns: 1fr 380px;gap: 8px;align-items: start;}
@media (max-width: 960px) { .checkout-layout { grid-template-columns: 1fr; } }
.form-section {background: var(--color-white);border: 1px solid var(--color-border);border-radius: var(--radius-lg);padding: 12px;margin-bottom: 6px;}
.form-section__title {font-family: var(--font-heading);font-size: 18px;font-weight: 700;color: var(--color-primary);margin-bottom: 0px;padding-bottom: 12px;border-bottom: 1px solid var(--color-border);}
.form-grid {display: grid;gap: 10px;margin-top: 10px;}
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 600px) { .form-grid--2, .form-grid--3 { grid-template-columns: 1fr; } }
.form-group {display: flex;flex-direction: column;gap: 6px;margin-bottom: 10px;}
.form-label { font-size: 14px; font-weight: 600; color: var(--color-text); }
.form-label span { color: var(--color-danger); }
.form-input {padding: 5px 14px;border: 2px solid #646464;border-radius: var(--radius);font-size: 15px;font-family: var(--font-body);transition: border-color .2s, box-shadow .2s;background: #fff;border: 2px solid #646464;}
.form-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(30,58,95,.1); }
.has-error .form-input { border-color: var(--color-danger); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-textarea {resize: vertical;min-height: 50px;}
.form-hint { font-size: 12px; color: var(--color-text-muted); }
.form-hint-inline { font-size: 12px; color: var(--color-text-muted); font-weight: 400; }
.form-error { font-size: 12px; color: var(--color-danger); }
.payment-instructions { background: var(--color-bg-alt); border-radius: var(--radius); padding: 16px; margin-top: 12px; font-size: 14px; }
.payment-instructions h4 { margin: 0 0 10px; font-size: 15px; }
.payment-instructions ol { margin: 0; padding-left: 20px; }
.payment-instructions li { padding: 4px 0; }
.checkout-summary {background: var(--color-white);border: 1px solid var(--color-border);border-radius: var(--radius-lg);padding: 11px;position: sticky;top: calc(var(--header-h) + var(--nav-h) + 16px);}
.checkout-summary__title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.checkout-items { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.checkout-item { display: flex; gap: 12px; align-items: center; padding: 12px; border-bottom: 1px solid var(--color-border); }
.checkout-item:last-child { border-bottom: none; }
.checkout-item__img { position: relative; flex-shrink: 0; }
.checkout-item__img img { width: 48px; height: 48px; object-fit: contain; border-radius: var(--radius-sm); }
.checkout-item__qty { position: absolute; top: -6px; right: -6px; background: var(--color-primary); color: #fff; font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.checkout-item__info { flex: 1; min-width: 0; }
.checkout-item__name { display: block; font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-item__sku { font-size: 11px; color: var(--color-text-muted); }
.checkout-item__price { font-size: 14px; font-weight: 600; white-space: nowrap; }
.checkout-summary__rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.checkout-summary__row { display: flex; justify-content: space-between; font-size: 14px; }
.checkout-summary__row--total { font-size: 18px; font-weight: 700; padding-top: 10px; border-top: 2px solid var(--color-border); }
.checkout-summary__terms { font-size: 12px; color: var(--color-text-muted); text-align: center; margin-top: 12px; }

/* ──────────────────────────────────────────
   ORDER SUCCESS EXTRAS
   ────────────────────────────────────────── */
.order-success { background: var(--color-bg-alt); }
.order-success__icon { text-align: center; margin-bottom: 24px; margin-top: 40px; }
.checkmark-circle { width: 80px; height: 80px; }
.checkmark-circle__bg { stroke: var(--color-success); stroke-dasharray: 166; stroke-dashoffset: 166; animation: stroke-bg .4s cubic-bezier(.65,0,.45,1) forwards; }
.checkmark-circle__check { stroke: var(--color-success); stroke-width: 3; stroke-dasharray: 48; stroke-dashoffset: 48; animation: stroke-check .3s cubic-bezier(.65,0,.45,1) .4s forwards; }
@keyframes stroke-bg { to { stroke-dashoffset: 0; } }
@keyframes stroke-check { to { stroke-dashoffset: 0; } }
.order-success__title { font-family: var(--font-heading); font-size: clamp(24px,4vw,36px); font-weight: 700; color: var(--color-primary); text-align: center; margin-bottom: 8px; }
.order-success__subtitle { text-align: center; color: var(--color-text-muted); margin-bottom: 32px; }
.order-success__number { text-align: center; background: var(--color-white); border: 2px dashed var(--color-secondary); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 32px; }
.order-success__number span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-text-muted); margin-bottom: 6px; }
.order-success__number strong { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--color-secondary); }
.order-success__steps { background: var(--color-white); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 32px; }
.order-success__steps-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--color-primary); }
.order-success__step-list { list-style: none; padding: 0; margin: 0; }
.order-success__step { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--color-border); align-items: flex-start; }
.order-success__step:last-child { border-bottom: none; }
.order-success__step-num { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--color-border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; color: var(--color-text-muted); }
.order-success__step.is-done .order-success__step-num { background: var(--color-success); color: #fff; border-color: var(--color-success); }
.order-success__step.is-active .order-success__step-num { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }
.order-success__step strong { display: block; font-size: 15px; margin-bottom: 4px; }
.order-success__step p { font-size: 14px; color: var(--color-text-muted); margin: 0; }
.order-success__summary { background: var(--color-white); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 32px; }
.order-success__delivery-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
@media (max-width: 600px) { .order-success__delivery-info { grid-template-columns: 1fr; } }
.order-success__address h3, .order-success__payment h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--color-text-muted); margin-bottom: 8px; }
.order-success__address address { font-size: 15px; }
.order-success__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.order-status-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.status-pending    { background: rgba(217,119,6,.1);   color: #D97706; }
.status-confirmed  { background: rgba(5,150,105,.1);   color: var(--color-success); }
.status-processing { background: rgba(30,58,95,.1);    color: var(--color-primary); }
.status-shipped    { background: rgba(59,130,246,.1);  color: #3B82F6; }
.status-delivered  { background: rgba(5,150,105,.15);  color: var(--color-success); }
.status-cancelled  { background: rgba(220,38,38,.1);   color: var(--color-danger); }
.status-refunded   { background: rgba(107,114,128,.1); color: var(--color-text-muted); }

/* ──────────────────────────────────────────
   TRACK ORDER EXTRAS
   ────────────────────────────────────────── */
.track-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; margin-bottom: 32px; }
@media (max-width: 600px) { .track-form { grid-template-columns: 1fr; } }
.track-result { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 24px; }
.track-order-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--color-border); gap: 12px; flex-wrap: wrap; }
.track-order-num { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--color-primary); }
.track-order-date { font-size: 13px; color: var(--color-text-muted); margin: 0; }
.track-stepper { display: grid; grid-template-columns: repeat(5, 1fr); padding: 32px 24px; gap: 0; border-bottom: 1px solid var(--color-border); }
@media (max-width: 700px) { .track-stepper { grid-template-columns: 1fr; gap: 0; } }
.track-step { text-align: center; position: relative; }
.track-step + .track-step::before { content: ''; position: absolute; left: -50%; top: 24px; width: 100%; height: 2px; background: var(--color-border); }
.track-step.is-done + .track-step::before, .track-step.is-active + .track-step::before { background: var(--color-success); }
.track-step__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--color-bg-alt); border: 2px solid var(--color-border); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-size: 20px; position: relative; z-index: 1; transition: all .3s; }
.track-step.is-done .track-step__icon { background: var(--color-success); border-color: var(--color-success); }
.track-step.is-active .track-step__icon { background: var(--color-secondary); border-color: var(--color-secondary); animation: pulse-icon 2s infinite; }
@keyframes pulse-icon { 0%,100% { box-shadow: 0 0 0 0 rgba(232,93,4,.3); } 50% { box-shadow: 0 0 0 8px rgba(232,93,4,0); } }
.track-step__label { font-size: 13px; font-weight: 700; color: var(--color-text); }
.track-step.is-done .track-step__label { color: var(--color-success); }
.track-step.is-active .track-step__label { color: var(--color-secondary); }
.track-step__sub { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }
.track-details { padding: 24px; }
.track-details__row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--color-border); font-size: 14px; gap: 16px; }
.track-details__row:last-child { border-bottom: none; }
.track-details__row > span:first-child { color: var(--color-text-muted); }

/* ──────────────────────────────────────────
   MY ACCOUNT EXTRAS
   ────────────────────────────────────────── */
.account-lookup-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 32px; }
.orders-list { display: flex; flex-direction: column; gap: 16px; }
.order-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.order-card__header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; background: var(--color-bg-alt); flex-wrap: wrap; gap: 12px; }
.order-card__num { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.order-card__date { font-size: 13px; color: var(--color-text-muted); margin-left: 12px; }
.order-card__items { padding: 16px 20px; border-bottom: 1px solid var(--color-border); }
.order-card__item { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 4px 0; }
.order-card__item img { border-radius: var(--radius-sm); object-fit: contain; }
.order-card__more { font-size: 12px; color: var(--color-text-muted); font-style: italic; }
.order-card__footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; gap: 12px; }
.order-card__total { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--color-secondary); }

/* ──────────────────────────────────────────
   ABOUT PAGE EXTRAS
   ────────────────────────────────────────── */
.about-block { margin: 32px 0; }
.about-block__icon { font-size: 48px; margin-bottom: 16px; }
.about-block__title { font-family: var(--font-heading); font-size: clamp(22px,3vw,30px); font-weight: 700; color: var(--color-primary); margin-bottom: 16px; }
.about-block__content { font-size: 16px; line-height: 1.8; color: var(--color-text); white-space: pre-line; }
@media (max-width: 768px) { .about-block--story { grid-template-columns: 1fr !important; } }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; }
.stat-card { text-align: center; background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px 16px; }
.stat-card__num { font-family: var(--font-heading); font-size: 40px; font-weight: 700; color: var(--color-secondary); margin-bottom: 4px; }
.stat-card__label { font-size: 13px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .5px; }

/* ──────────────────────────────────────────
   CONTACT PAGE EXTRAS
   ────────────────────────────────────────── */
.contact-layout {display: grid;grid-template-columns: 280px 1fr;gap: 20px;align-items: start;}
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {background: var(--color-white);border: 1px solid var(--color-border);border-radius: var(--radius-lg);padding: 10px;text-align: center;}
.contact-card__icon { font-size: 32px; margin-bottom: 8px; }
.contact-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--color-primary); }
.contact-card p { font-size: 13px; color: var(--color-text-muted); margin-bottom: 12px; }
.contact-form-wrap {background: var(--color-white);border: 1px solid var(--color-border);border-radius: var(--radius-lg);padding: 20px;}

/* ──────────────────────────────────────────
   FAQ PAGE EXTRAS
   ────────────────────────────────────────── */
.faq-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.faq-cat-btn { padding: 8px 18px; background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: 20px; font-size: 14px; cursor: pointer; transition: all .2s; }
.faq-cat-btn.is-active, .faq-cat-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.faq-group { margin-bottom: 40px; }
.faq-group__title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--color-primary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--color-secondary); }

/* ──────────────────────────────────────────
   POLICY PAGES EXTRAS
   ────────────────────────────────────────── */
.policy-section__title { font-family: var(--font-heading); font-size: clamp(18px,2.5vw,24px); font-weight: 700; color: var(--color-primary); margin-bottom: 12px; }
.policy-section__content { font-size: 15px; line-height: 1.8; white-space: pre-line; }
.toc a { font-size: 14px; color: var(--color-primary); }
.toc li { margin-bottom: 4px; }

/* ──────────────────────────────────────────
   SECTION SHARED
   ────────────────────────────────────────── */
.section {padding: 24px 0;}
.section--sm {/* background: #fff; */padding: 20px 0;}
.section-title {font-family: var(--font-heading);font-size: clamp(24px,3.5vw,36px);font-weight: 700;color: var(--color-primary);margin-bottom: 0px;line-height: 1.2;}
.section-title span { color: var(--color-secondary); }
.section-subtitle { font-size: 15px; color: var(--color-text-muted); margin-bottom: 0; }
.badge {display: inline-block;padding: 3px 10px;border-radius: 5px;font-size: 11px;font-weight: 700;text-transform: uppercase;letter-spacing: .5px;}
.badge--brand { background: rgba(30,58,95,.1); color: var(--color-primary); }
.badge--success { background: rgba(5,150,105,.12); color: var(--color-success); }
.badge--warning { background: rgba(217,119,6,.12); color: #D97706; }

/* ──────────────────────────────────────────
   BREADCRUMB
   ────────────────────────────────────────── */
.breadcrumb-bar {background: var(--color-bg-alt);border-bottom: 1px solid var(--color-border);padding: 10px 0 8px 12px;}
.breadcrumb { display: flex; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; gap: 0; font-size: 13px; }
.breadcrumb__item { display: flex; align-items: center; }
.breadcrumb__item + .breadcrumb__item::before { content: '/'; margin: 0 8px; color: var(--color-text-muted); }
.breadcrumb__item a { color: var(--color-primary); text-decoration: none; }
.breadcrumb__item a:hover { text-decoration: underline; }
.breadcrumb__item.is-active { color: var(--color-text-muted); }

/* ──────────────────────────────────────────
   QTY SELECTOR
   ────────────────────────────────────────── */
.qty-selector { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.qty-selector--sm .qty-btn { width: 30px; height: 30px; font-size: 14px; }
.qty-selector--sm .qty-input { width: 40px; font-size: 14px; }
.qty-btn { width: 36px; height: 40px; background: var(--color-bg-alt); border: none; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.qty-btn:hover { background: var(--color-primary); color: #fff; }
.qty-input { width: 48px; height: 40px; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); text-align: center; font-size: 15px; font-weight: 600; }
.qty-input:focus { outline: none; }

/* ──────────────────────────────────────────
   MODEL PAGE
   ────────────────────────────────────────── */

/* Hero */
.model-hero {background: var(--color-bg-alt);border-bottom: 1px solid var(--color-border);padding: 0px 0;}
.model-hero__inner {display: grid;grid-template-columns: 1fr 1fr;gap: 10px;align-items: center;}
.model-hero__image {text-align: center;border: 1px solid #d5d5d5;margin: 17px 0px;}
.model-hero__image img {max-width: 100%;max-height: 287px;object-fit: contain;}
.model-hero__content {display: flex;flex-direction: column;gap: 14px;}
.model-hero__brand-row { display: flex; align-items: center; gap: 12px; }
.model-hero__brand-logo-wrap img {max-height: 36px;width: auto;object-fit: contain;}
.model-hero__title { font-family: var(--font-heading); font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--color-primary); line-height: 1.15; margin: 0; }
.model-hero__subtitle { color: var(--color-text-muted); font-size: 15px; margin: 0; }
.model-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.model-hero__cats { display: flex; flex-wrap: wrap; gap: 8px; }
.model-hero__cat-pill {display: inline-flex;align-items: center;gap: 6px;background: #fff;border: 1px solid #bebebe;border-radius: 3px;padding: 4px 12px;font-size: 12px;text-decoration: none;color: var(--color-text);transition: border-color .15s, background .15s;}
.model-hero__cat-pill:hover {border-color: var(--color-secondary);background: #d2d2d2;}
.model-hero__cat-count { background: var(--color-border); border-radius: 10px; padding: 1px 6px; font-size: 11px; font-weight: 600; }
@media (max-width: 768px) {
  .model-hero__inner { grid-template-columns: 1fr; }
  .model-hero__image { order: -1; }
  .model-hero__image img { max-height: 220px; }
}

/* Parts tabs */
.model-parts { padding: 40px 0; }
.model-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--color-border); margin-bottom: 32px; }
.model-tab { background: none; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; padding: 12px 24px; font-size: 15px; font-weight: 600; color: var(--color-text-muted); cursor: pointer; transition: color .15s, border-color .15s; }
.model-tab:hover { color: var(--color-primary); }
.model-tab.is-active { color: var(--color-primary); border-bottom-color: var(--color-secondary); }
.model-tab-panel { display: block; }
.model-tab-panel[hidden] { display: none; }

/* Category sections */
.model-cat-section { margin-bottom: 48px; }
.model-cat-section__header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.model-cat-section__title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--color-primary); margin: 0; }
.model-cat-section__count { font-size: 14px; font-weight: 400; color: var(--color-text-muted); }
.model-cat-section__see-all { font-size: 13px; font-weight: 600; color: var(--color-secondary); text-decoration: none; white-space: nowrap; }
.model-cat-section__see-all:hover { text-decoration: underline; }
.model-cat-section__more { text-align: center; margin-top: 16px; }
.model-empty { padding: 48px 0; color: var(--color-text-muted); text-align: center; font-size: 16px; }

/* Related models section */
.related-models { padding: 40px 0 60px; border-top: 1px solid var(--color-border); margin-top: 20px; }
.related-models__heading { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--color-primary); margin-bottom: 24px; }

/* ──────────────────────────────────────────
   MODEL CARDS GRID (shared: model.php + brand.php)
   ────────────────────────────────────────── */
.model-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.model-card { display: flex; flex-direction: column; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; text-decoration: none; color: inherit; transition: box-shadow .18s, transform .18s; }
.model-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.model-card__img-wrap {aspect-ratio: 3/2;overflow: hidden;background: var(--color-bg-alt);display: flex;align-items: center;justify-content: center;}
.model-card__img-wrap img {width: 100%;height: 100%;object-fit: contain;padding: 0px 0 0;transition: transform .25s;}
.model-card:hover .model-card__img-wrap img {transform: scale(1.04);transform: unset;}
.model-card__img-wrap--all { color: var(--color-text-muted); }
.model-card--all { border-style: dashed; }
.model-card--all:hover { border-style: solid; }
.model-card__body {padding: 3px 12px;display: flex;flex-direction: column;gap: 3px;flex: 1;background-color: #f8f8f8;}
.model-card__name { font-size: 13px; font-weight: 700; color: var(--color-text); line-height: 1.3; }
.model-card__type { font-size: 11px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 480px) {
  .model-cards-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
}

/* ──────────────────────────────────────────
   BRAND PAGE
   ────────────────────────────────────────── */

/* Brand Hero */
.brand-hero {background: var(--color-bg-alt);border-bottom: 1px solid var(--color-border);padding: 8px 0;background: #f8f8f8;}
.brand-hero__inner {display: grid;grid-template-columns: auto 1fr;gap: 16px;align-items: center;}
.brand-hero__logo-wrap {width: 200px;display: flex;align-items: center;justify-content: center;background: #fff;border: 1px solid var(--color-border);border-radius: var(--radius-lg);padding: 1px;height: 200px;}
.brand-hero__logo {max-width: 100%;max-height: 100%;object-fit: contain;}
.brand-hero__title {font-family: var(--font-heading);font-size: clamp(23px, 4vw, 35px);font-weight: 800;color: var(--color-primary);margin: 0 0 0px;}
.brand-hero__desc { color: var(--color-text-muted); font-size: 15px; line-height: 1.6; max-width: 560px; margin: 0; }
.brand-hero__stats {display: flex;gap: 10px;margin-top: 8px;}
.brand-hero__stat {text-align: center;border: 1px solid #d3d3d3;padding: 8px 8px 0px;}
.brand-hero__stat-number {display: block;font-size: 19px;font-weight: 600;color: var(--color-secondary);line-height: 1;}
.brand-hero__stat-label {font-size: 11px;color: var(--color-text-muted);text-transform: uppercase;letter-spacing: .5px;}
.brand-hero__actions {display: flex;gap: 12px;flex-wrap: wrap;margin-top: 9px;}
@media (max-width: 600px) {
  .brand-hero__inner { grid-template-columns: 1fr; text-align: center; }
  .brand-hero__logo-wrap { margin: 0 auto; }
  .brand-hero__stats { justify-content: center; }
  .brand-hero__actions { justify-content: center; }
}

/* Brand section shared */
.brand-section__heading {font-family: var(--font-heading);font-size: 26px;font-weight: 700;color: var(--color-primary);margin-bottom: 8px;display: flex;align-items: baseline;justify-content: space-between;gap: 16px;}
.brand-section__see-all { font-size: 13px; font-weight: 600; color: var(--color-secondary); text-decoration: none; }
.brand-section__see-all:hover { text-decoration: underline; }
.brand-models {padding: 20px 20px;}
.brand-cats {padding: 20px 20px 20px;}
.brand-featured {padding: 10px 20px 60px;}

/* Category quick links */
.cat-quicklinks { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-quicklinks__item {display: inline-block;background: var(--color-bg-alt);border: 1px solid #c6c6c6;border-radius: 5px;padding: 3px 16px;font-size: 13px;font-weight: 500;text-decoration: none;color: var(--color-text);transition: background .15s, border-color .15s;}
.cat-quicklinks__item:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.cat-quicklinks__item--all { background: var(--color-primary); border-color: var(--color-primary); color: #fff; font-weight: 700; }
.cat-quicklinks__item--all:hover { opacity: .9; }

/* Sub Items (Models / Sub-categories) on Shop Page */
.shop-sub-items { margin-bottom: 32px; margin-top: 16px; }
.sub-items-grid { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 0; padding: 0; }
.sub-item-card {
    display: inline-block;
    padding: 3px 16px;
    background: var(--color-bg-alt);
    border: 1px solid #dadada;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s;
}
.sub-item-card:hover, .sub-item-card.is-active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-shadow: unset;
}

/* Product card extras */
.product-card__model-link { font-size: 11px; color: var(--color-secondary); text-decoration: none; display: block; margin-bottom: 2px; }
.product-card__model-link:hover { text-decoration: underline; }

/* Extra badges */
.badge--cat {background: #f1f1f1;color: #000000;}
.badge--type { background: #fff3e0; color: #e65100; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px; }

/* ──────────────────────────────────────────
   PAGE HERO — inner pages
   ────────────────────────────────────────── */
.page-hero {background: linear-gradient(135deg, var(--color-primary,#0d1b2a) 0%, #1e3a5f 100%);color: #fff;padding: 0px 0 20px;border-bottom: 3px solid var(--color-secondary,#e74c00);}
.page-hero__eyebrow { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--color-secondary,#e74c00); background: rgba(231,76,0,.12); padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }
.page-hero__title { font-family: var(--font-heading,'Barlow Condensed',sans-serif); font-size: clamp(28px,5vw,44px); font-weight: 800; color: #fff; margin: 0 0 10px; line-height: 1.1; }
.page-hero__subtitle { font-size: 16px; color: rgba(255,255,255,.75); margin: 0; max-width: 520px; }
.page-hero--light { background: #f8fafc; border-bottom: 2px solid #e5e7eb; }
.page-hero--light .page-hero__eyebrow { background: rgba(231,76,0,.08); }
.page-hero--light .page-hero__title { color: var(--color-primary,#0d1b2a); }
.page-hero--light .page-hero__subtitle { color: #6b7280; }

/* Inner page container */
.inner-page { background: #fff; min-height: 60vh; }
.inner-page .section {padding-top: 28px;padding-bottom: 16px;}

/* Track order card */
.track-card {background: #fff;border: 1px solid #e5e7eb;border-radius: 7px;overflow: hidden;box-shadow: unset;}
.track-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 28px;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}
.track-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.track-card__title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--color-primary); margin: 0 0 2px; }
.track-card__desc { font-size: 13px; color: var(--color-text-muted); margin: 0; }
/* Track form */
.track-form { padding: 24px 28px 20px; }
.track-input-wrap {
  display: flex; align-items: center;
  border: 2px solid var(--color-border); border-radius: var(--radius-full);
  background: #fff; overflow: hidden; transition: border-color .15s;
  margin-bottom: 12px;
}
.track-input-wrap:focus-within { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(13,27,42,.07); }
.track-input-prefix {
  padding: 0 14px; color: var(--color-text-muted); flex-shrink: 0;
  display: flex; align-items: center;
}
.track-input {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 14px 8px; font-size: 15px; color: var(--color-text); min-width: 0;
  font-family: inherit;
}
.track-input::placeholder { color: #b0b8c1; }
.track-submit-btn {
  background: var(--color-primary); color: #fff; border: none; cursor: pointer;
  padding: 0 22px; height: 100%; min-height: 50px; display: flex; align-items: center;
  gap: 7px; font-size: 14px; font-weight: 700; flex-shrink: 0;
  transition: background .15s;
}
.track-submit-btn:hover { background: var(--color-primary-dark); }
@media (max-width: 480px) {
  .track-submit-btn span { display: none; }
  .track-submit-btn { padding: 0 16px; }
}
.track-hint {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 12px; color: var(--color-text-muted); margin: 0;
}
.track-hint svg { flex-shrink: 0; color: var(--color-text-muted); }
.track-hint__link { color: var(--color-secondary); text-decoration: none; font-weight: 600; }
.track-hint__link:hover { text-decoration: underline; }

/* Contact info cards */
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; margin-bottom: 32px; }
.contact-info-card {background: #fff;border: 1px solid #cdcdcd;border-radius: 5px;padding: 20px;display: flex;flex-direction: column;align-items: flex-start;gap: 8px;}
.contact-info-card__icon {width: 40px;height: 40px;background: rgb(147 147 147 / 10%);border-radius: 5px;display: flex;align-items: center;justify-content: center;color: var(--color-secondary,#e74c00);}
.contact-info-card__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #9ca3af; }
.contact-info-card__value { font-size: 15px; font-weight: 600; color: #1a1a1a; }
.contact-info-card__value a { color: inherit; text-decoration: none; }
.contact-info-card__value a:hover { color: var(--color-secondary,#e74c00); }

/* ──────────────────────────────────────────
   LIGHT FOOTER
   ────────────────────────────────────────── */
.site-footer--light .footer-main { background: #fff; color: #1a1a1a; border-top: 1px solid #e5e7eb; }
.site-footer--light .footer-col__title { color: #1a1a1a; border-bottom-color: #e5e7eb; }
.site-footer--light .footer-links li a {color: #000;}
.site-footer--light .footer-links li a:hover { color: var(--color-secondary); }
.site-footer--light .footer-contact__item {color: #000;}
.site-footer--light .footer-tagline {color: #000;}
.site-footer--light .footer-social__link { border-color: #d1d5db; color: #374151; background: #f9fafb; }
.site-footer--light .footer-social__link:hover { background: var(--color-secondary); color: #fff; border-color: var(--color-secondary); }
.site-footer--light .footer-bottom { background: #f3f4f6; border-top: 1px solid #e5e7eb; }
.site-footer--light .footer-bottom__copy {color: #000;}
.site-footer--light .footer-bottom__copy a {color: #000;}
.site-footer--light .trust-bar { background: #f8fafc; border-bottom: 1px solid #e5e7eb; }
.site-footer--light .trust-bar__item strong { color: #1a1a1a; }
.site-footer--light .trust-bar__item span { color: #6b7280; }

.footer-links li { border-bottom: 1px solid #ededed;}
/* ──────────────────────────────────────────
   LIGHT MAIN NAV
   ────────────────────────────────────────── */
.main-nav--light {background: #f9f9f9;border-top: 1px solid #e5e7eb;border-bottom: 1px solid #e5e7eb;}
.main-nav--light .main-nav__link { color: #1a1a1a; }
.main-nav--light .main-nav__link:hover,
.main-nav--light .main-nav__link--active { color: var(--color-secondary); background: rgba(0,0,0,.04); }
.main-nav--light .dropdown-menu { border-top: 2px solid var(--color-secondary); }

/* ──────────────────────────────────────────
   SHOP COLUMN SELECTOR
   ────────────────────────────────────────── */
.col-selector {display: flex;align-items: center;gap: 4px;display: none;}
.col-selector__label { font-size: 12px; color: var(--color-text-muted,#6b7280); margin-right: 4px; white-space: nowrap; }
.col-selector__btn { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border,#e5e7eb); border-radius: var(--radius-sm,4px); font-size: 13px; font-weight: 600; color: var(--color-text-muted,#6b7280); text-decoration: none; transition: all .15s; }
.col-selector__btn:hover,
.col-selector__btn.is-active { background: var(--color-primary,#0d1b2a); color: #fff; border-color: var(--color-primary,#0d1b2a); }

/* ──────────────────────────────────────────
   PRODUCTS GRID COLUMN VARIANTS
   ────────────────────────────────────────── */
.products-grid--cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.products-grid--cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.products-grid--cols-5 { grid-template-columns: repeat(5, 1fr) !important; }
@media (max-width: 1024px) {
  .products-grid--cols-5 { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (max-width: 768px) {
  .products-grid--cols-3,
  .products-grid--cols-4,
  .products-grid--cols-5 {grid-template-columns: repeat(2, 1fr) !important;}
}
@media (max-width: 400px) {
  .products-grid--cols-3,
  .products-grid--cols-4,
  .products-grid--cols-5 { grid-template-columns: 1fr !important; }
}

/* ──────────────────────────────────────────
   RELATED PRODUCTS — 5 COLUMNS × 2 ROWS
   ────────────────────────────────────────── */
.related-products .products-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .related-products .products-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .related-products .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .related-products .products-grid { grid-template-columns: repeat(2, 1fr); } }

/* ──────────────────────────────────────────
   SHOP PAGE — SIDEBAR & PAGINATION POLISH
   ────────────────────────────────────────── */
.shop-page { background: #fff; }
.shop-sidebar {background: #fff;border: 1px solid #e5e7eb;border-radius: 10px;padding: 11px;}
.filter-group {margin-bottom: 0px;border-bottom: 1px solid #f3f4f6;padding-bottom: 16px;}
.filter-group:last-child { border-bottom: none; margin-bottom: 0; }
.filter-group__title {font-size: 15px;font-weight: 700;text-transform: uppercase;letter-spacing: .7px;color: #374151;margin-bottom: 1px;background-color: #ececec;padding: 9px 8px 6px;}
.active-filters { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.active-filter-tag {display: inline-flex;align-items: center;gap: 4px;background: #efefef;color: var(--color-primary,#0d1b2a);font-size: 12px;font-weight: 600;padding: 1px 10px;border-radius: 4px;text-decoration: none;border: 1px solid #d0d8f0;margin-top: 7px;transition: background .15s;}
.active-filter-tag:hover { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; padding: 24px 0 8px; flex-wrap: wrap; }
.pagination__btn { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 10px; border-radius: 8px; font-size: 14px; font-weight: 500; border: 1px solid #e5e7eb; color: #374151; text-decoration: none; transition: all .15s; }
.pagination__btn:hover { background: #f3f4f6; border-color: #d1d5db; }
.pagination__btn.is-active { background: var(--color-primary,#0d1b2a); color: #fff; border-color: var(--color-primary,#0d1b2a); font-weight: 700; }
.pagination__dots { color: #9ca3af; font-size: 16px; padding: 0 4px; }

/* ──────────────────────────────────────────
   PAGINATION — horizontal row layout
   ────────────────────────────────────────── */
.pagination__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__list li { display: flex; }

/* ──────────────────────────────────────────
   VALUE CARDS — light theme variant
   ────────────────────────────────────────── */
.value-card--light {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg, 12px);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.value-card--light:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.value-card--light .value-card__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.value-card--light .value-card__title { font-size: 16px; font-weight: 700; color: var(--color-heading); margin-bottom: 8px; }
.value-card--light .value-card__text { font-size: 14px; color: var(--color-text-muted); line-height: 1.65; margin: 0; }

/* ──────────────────────────────────────────
   FAQ — CATEGORY FILTER BUTTONS
   ────────────────────────────────────────── */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}
.faq-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  line-height: 1;
}
.faq-cat-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.faq-cat-btn.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.faq-cat-btn svg { flex-shrink: 0; }

/* ──────────────────────────────────────────
   TRACK ORDER — step icon wrapper (SVG)
   ────────────────────────────────────────── */
.track-step__icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: #f1f5f9; border: 2px solid #e2e8f0; transition: all .25s; margin: 0 auto 10px; }
.track-step.is-done .track-step__icon { background: #22c55e; border-color: #22c55e; }
.track-step.is-done .track-step__icon svg { stroke: #fff; }
.track-step.is-active .track-step__icon { background: var(--color-primary); border-color: var(--color-primary); }
.track-step.is-active .track-step__icon svg { stroke: #fff; }

/* ──────────────────────────────────────────
   FOOTER BADGES — SVG icon alignment
   ────────────────────────────────────────── */
.footer-badge { display: inline-flex; align-items: center; gap: 6px; }
.footer-badge svg { flex-shrink: 0; opacity: .8; }

/* ──────────────────────────────────────────
   PRINT STYLES
   ────────────────────────────────────────── */
@media print {
  .site-header, .main-nav, .mobile-bottom-nav,
  .whatsapp-float, #toast-container, .footer-main, .footer-bottom { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ──────────────────────────────────────────
   STICKY ADD-TO-CART BAR  (mobile scroll)
   ────────────────────────────────────────── */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--color-bg, #fff);
  border-top: 1px solid var(--color-border, #e5e7eb);
  box-shadow: 0 -3px 16px rgba(0,0,0,.12);
  z-index: 850;
  transform: translateY(100%);
  transition: transform .25s ease;
  min-height: 60px;
}
.sticky-atc.is-visible { transform: translateY(0); }
.sticky-atc__info { flex: 1; min-width: 0; }
.sticky-atc__title {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text, #1a1a1a);
}
.sticky-atc__price {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-accent, #FFB703);
}
.sticky-atc__btn { white-space: nowrap; flex-shrink: 0; }
@media (min-width: 768px) { .sticky-atc { display: none !important; } }

/* ──────────────────────────────────────────
   PRODUCT SEO CONTENT BLOCK
   ────────────────────────────────────────── */
.product-seo-content {
  margin: 15px 0 0;
  padding: 15px 15px;
  background: var(--color-bg-alt, #f9fafb);
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--color-border, #e5e7eb);
  font-size: .925rem;
  line-height: 1.75;
  color: var(--color-text, #1a1a1a);
}
.product-seo-content__h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--color-dark, #0D1B2A);
}
.product-seo-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 22px 0 8px;
  color: var(--color-dark, #0D1B2A);
}
.product-seo-content p { margin: 0 0 12px; }
.product-seo-content__voice {
  font-size: .875rem;
  color: var(--color-text-muted, #6b7280);
  font-style: italic;
  margin: 8px 0 18px;
}
.voice-phrase {
  display: inline-block;
  margin-right: 8px;
  font-style: italic;
  color: var(--color-primary, #000);
}
.product-seo-content__credentials {
  font-size: .85rem;
  color: var(--color-text-muted, #6b7280);
  border-top: 1px solid var(--color-border, #e5e7eb);
  padding-top: 14px;
  margin-top: 18px !important;
}

/* ──────────────────────────────────────────
   PRODUCT FAQ ACCORDION
   ────────────────────────────────────────── */
.product-faq { margin-top: 12px; }
.faq-item { border-bottom: 1px solid var(--color-border, #e5e7eb); }
.faq-item:last-child { border-bottom: none; }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 9px 0;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-text, #1a1a1a);
  line-height: 1.5;
}
.faq-item__q:hover { color: var(--color-primary, #000); }
.faq-item__chevron { flex-shrink: 0; transition: transform .2s ease; }
.faq-item__q[aria-expanded="true"] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { padding-bottom: 12px; }
.faq-item__a-inner {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--color-text-muted, #6b7280);
}

/* ──────────────────────────────────────────
   M-PESA TRUST SIGNAL
   ────────────────────────────────────────── */
.product-info__mpesa {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 12px;
  background: #e8f5e9;
  border-radius: var(--radius, 6px);
  border: 1px solid #c8e6c9;
  font-size: .82rem;
  color: #2e7d32;
}
.product-info__mpesa strong { color: #1b5e20; }

/* ──────────────────────────────────────────
   PRODUCT DETAIL IMPROVEMENTS
   ────────────────────────────────────────── */

/* Brand + Model on same line */
.product-info__brand-model-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.product-info__brand-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .2s ease;
}
.product-info__brand-badge:hover {
  background: var(--color-dark, #0D1B2A);
  transform: translateY(-1px);
}
.product-info__model-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-bg-alt, #f9fafb);
  color: var(--color-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid var(--color-border);
  transition: all .2s ease;
}
.product-info__model-badge:hover {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
  transform: translateY(-1px);
}

/* How to Order section with SVG icons */
.short-desc__how-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 12px 0 8px !important;
  padding-bottom: 0px;
  border-bottom: 2px solid var(--color-primary);
}
.short-desc__how-icon {
  flex-shrink: 0;
  stroke-width: 2.5;
}
.short-desc__how-list li {
  display: -webkit-inline-box;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--color-text);
  padding: 0px 0;
  line-height: 1.7;
}
.how-list__icon {
  flex-shrink: 0;
  stroke: var(--color-success, #059669);
  margin-top: 2px;
}

/* Delivery & Returns tab - Section headings with icons */
.shipping-info__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--color-primary);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-border);
}
.shipping-info__heading:first-child {
  margin-top: 0;
}
.shipping-info__icon {
  flex-shrink: 0;
  stroke: var(--color-primary);
}
.shipping-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
  line-height: 1.65;
}
.shipping-list__icon {
  flex-shrink: 0;
  stroke: var(--color-success, #059669);
  margin-top: 2px;
}


/* ──────────────────────────────────────────
   ENHANCED PRODUCT DETAIL SECTION UX/UI
   ────────────────────────────────────────── */

/* Improved product detail layout */
.product-detail {
  padding: 17px 0 48px;
}
.product-detail__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

/* Enhanced gallery */
.product-gallery {
  position: sticky;
  top: 90px;
  align-self: flex-start;
}
.product-gallery__main-wrap {
  position: relative;
  border: 1px solid #e1e1e1;
  border-radius: 7px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #fff;
  box-shadow: unset;
  transition: unset;
}
.product-gallery__main-wrap:hover {
  box-shadow: unset;
}

/* Enhanced product info section */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-info__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.product-info__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.product-info__sku {
  font-weight: 500;
}
.product-info__price {
  margin: 2px 0 1px;
}
.product-info__price-main {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.03em;
}
.product-info__vat {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin-left: 8px;
  font-weight: 500;
}

/* Enhanced compatibility banner */
.product-info__compat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(5,150,105,0.06) 0%, rgba(5,150,105,0.02) 100%);
  border: 1.5px solid rgba(5,150,105,.2);
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-success);
  line-height: 1.55;
}
.product-info__compat svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.product-info__compat strong {
  font-weight: 700;
  color: #047857;
}

/* Enhanced short description */
.product-info__short-desc {
  width: 100%;
  font-size: 15.5px;
  color: var(--color-text);
  line-height: 1.7;
  margin: 0px 0 0px;
  padding: 1px 1px;
  background: #fff;
  border-radius: 8px;
  border-left: 0px solid var(--color-primary);
}
.product-info__short-desc p {
  margin: 0 0 10px;
}
.product-info__short-desc p:last-child {
  margin-bottom: 0;
}

/* Enhanced tabs */
.product-tabs {
  margin-top: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: 0;
  overflow-x: auto;
  background: #f8f9fa;
}
.product-tabs__tab {
  padding: 14px 28px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease;
  position: relative;
}
.product-tabs__tab:hover {
  color: var(--color-primary);
  background: rgba(0, 0, 0, 0.02);
}
.product-tabs__tab.is-active {
  color: var(--color-primary);
  background: #fff;
  border-bottom-color: var(--color-primary);
}
.product-tabs__panel {
  display: none;
  padding: 28px 32px;
  animation: fadeIn 0.3s ease;
}
.product-tabs__panel.is-active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Enhanced SEO content block */
.product-seo-content {
  margin: 16px 0 0;
  padding: 32px 36px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: unset;
  font-size: .935rem;
  line-height: 1.75;
  color: var(--color-text);
}
.product-seo-content__h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-dark, #0D1B2A);
  letter-spacing: -0.02em;
}

/* Mobile & Tablet Responsive */
@media (max-width: 900px) {
  .product-detail__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-gallery {
    position: relative;
    top: auto;
  }
  .product-tabs__tab {
    padding: 12px 20px;
    font-size: 14px;
  }
  .product-tabs__panel {
    padding: 24px 20px;
  }
  .product-seo-content {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .product-detail {
    padding: 20px 0 32px;
  }
  .product-detail__layout {
    gap: 24px;
  }
  .product-info__title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 12px;
  }
  .product-info__price-main {
    font-size: 32px;
  }
  .product-info__short-desc {
    padding: 14px 16px;
    font-size: 14.5px;
  }
  .product-tabs__tab {
    padding: 11px 16px;
    font-size: 13px;
  }
  .product-tabs__panel {
    padding: 20px 16px;
  }
  .product-seo-content {
    padding: 20px 16px;
  }
  .product-seo-content__h2 {
    font-size: 1.15rem;
    line-height: 23px;
  }
}





.gmc-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 4px 12px !important;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s;
    margin-bottom: 6px;
}

.gmc-chat-header {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    background: #000;
    color: #fff;
    padding: 4px 7px !important;
    border-radius: 4px 4px 0 0;
}

.gmc-fab.is-open .gmc-fab__icon--close {
    display: flex
;
    display: none !important;
}

.gmc-fab__icon {
    display: flex
;
    align-items: center;
    display: none !important;
}

.gmc-fab {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9998;
    display: flex
;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0px 0 0 0;
    cursor: pointer;
    padding: 8px 20px 8px 16px !important;
    box-shadow: unset !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    width: 249px;
    justify-content: center;
    transition: unset !important;
}

/* ══════════════════════════════════════════
   BRAND STRIP — LARGER LOGOS
   ══════════════════════════════════════════ */
.brand-strip__logo-wrap { width: 140px !important; height: 80px !important; }
.brand-strip__logo-wrap img {max-width: 137px !important;max-height: 108px !important;}

/* ══════════════════════════════════════════
   WHY CHOOSE US — SVG ICON SIZING
   ══════════════════════════════════════════ */
.value-card__icon svg { display: block; margin: 0 auto; color: #fff; opacity: .95; }
.value-card__icon { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

/* ══════════════════════════════════════════
   MOBILE DRAWER
   ══════════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -62vw;
  width: 48vw;
  min-width: 260px;
  max-width: 340px;
  height: 100%;
  height: 97dvh;
  background: #fff;
  z-index: 1300;
  display: none;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -6px 0 32px rgba(0,0,0,.22);
  transition: right .28s cubic-bezier(.4,0,.2,1);
  z-index: 999999;
}
@media (max-width: 767px) { .mobile-drawer { display: flex; } }
.mobile-drawer.is-open { right: 0; }

.mobile-drawer__overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.48);
  z-index: 1299;
  opacity: 0; pointer-events: none;
  transition: opacity .28s;
  display: none;
}
@media (max-width: 767px) { .mobile-drawer__overlay { display: block; } }
.mobile-drawer__overlay.is-active { opacity: 1; pointer-events: auto; }

.mobile-drawer__header,
.mobile-drawer__subheader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 9px;
  border-bottom: 1px solid var(--color-border, #e5e7eb);
  flex-shrink: 0;
  background: #fff;
}
.mobile-drawer__logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading, sans-serif);
  font-weight: 700; font-size: 15px;
  color: var(--color-primary, #1E3A5F);
}
.mobile-drawer__close,
.mobile-drawer__back {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #000;
  border: none;
  padding: 6px 8px;
  cursor: pointer;
  border-radius: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: background .15s;
}
.mobile-drawer__close:hover,
.mobile-drawer__back:hover {/* background: var(--color-bg-alt, #f3f4f6); */}

.mobile-drawer__subheader span {
  font-weight: 700; font-size: 14px;
  color: var(--color-primary, #1E3A5F);
}

.mobile-drawer__panels {
  flex: 1; overflow: hidden;
  position: relative;
}
.mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  background: #fff;
}
.mobile-drawer__panel--main { transform: translateX(0); }
.mobile-drawer__panel--main.is-hidden { transform: translateX(-100%); }
.mobile-drawer__panel--sub  { transform: translateX(100%); }
.mobile-drawer__panel--sub.is-active { transform: translateX(0); }

.mobile-drawer__list {
  list-style: none; margin: 0; padding: 6px 0;
}
.mobile-drawer__list li { border-bottom: 1px solid var(--color-border, #e5e7eb); }
.mobile-drawer__list li:last-child { border-bottom: none; }
.mobile-drawer__list a,
.mobile-drawer__list-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
  color: var(--color-text, #111);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s;
}
.mobile-drawer__list a:hover,
.mobile-drawer__list-btn:hover { background: var(--color-bg-alt, #f3f4f6); }
.mobile-drawer__list-all { font-weight: 700 !important; color: var(--color-primary, #1E3A5F) !important; }

.mobile-drawer__cta {
  padding: 14px 9px 20px;
  flex-shrink: 0;
  border-top: 1px solid var(--color-border, #e5e7eb);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}
.mobile-drawer__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
}
.mobile-drawer__cta-btn:hover { opacity: .85; }
.mobile-drawer__cta-btn--wa   { background: #25D366; color: #fff; }
.mobile-drawer__cta-btn--call { background: var(--color-primary, #1E3A5F); color: #fff; }


media (max-width: 480px) {
    .gmc-fab {
        border-radius: 0;
        /* width: 249px !important; */
    }
}