/* ============================================================
   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&amp;family=Poppins:wght@300;400;500;600&amp;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: black;
}
.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 base — défini dans premium_additions.css */

/* ── 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: #000000;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid  rgba(241, 145, 109, 0.2);
  background: #f1916d9e;
}
.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: linear-gradient(135deg, rgb(255, 247, 244), rgb(250, 245, 255));
  border: 1px solid rgba(241, 145, 109, 0.2);
  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 buttons managed by v7.0 block below */
  .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 on mobile managed by v7.0 block below */

  /* 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 — défini dans premium_additions.css */

/* ── 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; }

/* ── 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 mobile — défini dans premium_additions.css */
  .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 — v7.0 (fix débordement texte)
   ============================================================ */

/* ── Base : toutes tailles d'écran ── */
/* product-footer buttons — source unique dans premium_additions.css */

/* ===== MDA AUTO 34 — Ajouts ===== */
.section-icon-badge {
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:12px;color:#fff;flex-shrink:0;
}
.section-icon-badge--red { background:var(--color-secondary,#e63946); }
.section-icon-badge--navy { background:var(--color-primary,#1a1a2e); }

.product-card--vehicle .product-img { position:relative; }
.product-card--vehicle .product-img::after {
  content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
  background:var(--color-secondary,#e63946);
}

/* Override primary button with dynamic color */
.btn-primary {
  background: var(--color-secondary, #e63946) !important;
  border-color: var(--color-secondary, #e63946) !important;
}
.btn-navy, .btn-outline-navy:hover {
  background: var(--color-primary, #1a1a2e) !important;
  border-color: var(--color-primary, #1a1a2e) !important;
  color:#fff !important;
}
header#mainHeader { background: var(--color-primary, #1a1a2e) !important; }
.topbar { background: color-mix(in srgb, var(--color-primary,#1a1a2e) 90%, black) !important; }

/* Comment ça marche */
.how-steps { display:flex; align-items:flex-start; gap:0; flex-wrap:wrap; justify-content:center; margin-top:48px; }
.how-step { flex:1; min-width:180px; max-width:210px; text-align:center; padding:0 12px; }
.how-step-num { width:40px;height:40px; background:var(--mda-red) !important; color:#fff; border-radius:50%; display:flex;align-items:center;justify-content:center; font-weight:800;font-size:1.1rem; margin:0 auto 16px; }
.how-step-icon { width:72px;height:72px; background:var(--light,#F5F5F8); border-radius:16px; display:flex;align-items:center;justify-content:center; margin:0 auto 16px; color:var(--color-primary,#1a1a2e); }
.how-step h3 { font-size:.95rem; font-weight:700; margin-bottom:10px; color:var(--text,#1a1a2e); }
.how-step p { font-size:.82rem; color:var(--text-muted,#666); line-height:1.6; margin:0; }
.how-step-arrow { display:flex; align-items:center; padding-top:56px; color:var(--border,#ddd); }
@media(max-width:768px){ .how-steps{flex-direction:column;align-items:center;gap:8px;} .how-step{max-width:100%;} .how-step-arrow{transform:rotate(90deg);padding-top:0;} }

/* Pourquoi nous choisir */
.why-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; margin-top:48px; }
.why-card { background:var(--white,#fff); border:1.5px solid var(--border,#eee); border-radius:16px; padding:28px 24px; transition:transform .2s,box-shadow .2s; }
.why-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.08); }
.why-icon { width:56px;height:56px; border-radius:14px; display:flex;align-items:center;justify-content:center; margin-bottom:18px; }
.why-icon--red   { background:rgba(230,57,70,.1);  color:#e63946; }
.why-icon--navy  { background:rgba(26,26,46,.08);  color:#1a1a2e; }
.why-icon--green { background:rgba(22,163,74,.1);  color:#16a34a; }
.why-icon--orange{ background:rgba(245,158,11,.1); color:#d97706; }
.why-card h3 { font-size:1rem; font-weight:700; margin-bottom:10px; color:var(--text,#1a1a2e); }
.why-card p { font-size:.85rem; color:var(--text-muted,#666); line-height:1.65; margin:0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* CTA extras */
.cta-reassure { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; margin-top:32px; font-size:.82rem; color:rgba(255,255,255,.65); }
.btn-ghost-white { background:transparent; border:1.5px solid rgba(255,255,255,.35); color:#fff; }
.btn-ghost-white:hover { background:rgba(255,255,255,.1); border-color:rgba(255,255,255,.7); }
.about-hero {
  background: black;
  padding: 48px 0 44px;
}
.about-hero h1 { color: #f1916d; font-size: 2.2rem; font-weight: 800; margin: 6px 0 10px; }
.about-hero p  { color: rgba(255,255,255,.65); max-width: 560px; margin: 0; line-height: 1.7; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo-stack { display: grid; grid-template-rows: auto auto; gap: 14px; }
.about-photo-stack img { width: 100%; object-fit: cover; border-radius: 14px; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.about-photo-stack img:first-child { aspect-ratio: 16/9; }
.about-photo-stack img:last-child  { aspect-ratio: 16/7; }

.about-stats-row { display: flex; gap: 32px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.about-stat-num  { font-size: 2rem; font-weight: 800; color: var(--color-secondary,#e63946); line-height: 1; }
.about-stat-num span { font-size: 1.3rem; }
.about-stat-lbl  { font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-top: 3px; }

/* Timeline activités */
.activities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.activity-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px 22px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.activity-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.08); border-color: var(--color-secondary,#e63946); }
.activity-icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: #fee2e2; color: #b91c1c;
}
.activity-icon--navy { background: #e0e7ff; color: #3730a3; }
.activity-icon--green { background: #d1fae5; color: #059669; }
.activity-icon--amber { background: #fef3c7; color: #d97706; }
.activity-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.activity-desc  { font-size: .85rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* Infos légales */
.legal-table { width: 100%; border-collapse: collapse; }
.legal-table tr { border-bottom: 1px solid var(--border); }
.legal-table tr:last-child { border-bottom: none; }
.legal-table td { padding: 10px 0; font-size: .875rem; }
.legal-table td:first-child { font-weight: 600; color: var(--text); width: 45%; }
.legal-table td:last-child  { color: var(--muted); }

/* Témoignages */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.testi-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 24px 24px 20px;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.testi-stars svg { width: 15px; height: 15px; }
.testi-text {
  font-size: .9rem; color: var(--text); line-height: 1.7;
  margin-bottom: 16px; font-style: italic;
}
.testi-text::before { content: '\201C'; }
.testi-text::after  { content: '\201D'; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--color-primary,#1a1a2e); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; flex-shrink: 0;
}
.testi-name     { font-weight: 700; font-size: .875rem; color: var(--text); }
.testi-location { font-size: .75rem; color: var(--muted); }
.testi-verified { display: flex; align-items: center; gap: 4px; font-size: .7rem; color: #059669; margin-top: 3px; }

/* Bannière citation */
.quote-banner {
  position: relative; overflow: hidden;
  background: var(--color-primary,#1a1a2e);
  padding: 56px 0;
  text-align: center;
}
.quote-banner blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 700; font-style: italic;
  color: #fff; max-width: 640px; margin: 0 auto; line-height: 1.6;
}
.quote-banner cite { display: block; margin-top: 14px; font-size: .85rem; color: rgba(255,255,255,.5); font-style: normal; }

@media(max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 560px) {
  .activities-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
/* Breadcrumb */
.pdp-breadcrumb {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-muted, #888);
  flex-wrap: wrap;
}
.pdp-breadcrumb a { color: var(--text-muted, #888); text-decoration: none; transition: color .15s; }
.pdp-breadcrumb a:hover { color: var(--color-primary, #1a1a2e); }
.pdp-breadcrumb .sep { opacity: .4; }
.pdp-breadcrumb .current { color: var(--text, #1a1a2e); font-weight: 600; }

/* Layout principal */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
  padding: 32px 0 64px;
}

/* ── Galerie ── */
.pdp-gallery { position: sticky; top: 88px; }
.pdp-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f6fa;
  border: 1.5px solid var(--border, #eee);
  position: relative;
}
.pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pdp-main-img:hover img { transform: scale(1.03); }

.pdp-badge-gallery {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px;
  height: 58px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border, #eee);
  cursor: pointer;
  transition: border-color .2s, opacity .2s;
  opacity: .7;
  flex-shrink: 0;
}
.pdp-thumb:hover, .pdp-thumb.active {
  border-color: var(--color-secondary, #e63946);
  opacity: 1;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Panneau info ── */
.pdp-info { display: flex; flex-direction: column; gap: 0; }

.pdp-cat-path {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-secondary, #e63946);
  margin-bottom: 10px;
}

.pdp-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-primary, #1a1a2e);
  letter-spacing: -.02em;
  margin: 0 0 16px;
}

/* Badges */
.pdp-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.pdp-badge-diesel    { background: #1a1a2e; color: #fff; }
.pdp-badge-elec      { background: #059669; color: #fff; }
.pdp-badge-neuf      { background: #dbeafe; color: #1d4ed8; }
.pdp-badge-occasion  { background: #fef3c7; color: #92400e; }
.pdp-badge-vedette   { background: var(--color-secondary, #e63946); color: #fff; }
.pdp-badge-promo     { background: #fee2e2; color: #b91c1c; }
.pdp-badge-stock     { background: #dcfce7; color: #166534; }
.pdp-badge-rupture   { background: #f3f4f6; color: #6b7280; }

/* Short desc */
.pdp-short-desc {
  font-size: .88rem;
  color: var(--text-muted, #666);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border, #eee);
}

/* Bloc prix */
.pdp-price-block {
  background: linear-gradient(135deg, rgb(255, 247, 244), rgb(250, 245, 255));
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 22px;
    border: 1px solid rgba(241, 145, 109, 0.2);
}
.pdp-price-old {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.pdp-price-old .old { font-size: .9rem; color: var(--text-muted, #999); text-decoration: line-through; }
.pdp-price-old .pct {
  background: #fee2e2;
  color: #b91c1c;
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.pdp-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary, #1a1a2e);
  letter-spacing: -.03em;
  line-height: 1;
}
.pdp-price-note {
  font-size: .73rem;
  color: var(--text-muted, #999);
  margin-top: 6px;
}

/* SKU */
.pdp-sku {
  font-size: .75rem;
  color: var(--text-muted, #aaa);
  margin-bottom: 20px;
}
.pdp-sku strong { color: var(--text, #555); }

/* Quantité */
.pdp-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.pdp-qty-label { font-size: .8rem; font-weight: 600; color: var(--text, #333); white-space: nowrap; }
.pdp-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border, #ddd);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.pdp-qty-btn {
  width: 38px; height: 38px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text, #333);
  transition: background .15s;
}
.pdp-qty-btn:hover { background: var(--light, #f5f6fa); }
.pdp-qty-num {
  width: 44px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border, #ddd);
  border-right: 1.5px solid var(--border, #ddd);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text, #333);
  outline: none;
  padding: 0;
  height: 38px;
  -moz-appearance: textfield;
}
.pdp-qty-num::-webkit-outer-spin-button,
.pdp-qty-num::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Boutons actions */
.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pdp-btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: linear-gradient(135deg, rgb(241, 145, 109), rgb(189, 131, 184));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
  width: 100%;
}
.pdp-btn-cart:hover { background: linear-gradient(135deg, rgb(241, 145, 109), rgb(189, 131, 184)); transform: translateY(-1px); }

.pdp-btn-devis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--color-primary, #1a1a2e);
  color: #fff;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.pdp-btn-devis:hover { background: black; }

.pdp-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #25D366;
  border: 1.5px solid #25D366;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.pdp-btn-wa:hover { background: #25D366; color: #fff; }

/* Trust bar */
.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px 0 0;
  border-top: 1px solid var(--border, #eee);
}
.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}
.pdp-trust-icon {
  width: 36px; height: 36px;
  background: var(--light, #f5f6fa);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary, #e63946);
}
.pdp-trust-label {
  font-size: .68rem;
  font-weight: 600;
  color: var(--text-muted, #777);
  line-height: 1.3;
}

/* ═══ Section description + sidebar ═══ */
.pdp-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding: 56px 0;
  border-top: 1.5px solid var(--border, #eee);
  align-items: start;
}
.pdp-desc-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary, #1a1a2e);
  letter-spacing: -.02em;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--color-secondary, #e63946);
  display: inline-block;
}
.pdp-description { }
.pdp-description h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary, #1a1a2e);
  margin: 24px 0 8px;
}
.pdp-description h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-primary, #1a1a2e);
  margin: 20px 0 8px;
}
.pdp-description p {
  font-size: .875rem;
  color: var(--text-muted, #555);
  line-height: 1.75;
  margin-bottom: 12px;
}
.pdp-description ul {
  padding-left: 18px;
  margin-bottom: 14px;
}
.pdp-description li {
  font-size: .875rem;
  color: var(--text-muted, #555);
  line-height: 1.7;
  margin-bottom: 4px;
}
.pdp-description strong { color: var(--color-primary, #1a1a2e); font-weight: 700; }

/* Sidebar infos */
.pdp-sidebar { display: flex; flex-direction: column; gap: 16px; }
.pdp-info-card {
  background: var(--light, #f8f9fc);
  border: 1.5px solid var(--border, #eee);
  border-radius: 14px;
  overflow: hidden;
}
.pdp-info-card-head {
  padding: 12px 18px;
  background: linear-gradient(135deg, rgb(241, 145, 109), rgb(189, 131, 184));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pdp-info-card-body {
  padding: 18px;
  font-size: .82rem;
  color: var(--text-muted, #666);
  line-height: 1.7;
}
.pdp-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border, #eee);
}
.pdp-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.pdp-info-row svg { flex-shrink: 0; margin-top: 2px; color: var(--color-secondary, #e63946); }
.pdp-info-row-text strong { display: block; font-size: .78rem; font-weight: 700; color: var(--text, #333); margin-bottom: 2px; }

/* ═══ Produits similaires ═══ */
.pdp-similar { padding: 48px 0; border-top: 1.5px solid var(--border, #eee); }
.pdp-similar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary, #1a1a2e);
  letter-spacing: -.02em;
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
  .pdp-main-img { aspect-ratio: 16/9; }
  .pdp-body { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .pdp-title { font-size: 1.3rem; }
  .pdp-price-current { font-size: 1.6rem; }
  .pdp-trust { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .pdp-trust-label { font-size: .62rem; }
}

.gallery-container{
    width:100%;
}

.gallery-main{
    width:100%;
    margin-bottom:15px;
}

.gallery-main img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.gallery-thumbs{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding-bottom:10px;
}

.gallery-thumbs img{
    width:110px;
    height:80px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.2s;
}

.gallery-thumbs img:hover{
    transform:scale(1.05);
}

.gallery-thumbs img.active{
    border:2px solid #ff6b00;
}

@media(max-width:768px){

    .gallery-main img{
        height:300px;
    }

    .gallery-thumbs img{
        width:80px;
        height:60px;
    }

}
.gallery-main{
    position:relative;
}

.gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    cursor:pointer;
    z-index:5;
    font-size:20px;
    box-shadow:0 3px 10px rgba(0,0,0,.15);
}

.gallery-arrow:hover{
    transform:translateY(-50%) scale(1.05);
}

.prev{
    left:15px;
}

.next{
    right:15px;
}
.cart-toast{
    position: fixed;
    left: 24px;
    bottom: 24px;

    display: flex;
    align-items: center;
    gap: 16px;

    max-width: 620px;
    padding: 18px 22px;

    background: rgba(20,20,20,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
     border-left: 4px solid #22c55e;

    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;

    box-shadow:
        0 20px 40px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.05);

    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition:
        opacity .35s ease,
        transform .35s ease,
        visibility .35s;
}

.cart-toast.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-toast::before{
    content: "🛒";
    font-size: 22px;
    flex-shrink: 0;
}



@media (max-width: 640px){
    .cart-toast{
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        flex-wrap: wrap;
    }

    .pdp-btn-cart{
        width: 100%;
        margin-left: 0;
    }
}

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

.qty-box{
    display:flex;
    gap:10px;
    margin:20px 0;
}

.qty-box input{
    width:80px;
    text-align:center;
}

.qty-box button{
    width:40px;
    height:40px;
}

.btn-cart{
    padding:12px 24px;
    cursor:pointer;
}

.success-box{
    margin-top:20px;
    background:#dcfce7;
    color:#166534;
    padding:12px;
    border-radius:8px;
}

.devis-hero {
  background: var(--color-primary, #1a1a2e);
  padding: 40px 0 36px;
}
.devis-hero h1 { color: #f1916d; font-size: 2rem; margin: 6px 0 8px; font-weight: 800; }
.devis-hero p  { color: rgba(255,255,255,.65); font-size: .95rem; margin: 0; }

/* Sélecteur de type */
.type-selector {
  display: grid;
  grid-template-columns: 1fr ;
  gap: 16px;
  margin: 36px auto;
  max-width: 620px;
}
.type-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 28px 20px;
  border: 2.5px solid var(--border);
  border-radius: 16px; background: var(--white);
  cursor: pointer; transition: all .2s;
  text-align: center; position: relative;
}
.type-btn:hover { border-color: var(--color-secondary,#e63946); box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-2px); }
.type-btn.active { border-color: var(--color-secondary,#e63946); background: #fff5f5; }
.type-btn.active .type-btn-icon { background: var(--color-secondary,#e63946); color: #fff; }
.type-btn--cont.active { border-color: var(--color-primary,#1a1a2e); background: #f0f1f8; }
.type-btn--cont.active .type-btn-icon { background: var(--color-primary,#1a1a2e); color: #fff; }
.type-btn-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--light); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.type-btn-label { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.type-btn-sub   { font-size: .8rem; color: var(--muted); margin-top: -4px; }
.type-btn .check-badge {
  position: absolute; top: 12px; right: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--color-secondary,#e63946); color: #fff;
  display: none; align-items: center; justify-content: center;
}
.type-btn.active .check-badge { display: flex; }
.type-btn--cont.active .check-badge { background: var(--color-primary,#1a1a2e); }

/* Formulaires */
.devis-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; max-width: 1200px; margin: 0 auto; }
.form-panel { background: var(--white); border: 1.5px solid var(--border); border-radius: 16px; padding: 36px 40px; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.form-section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); margin: 24px 0 16px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.form-section-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.form-section-icon {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.form-section-icon--red  { background: #fee2e2; color: #b91c1c; }
.form-section-icon--navy { background: #e0e7ff; color: #3730a3; }
.form-section-icon--gray { background: var(--light); color: var(--muted); }

.input-icon-wrap { position: relative; }
.input-icon-wrap svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.input-icon-wrap input,
.input-icon-wrap select { padding-left: 38px !important; }

.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 14px; border: 1.5px solid var(--border);
  border-radius: 20px; cursor: pointer; font-size: .85rem; font-weight: 500;
  transition: all .15s; background: var(--white);
}
.radio-pill input[type=radio] { display: none; }
.radio-pill:has(input:checked) { border-color:var(--color-secondary,#F1916D); background: #fff5f5; color: #F1916D; font-weight: 700; }

.form-hint { font-size: .75rem; color: var(--muted); margin-top: 4px; }

/* Sidebar */
.devis-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 88px; }
.sidebar-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 22px 20px; }
.sidebar-card-title { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.sidebar-contact-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px; font-size: .875rem; font-weight: 600;
  margin-bottom: 8px; text-decoration: none; transition: opacity .15s;
}
.sidebar-contact-link:last-child { margin-bottom: 0; }
.scl-phone { background: var(--color-primary,#1a1a2e); color: #fff; }
.scl-email { background: var(--light); color: var(--text); border: 1px solid var(--border); }
.sidebar-contact-link:hover { opacity: .85; }

.guarantee-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: var(--text); margin-bottom: 10px; }
.guarantee-item:last-child { margin-bottom: 0; }
.guarantee-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-secondary,#e63946); flex-shrink: 0; }

.sidebar-dark { background: var(--color-primary,#1a1a2e); }
.sidebar-dark .sidebar-card-title { color: rgba(255,255,255,.5); }
.sidebar-dark p { color: rgba(255,255,255,.75); font-size: .875rem; line-height: 1.7; margin: 0; }

/* Success */
.success-box { text-align: center; padding: 80px 24px; max-width: 500px; margin: 0 auto; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: #ecfdf5; color: #059669; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.success-box h2 { color: #059669; margin-bottom: 10px; }
.success-box p  { color: var(--muted); margin-bottom: 32px; }
.success-btns   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media(max-width: 900px) {
  .type-selector { grid-template-columns: 1fr 1fr; gap: 12px; }
  .devis-layout  { grid-template-columns: 1fr; }
  .devis-sidebar { position: static; }
  .form-panel    { padding: 24px 20px; }
}
@media(max-width: 480px) {
  .type-selector { grid-template-columns: 1fr 1fr; }
  .type-btn      { padding: 20px 12px; }
  .type-btn-icon { width: 44px; height: 44px; }
  .type-btn-label { font-size: .9rem; }
}
 .checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.checkout-form {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.checkout-summary {
    position: sticky;
    top: 20px;
}

.summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.summary-card h3 {
    margin: 0 0 25px;
    font-size: 22px;
}

.summary-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.summary-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.summary-info {
    flex: 1;
}

.summary-info h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.summary-meta {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

.summary-qty {
    margin-top: 8px;
    font-weight: 600;
}

.summary-total {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #f3f4f6;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 22px;
}

@media(max-width:991px) {

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

.order-success{
    max-width:600px;
    margin:30px auto;
    padding:30px;

    background:linear-gradient(135deg, rgb(255, 247, 244), rgb(250, 245, 255));
    border-radius:16px;

    text-align:center;
    border: 1px solid rgba(241, 145, 109, 0.2);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.order-success-icon{
    font-size:48px;
    margin-bottom:15px;
}

.order-success h3{
    margin:0 0 10px;
    font-size:28px;
}

.order-reference{
    margin: 20px 0;
    padding: 12px;
    background: linear-gradient(135deg, rgb(255, 247, 244), rgb(250, 245, 255));
    border-radius: 8px;
    font-size: 14px;
    text-align: left;
    border: 1px solid rgba(241, 145, 109, 0.2);;
}

.order-info{
    color:#6b7280;
    margin-bottom:25px;
}

.order-btn{
    display:inline-block;

    padding:12px 24px;

    background:#111827;
    color:#fff;

    text-decoration:none;

    border-radius:8px;
}
.mini-cart-overlay{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.4);

    display:none;

    justify-content:flex-end;

    z-index:99999;
}

.mini-cart-overlay.show{
    display:flex;
}

.mini-cart{
    width:420px;
    height:100%;

    background:#fff;

    padding:25px;

    overflow:auto;

    animation:slideCart .3s ease;
}

@keyframes slideCart{

    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(0);
    }

}

.mini-cart-close{
    border:none;
    background:none;

    font-size:28px;

    cursor:pointer;
}

.mini-cart-success{
    color:#16a34a;
    font-weight:700;
    margin-bottom:20px;
}

.mini-cart-product{
    display:flex;
    gap:15px;
}

.mini-cart-product img{
    width:100px;
    height:100px;

    object-fit:cover;

    border-radius:12px;
}

.mini-cart-actions{
    margin-top:25px;

    display:flex;
    gap:10px;
}

.btn-light{
    flex:1;

    padding:12px;

    border:1px solid #ddd;

    background:#fff;
}

.btn-dark{
    flex:1;

    padding:12px;

    text-align:center;

    background:#111827;
    color:#fff;

    text-decoration:none;
}
.filter-checkbox{
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
    padding:10px 0;
}

.filter-checkbox input{
    display:none;
}

.checkmark{
    width:20px;
    height:20px;
    border:2px solid #d1d5db;
    border-radius:6px;
    position:relative;
    transition:.2s;
}

.filter-checkbox input:checked + .checkmark{
    background:#F1916D;
    border-color:#F1916D;
}

.filter-checkbox input:checked + .checkmark:after{
    content:"";
    position:absolute;
    left:5px;
    top:1px;
    width:5px;
    height:10px;
    border:solid #fff;
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
}
.filter-checkbox{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px;
    margin-bottom:8px;
    border-radius:12px;
    cursor:pointer;
    background:#f8fafc;
    transition:.2s;
    border:1px solid #e5e7eb;
}

.filter-checkbox:hover{
    background:#f1f5f9;
}

.filter-checkbox.active{
    background:#eff6ff;
    border-color:#2563eb;
}

.filter-checkbox input{
    display:none;
}

.checkmark{
    width:20px;
    height:20px;
    border:2px solid #cbd5e1;
    border-radius:6px;
    position:relative;
    flex-shrink:0;
}

.filter-checkbox.active .checkmark{
    background:#2563eb;
    border-color:#2563eb;
}

.filter-checkbox.active .checkmark:after{
    content:'';
    position:absolute;
    left:5px;
    top:1px;
    width:5px;
    height:10px;
    border:solid #fff;
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
}

.filter-text{
    font-size:14px;
    font-weight:500;
}