/* ============================================================
   LUSO CONTAINERS — Premium Design System v2
   Fonts: Montserrat (display) + Poppins (body)
   Colors: Navy #0D2545 | Accent #E05A2B | White #FFFFFF
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --navy:        #0D2545;
  --navy-mid:    #1B3A6B;
  --navy-light:  #2356A0;
  --orange:      #E05A2B;
  --orange-dark: #C44D22;
  --orange-light:#F07040;
  --white:       #FFFFFF;
  --off-white:   #F8F9FC;
  --surface:     #F2F4F8;
  --border:      #E2E6EF;
  --border-dark: #C8CEDC;
  --text:        #0D1B2E;
  --text-mid:    #3A4B62;
  --text-muted:  #7A8899;
  --success:     #059669;
  --shadow-sm:   0 1px 4px rgba(13,37,69,.07);
  --shadow:      0 4px 20px rgba(13,37,69,.10);
  --shadow-md:   0 8px 32px rgba(13,37,69,.14);
  --shadow-lg:   0 20px 60px rgba(13,37,69,.18);
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --font-display:'Montserrat', sans-serif;
  --font-body:   'Poppins', sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           0.22s;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin-bottom: 1rem; color: var(--text-mid); }
p:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.label-navy { color: var(--navy-light); }

/* ── Layout ─────────────────────────────────────────────── */
.container    { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 900px;  margin: 0 auto; padding: 0 28px; }
.section      { padding: 88px 0; }
.section-sm   { padding: 56px 0; }
.section-lg   { padding: 120px 0; }

/* ── Gradient utilities ─────────────────────────────────── */
.grad-navy {
  background: linear-gradient(135deg, #081729 0%, #0D2545 45%, #1B3A6B 100%);
}
.grad-orange {
  background: linear-gradient(135deg, #C44D22 0%, #E05A2B 60%, #F07040 100%);
}
.text-grad {
  background: linear-gradient(135deg, var(--orange) 0%, #F07040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(224,90,43,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,90,43,.45);
}
.btn-navy {
  background: linear-gradient(135deg, #081729, var(--navy-mid));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,37,69,.3);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,37,69,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-dark);
}
.btn-outline-navy:hover {
  border-color: var(--navy);
  background: var(--surface);
}
.btn-sm  { padding: 9px 18px; font-size: .75rem; }
.btn-lg  { padding: 17px 40px; font-size: .875rem; }
.btn-xl  { padding: 20px 48px; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  font-family: var(--font-body);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.72);
  transition: color var(--t);
}
.topbar-item:hover { color: var(--white); }
.topbar-item a { color: inherit; }
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
}

/* ── Header ──────────────────────────────────────────────── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  transition: box-shadow var(--t);
}
header.scrolled {
  box-shadow: 0 2px 24px rgba(13,37,69,.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 28px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 52px; width: auto; }

/* Navigation */
nav.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--t);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--surface);
}
.nav-link.active { color: var(--orange); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t) var(--ease);
  z-index: 100;
  padding: 8px;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--t);
}
.dropdown-link:hover {
  background: var(--surface);
  color: var(--navy);
  padding-left: 16px;
}
.dropdown-link svg { color: var(--orange); flex-shrink: 0; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  transition: all var(--t);
}
.cart-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cart-label { display: inline; }
.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--orange);
  color: var(--white);
  font-size: .65rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.cart-count:empty { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,23,41,.90) 0%,
    rgba(13,37,69,.78) 50%,
    rgba(13,37,69,.45) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 28px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
  width: 100%;
}
.hero-content .label { color: var(--orange-light); }
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
}
.hero-title span { color: var(--orange-light); }
.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-stat-num span { color: var(--orange-light); }
.hero-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* Hero search card */
.hero-card {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.6);
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.hero-form-group { margin-bottom: 14px; }
.hero-form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.hero-form-group select,
.hero-form-group input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t);
  appearance: none;
}
.hero-form-group select:focus,
.hero-form-group input:focus {
  outline: none;
  border-color: var(--navy);
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--t);
  border: none;
  padding: 0;
}
.hero-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--orange);
}

/* ── Category strip ──────────────────────────────────────── */
.cat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.cat-strip-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  scrollbar-width: none;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--t);
  border-bottom: 2px solid transparent;
  position: relative;
  flex-shrink: 0;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.cat-chip:hover { color: var(--navy); }
.cat-chip.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.cat-chip svg { width: 16px; height: 16px; }

/* ── Section header ──────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-title { margin-bottom: 12px; }
.section-sub {
  color: var(--text-muted);
  font-size: .97rem;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Product cards ───────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t) var(--ease);
}
.product-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.05); }

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 1;
}
.badge {
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge-new  { background: var(--navy);   color: var(--white); }
.badge-used { background: #64748b;       color: var(--white); }
.badge-sale { background: var(--orange); color: var(--white); }
.badge-feat { background: rgba(13,37,69,.85); color: var(--white); backdrop-filter: blur(4px); }

.product-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-cat {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.product-name a:hover { color: var(--orange); }
.product-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.price-row { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-current {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
}
.price-old {
  font-size: .84rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-pct {
  font-size: .7rem;
  font-weight: 700;
  background: #FEF3C7;
  color: #92400E;
  padding: 2px 7px;
  border-radius: 4px;
}
.product-footer {
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
}

/* ── Features ────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.feature-desc { font-size: .84rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, #081729 0%, var(--navy) 50%, #1B3A6B 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.stat-num span { color: var(--orange-light); }
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

/* ── Partners (logos) ────────────────────────────────────── */
.partners-strip {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.partners-label {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--border-dark);
  letter-spacing: -.01em;
  transition: color var(--t);
  text-transform: uppercase;
}
.partner-logo:hover { color: var(--text-muted); }

/* ── Reviews slider ──────────────────────────────────────── */
.reviews-slider-wrap {
  overflow: hidden;
  position: relative;
}
.reviews-slider {
  display: flex;
  gap: 24px;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 360px;
  flex-shrink: 0;
  transition: box-shadow var(--t);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-stars svg {
  width: 16px; height: 16px;
  fill: #F59E0B;
  color: #F59E0B;
}
.review-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.review-content {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .88rem; color: var(--navy); }
.review-location { font-size: .76rem; color: var(--text-muted); margin-top: 1px; }

.slider-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  justify-content: center;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all var(--t);
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-dark);
  transition: all var(--t);
  cursor: pointer;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--orange);
  width: 20px;
  border-radius: 3px;
}

/* ── Zones ───────────────────────────────────────────────── */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.zone-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.zone-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.zone-card:hover img { transform: scale(1.06); }
.zone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,23,41,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.zone-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}
.zone-desc { font-size: .8rem; color: rgba(255,255,255,.75); }
.zone-tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #081729 0%, #0D2545 55%, #1B3A6B 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(224,90,43,.15) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(35,86,160,.2) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section .label { color: rgba(255,255,255,.5); }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Page hero ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #081729 0%, var(--navy) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,90,43,.4), transparent);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.68); font-size: .97rem; margin: 0; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  padding: 14px 0;
  color: var(--text-muted);
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--t); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.breadcrumb-current { color: rgba(255,255,255,.85); font-weight: 500; }

/* Public breadcrumb (not in hero) */
.breadcrumb-bar {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.breadcrumb-bar .breadcrumb a { color: var(--text-muted); }
.breadcrumb-bar .breadcrumb a:hover { color: var(--orange); }
.breadcrumb-bar .breadcrumb-sep { color: var(--border-dark); }
.breadcrumb-bar .breadcrumb-current { color: var(--text); }

/* ── Shop layout ──────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.shop-sidebar { position: sticky; top: 92px; }
.sidebar-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
}
.sidebar-block-head {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar-block-head .clear-btn {
  font-size: .68rem;
  color: var(--orange);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.sidebar-body { padding: 10px 6px; }
.sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  font-size: .84rem;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: all var(--t);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.sidebar-cat-link:hover { background: var(--surface); color: var(--navy); }
.sidebar-cat-link.active {
  background: rgba(224,90,43,.08);
  color: var(--orange);
  font-weight: 600;
}
.sidebar-count {
  font-size: .7rem;
  background: var(--surface);
  color: var(--text-muted);
  padding: 2px 7px;
  border-radius: 100px;
}
.sidebar-cat-link.active .sidebar-count {
  background: rgba(224,90,43,.15);
  color: var(--orange);
}

/* Search in sidebar */
.sidebar-search {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-search input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .84rem;
  color: var(--text);
  transition: border-color var(--t);
}
.sidebar-search input:focus { outline: none; border-color: var(--navy); }
.sidebar-search button {
  padding: 9px 12px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t);
  display: flex;
  align-items: center;
}
.sidebar-search button:hover { background: var(--navy-mid); }
.sidebar-search button svg { width: 16px; height: 16px; }

/* Shop header */
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.shop-count { font-size: .84rem; color: var(--text-muted); }
.shop-count strong { color: var(--navy); }
.shop-sort {
  padding: 9px 36px 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .84rem;
  color: var(--text);
  background: var(--white);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24' stroke='%237A8899' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color var(--t);
}
.shop-sort:focus { outline: none; border-color: var(--navy); }

/* Active filters */
.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(224,90,43,.08);
  color: var(--orange-dark);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  border: 1px solid rgba(224,90,43,.2);
}
.filter-tag button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  display: flex;
  padding: 0;
  line-height: 1;
}
.filter-tag button svg { width: 12px; height: 12px; }

/* ── Product page ─────────────────────────────────────────── */
.product-page { padding: 48px 0 80px; }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}
.gallery-main {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 76px; height: 58px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color var(--t);
  flex-shrink: 0;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info .product-cat { margin-bottom: 8px; }
.product-info h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}
.product-price-box {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.product-actions { display: flex; flex-direction: column; gap: 12px; }
.qty-wrap { display: flex; align-items: center; gap: 16px; }
.qty-label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.qty-btn {
  width: 40px; height: 40px;
  background: var(--surface);
  border: none;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
  line-height: 1;
}
.qty-btn:hover { background: var(--navy); color: var(--white); }
.qty-num {
  width: 52px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  background: var(--white);
  color: var(--navy);
  padding: 8px 4px;
  height: 40px;
}
.qty-num:focus { outline: none; background: var(--off-white); }
/* Remove number input arrows */
.qty-num::-webkit-outer-spin-button,
.qty-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-num[type=number] { -moz-appearance: textfield; }
.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: var(--text-muted);
}
.trust-item svg { width: 16px; height: 16px; color: var(--navy-mid); }

/* ── Cart / Checkout ─────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border);
  background: var(--off-white);
}
.cart-table td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-img {
  width: 76px; height: 58px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.cart-summary {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.summary-row:last-child { border-bottom: none; }
.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

/* ── Forms ───────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-label .req { color: var(--orange); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,37,69,.09);
}
textarea.form-control { min-height: 120px; resize: vertical; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .74rem; color: var(--text-muted); margin-top: 4px; }

/* ── Alerts ──────────────────────────────────────────────── */
.alert {
  padding: 13px 16px;
  border-radius: var(--radius);
  margin-bottom: 18px;
  font-size: .875rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.alert-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #065F46; }
.alert-error   { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert-info    { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .82rem;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: all var(--t);
  background: var(--white);
}
.page-btn:hover, .page-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: linear-gradient(180deg, #0A1E36 0%, #071426 100%);
  color: rgba(255,255,255,.65);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 300px repeat(3, 1fr);
  gap: 56px;
  padding-bottom: 56px;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 20px; }
.footer-desc { font-size: .84rem; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all var(--t);
}
.social-btn:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.85);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--orange-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-item svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-inner a { color: rgba(255,255,255,.3); transition: color var(--t); }
.footer-bottom-inner a:hover { color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ── Mobile nav ──────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all var(--t);
}
.mobile-nav.open { visibility: visible; opacity: 1; }
.mobile-nav-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.mobile-nav-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 320px;
  background: var(--white);
  padding: 28px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  box-shadow: 4px 0 40px rgba(0,0,0,.2);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--t);
}
.mobile-nav-close:hover { background: var(--surface); }
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-nav-link:hover { color: var(--orange); }
.mobile-nav-link svg { width: 16px; height: 16px; color: var(--text-muted); }

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--text-muted); }
.bg-surface  { background: var(--off-white); }
.bg-navy     { background: var(--navy); }
.hidden      { display: none !important; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }

/* No-image placeholder */
.no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  color: var(--border-dark);
}
.no-img svg { width: 40px; height: 40px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .shop-layout { grid-template-columns: 240px 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar {
    position: fixed;
    top: 0; left: -100%;
    bottom: 0;
    width: 300px;
    background: var(--white);
    z-index: 998;
    padding: 24px;
    overflow-y: auto;
    box-shadow: 4px 0 40px rgba(0,0,0,.15);
    transition: left .35s var(--ease);
  }
  .shop-sidebar.open { left: 0; }
  .filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 997;
    backdrop-filter: blur(2px);
  }
  .filter-overlay.open { display: block; }
  .filter-toggle-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--navy);
    cursor: pointer;
  }
  .filter-toggle-btn svg { width: 16px; height: 16px; }
  .sidebar-close-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
    padding: 10px 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    font-family: var(--font-body);
  }
}

/* Hide filter toggle on desktop */
.filter-toggle-btn { display: none; }
.sidebar-close-btn { display: none; }

@media (max-width: 768px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
  .header-inner { height: 64px; padding: 0 18px; }
  .logo-link img { height: 44px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .hero { min-height: auto; }
  .hero-inner { padding: 64px 18px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-card { display: none; } /* Hide on mobile to keep hero clean */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .zones-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .cart-table { display: block; overflow-x: auto; }
  .partners-logos { gap: 28px; }

  /* 2 columns on mobile for product grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .product-body { padding: 14px 14px; }
  .product-footer { padding: 10px 14px; gap: 6px; }
  .product-footer .btn { padding: 8px 10px; }
  .price-current { font-size: 1.2rem; }
  .product-name { font-size: .9rem; }
  .review-card { min-width: 280px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-desc { display: none; } /* Hide desc on very small screens */
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-in { animation: fadeInUp .5s var(--ease) both; }
.anim-d1 { animation-delay: .1s; }
.anim-d2 { animation-delay: .2s; }
.anim-d3 { animation-delay: .3s; }
.anim-d4 { animation-delay: .4s; }

/* ============================================================
   MOBILE FIXES v2 — Header, Products, Global Responsiveness
   ============================================================ */

/* ── Header mobile ────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Cart button: icon only on mobile */
  .cart-label { display: none; }
  .cart-btn { padding: 9px 11px; gap: 0; }
  .cart-btn svg { margin: 0; }

  /* Header actions: tighten gap */
  .header-actions { gap: 8px; }
  .header-inner { padding: 0 14px; gap: 8px; }

  /* Logo smaller */
  .logo-link img { height: 40px; }

  /* Hero */
  .hero-inner { padding: 52px 16px 48px; gap: 28px; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .hero-desc { font-size: .9rem; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.7rem; }

  /* Cat strip */
  .cat-strip-inner { padding: 0 14px; gap: 0; }
  .cat-chip { padding: 14px 14px; font-size: .68rem; }

  /* Section padding */
  .section { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .section-lg { padding: 64px 0; }
  .container { padding: 0 14px; }
  .container-sm { padding: 0 14px; }

  /* Section header */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Products grid: 2 columns */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-body { padding: 12px; }
  .product-name { font-size: .82rem; margin-bottom: 6px; }
  .product-desc { display: none; }
  .product-cat { font-size: .62rem; }
  .price-current { font-size: 1.1rem; }
  .price-old { font-size: .72rem; }

  /* Product footer: icon-only buttons on mobile */
  .product-footer { padding: 10px 12px; gap: 6px; }
  .product-footer .btn {
    flex: 1;
    padding: 9px 6px;
    font-size: 0;       /* hide text */
    justify-content: center;
    min-width: 0;
  }
  .product-footer .btn svg {
    width: 17px; height: 17px;
    margin: 0;
  }
  /* Show the SVG icons in mobile product buttons */
  .product-footer .btn-detail-icon,
  .product-footer .btn-order-icon { display: flex; }

  /* Features grid */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-card { padding: 22px 16px; }
  .feature-icon { width: 44px; height: 44px; margin-bottom: 14px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 14px; }
  .stat-num { font-size: 2.2rem; }

  /* Zones */
  .zones-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Reviews slider */
  .review-card { min-width: 260px; padding: 22px; }

  /* Partners */
  .partners-logos { gap: 20px; }
  .partner-logo { font-size: .88rem; }

  /* CTA */
  .cta-section { padding: 64px 0; }
  .cta-btns { flex-direction: column; align-items: stretch; padding: 0 20px; }
  .cta-btns .btn { justify-content: center; }

  /* Page hero */
  .page-hero { padding: 44px 0; }
  .page-hero h1 { font-size: 1.6rem; }

  /* Shop */
  .shop-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .shop-sort { width: 100%; }

  /* Cart table */
  .cart-table { font-size: .8rem; }
  .cart-table th, .cart-table td { padding: 10px 8px; }

  /* Checkout grid */
  .checkout-grid { grid-template-columns: 1fr !important; }

  /* Form */
  .form-grid-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* Product page layout */
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
  .gallery-thumbs { gap: 6px; }
  .gallery-thumb { width: 64px; height: 48px; }
  .product-info h1 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-body { padding: 10px; }
  .product-img { aspect-ratio: 1/1; }
  .hero-title { font-size: 1.7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ── Ensure product footer btn SVGs always show ─────────── */
.product-footer .btn svg { display: block; flex-shrink: 0; }

/* ── About page ────────────────────────────────────────────  */
@media (max-width: 768px) {
  .about-grid, .mv-grid { grid-template-columns: 1fr !important; }
}

/* ── Quote page ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .quote-grid { grid-template-columns: 1fr !important; }
}

/* ── Breadcrumb bar ──────────────────────────────────────── */
@media (max-width: 480px) {
  .breadcrumb { font-size: .72rem; flex-wrap: wrap; gap: 4px; }
}

/* ── No overflow anywhere ─────────────────────────────────── */
html, body { overflow-x: hidden; }

/* Product button text — hidden on mobile, shown on desktop */
.btn-txt { display: inline; }
@media (max-width: 768px) {
  .btn-txt { display: none; }
  .product-footer .btn { gap: 0; }
}

/* ── Additions v4.1 ─────────────────────────────────────── */

/* Background utilities */
.bg-light { background: var(--off-white); }

/* Button additions */
.btn-secondary {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--border-dark);
}
.btn-secondary:hover {
  background: var(--border);
  border-color: var(--navy);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

/* Reviews grid (used in sobre-nos static grid) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reviews-grid .review-card {
  min-width: 0;
  flex-shrink: initial;
}

/* Form required asterisk */
.req { color: var(--orange); margin-left: 2px; }

/* Section header text-center shorthand */
.section-header.text-center { text-align: center; }
.section-header.text-center h2 { margin-left: auto; margin-right: auto; }

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

/* ============================================================
   MOBILE RESPONSIVE FIXES — index.php (v6.1)
   Corrige tous les débordements et blocs mal alignés
   ============================================================ */

/* ── Base: empêcher tout overflow horizontal ─────────────── */
html, body { overflow-x: hidden; max-width: 100%; }
* { box-sizing: border-box; }

/* ── HERO ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: 0;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 16px 64px;
    gap: 0;
  }
  .hero-card { display: none; } /* masqué sur mobile */
  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.3rem);
    line-height: 1.12;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: .88rem;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 36px;
    padding-top: 28px;
    text-align: center;
  }
  .hero-stats > div {
    padding: 0 8px;
    border-right: 1px solid rgba(255,255,255,.15);
  }
  .hero-stats > div:last-child { border-right: none; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: .6rem; }
  .hero-indicators { bottom: 16px; }
}

@media (max-width: 380px) {
  .hero-inner { padding: 44px 14px 56px; }
  .hero-title { font-size: 1.55rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .hero-stat-num { font-size: 1.35rem; }
}

/* ── CATEGORY STRIP ─────────────────────────────────────── */
@media (max-width: 768px) {
  .cat-strip { position: relative; }
  .cat-strip::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, white);
    pointer-events: none;
  }
  .cat-strip-inner {
    padding: 0 14px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .cat-chip {
    padding: 14px 12px;
    font-size: .65rem;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ── SECTION HEADER ─────────────────────────────────────── */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 28px;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .section-header > a.btn {
    align-self: flex-start;
    margin-top: 4px;
  }
  .section-title { font-size: clamp(1.3rem, 5vw, 1.7rem); }
  .section-sub { font-size: .85rem; max-width: 100%; }
}

/* ── PRODUCTS GRID ──────────────────────────────────────── */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card { border-radius: 10px; }
  .product-img { aspect-ratio: 4/3; }
  .product-body { padding: 10px 11px 8px; }
  .product-cat { font-size: .58rem; margin-bottom: 4px; }
  .product-name { font-size: .78rem; margin-bottom: 5px; line-height: 1.3; }
  .product-desc { display: none; }
  .price-current { font-size: 1rem; }
  .price-old { font-size: .65rem; }
  .product-footer {
    padding: 8px 11px;
    gap: 6px;
  }
  .product-footer .btn {
    flex: 1;
    padding: 8px 4px;
    font-size: 0;
    gap: 0;
    justify-content: center;
    min-width: 0;
  }
  .product-footer .btn svg {
    width: 16px; height: 16px;
    margin: 0; flex-shrink: 0;
  }
  .btn-txt { display: none; }
  .product-badges { top: 7px; left: 7px; gap: 4px; }
  .badge { font-size: .55rem; padding: 3px 7px; }
}

@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .product-body { padding: 8px 9px 6px; }
  .product-name { font-size: .72rem; }
  .price-current { font-size: .95rem; }
}

/* ── FEATURES GRID ─────────────────────────────────────── */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .feature-card {
    padding: 20px 14px;
    border-radius: 10px;
  }
  .feature-icon {
    width: 40px; height: 40px;
    margin-bottom: 12px;
    border-radius: 8px;
  }
  .feature-icon svg { width: 20px; height: 20px; }
  .feature-title { font-size: .85rem; margin-bottom: 6px; }
  .feature-desc { font-size: .75rem; line-height: 1.55; }
}

@media (max-width: 400px) {
  .features-grid { grid-template-columns: 1fr; gap: 10px; }
  .feature-card { padding: 18px 16px; }
}

/* ── STATS BAR ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .stats-bar { padding: 40px 0; }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    padding: 0 20px;
  }
  .stat-item { text-align: center; }
  .stat-num { font-size: 2rem; }
  .stat-num span { font-size: .9rem; }
  .stat-label { font-size: .68rem; }
}

@media (max-width: 400px) {
  .stats-inner { gap: 20px 12px; padding: 0 16px; }
  .stat-num { font-size: 1.75rem; }
}

/* ── ZONES GRID ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .zone-card { border-radius: 10px; min-height: 160px; }
  .zone-name { font-size: 1rem; }
  .zone-desc { font-size: .72rem; }
  .zone-tag { font-size: .58rem; padding: 4px 10px; }
}

@media (max-width: 480px) {
  .zones-grid { grid-template-columns: 1fr; gap: 10px; }
  .zone-card { min-height: 180px; }
}

/* ── PARTNERS STRIP ─────────────────────────────────────── */
@media (max-width: 768px) {
  .partners-strip {
    flex-direction: column;
    gap: 16px;
    padding: 28px 16px;
    text-align: center;
  }
  .partners-logos {
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .partner-logo { font-size: .78rem; padding: 6px 12px; }
}

/* ── REVIEWS SLIDER ─────────────────────────────────────── */
@media (max-width: 768px) {
  .review-card {
    min-width: calc(100vw - 60px);
    max-width: calc(100vw - 60px);
    padding: 20px;
    flex-shrink: 0;
  }
  .review-title { font-size: .9rem; }
  .review-content { font-size: .8rem; }
  .slider-controls { margin-top: 20px; }
}

@media (max-width: 400px) {
  .review-card {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    padding: 16px;
  }
}

/* ── CTA SECTION ────────────────────────────────────────── */
@media (max-width: 768px) {
  .cta-section { padding: 56px 0; }
  .cta-section h2 {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    line-height: 1.2;
    margin-bottom: 12px;
  }
  .cta-section p { font-size: .88rem; margin-bottom: 28px; }
  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
    gap: 10px;
  }
  .cta-btns .btn {
    justify-content: center;
    width: 100%;
  }
}

/* ── CONTAINER ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
}
@media (max-width: 380px) {
  .container { padding: 0 12px; }
}

/* ── SECTION SPACING ─────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .bg-surface.section { padding: 48px 0; }
}

/* ============================================================
   PRODUCT CARD BUTTONS — icônes seules sur mobile (v6.2)
   ============================================================ */

/* Desktop: texte + icône */
.btn-txt { display: inline; }
.product-footer .btn { gap: 6px; }

/* Mobile: icône seule, bouton carré centré */
@media (max-width: 768px) {
  .btn-txt { display: none !important; }
  .product-footer {
    padding: 8px 10px;
    gap: 6px;
  }
  .product-footer .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 10px 0;
    font-size: 0;      /* masque tout texte résiduel */
    min-width: 0;
    border-radius: 8px;
  }
  .product-footer .btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
  }
  /* Couleurs explicites pour que les icônes soient bien visibles */
  .product-footer .btn.btn-outline-navy svg { stroke: var(--navy); }
  .product-footer .btn.btn-primary svg     { stroke: #ffffff; }
}
