/* ===========================
   TOKENS
=========================== */
:root {
  --navy:     #1C2B3A;
  --blue:     #1565C0;
  --blue-lt:  #E8F1FB;
  --ember:    #E05A13;
  --ember-lt: #FFF3EC;
  --green:    #1E7D46;
  --green-lt: #E8F5EE;
  --white:    #FFFFFF;
  --bg:       #F7F8FA;
  --border:   #E4E8ED;
  --text:     #1C2B3A;
  --text-2:   #4B5B6B;
  --text-3:   #8A98A5;
  --radius:   8px;
  --radius-lg: 12px;
  --shadow:   0 2px 12px rgba(28,43,58,0.08);
  --shadow-lg: 0 8px 32px rgba(28,43,58,0.12);
  --announce-h: 44px;
  --header-h:  66px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
.mono { font-family: 'DM Mono', monospace; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   ANNOUNCE BAR
=========================== */
.announce-bar {
  background: var(--ember);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  height: var(--announce-h);
  font-size: 13px;
  font-weight: 500;
  position: relative;
}
.announce-bar .announce-gift { font-size: 16px; }
.announce-countdown {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.18);
  padding: 3px 10px;
  border-radius: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
}
.announce-countdown span { min-width: 20px; text-align: center; }
.announce-countdown .cd-sep { opacity: 0.7; }
.announce-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.7;
  line-height: 1;
  transition: opacity 0.15s;
}
.announce-close:hover { opacity: 1; }

/* ===========================
   TRUST BAR
=========================== */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  height: 38px;
  display: flex;
  align-items: center;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.trust-items {
  display: flex;
  align-items: center;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-2);
}
.trust-check {
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
}
.trust-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-phone:hover { color: var(--ember); }

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo span { color: var(--ember); }

.header-search {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
}
.header-search input {
  width: 100%;
  padding: 9px 16px 9px 40px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.header-search input::placeholder { color: var(--text-3); }
.header-search input:focus { border-color: var(--blue); background: white; }
.header-search svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
  pointer-events: none;
}

.nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--ember); }

.cart-btn {
  position: relative;
  background: var(--navy);
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--ember); }
.cart-btn-label { display: none; }

.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  background: var(--ember);
  color: white;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
  border: 2px solid white;
}
.cart-count.visible { opacity: 1; transform: scale(1); }

/* ===========================
   CART DRAWER
=========================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,43,58,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  background: white;
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(28,43,58,0.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--navy);
}
.cart-close {
  background: var(--bg);
  border: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.cart-close:hover { background: var(--ember); color: white; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { color: var(--text-3); font-size: 14px; text-align: center; margin-top: 48px; }

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.cart-item-price { font-family: 'DM Mono', monospace; font-size: 13px; color: var(--ember); }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}
.cart-item-qty button {
  background: var(--bg);
  border: 1px solid var(--border);
  width: 26px; height: 26px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  color: var(--navy);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-qty button:hover { background: var(--border); }

.cart-footer { padding: 16px 24px 24px; border-top: 1px solid var(--border); }
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
}
.cart-total #cartTotal {
  font-size: 22px;
  font-family: 'DM Mono', monospace;
  color: var(--ember);
}

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #EBF3FF 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ember-lt);
  color: var(--ember);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 46px;
  line-height: 1.12;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-title span {
  color: var(--ember);
  font-style: italic;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-img-wrap {
  background: white;
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(28,43,58,0.12);
  padding: 24px;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-rating-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-left: 20px;
}
.stars-hero { color: #F59E0B; font-size: 16px; letter-spacing: 2px; }
.rating-text strong { font-size: 14px; font-weight: 700; color: var(--navy); }
.rating-text p { font-size: 12px; color: var(--text-2); line-height: 1.3; }
.rating-text small { display: block; color: var(--text-3); font-size: 11px; }

/* ===========================
   BUTTONS
=========================== */
.btn-primary {
  background: var(--ember);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: #c24f0f; transform: translateY(-1px); }

.btn-ghost {
  background: white;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--navy); background: var(--bg); }

.full-width { width: 100%; justify-content: center; }

/* ===========================
   STATS BAND
=========================== */
.stats-band {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 60px;
  gap: 4px;
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: white;
  font-family: 'DM Serif Display', serif;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.12);
}

/* ===========================
   MARQUES BAND
=========================== */
.marques-band {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.marques-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  font-weight: 600;
  flex-shrink: 0;
}
.marques-list {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.marques-list span {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: -0.2px;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.marques-list span:hover { opacity: 1; }

/* ===========================
   CATEGORY TILES
=========================== */
.cat-tiles {
  padding: 60px 0;
  background: white;
}
.cat-tiles .section-head {
  text-align: center;
  margin-bottom: 36px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-tile {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.cat-tile:hover {
  border-color: var(--ember);
  box-shadow: 0 12px 40px rgba(28,43,58,0.13);
  transform: translateY(-4px);
}
.cat-tile-img-wrap {
  background: var(--bg);
  border-radius: 12px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cat-tile-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}
.cat-tile h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.cat-tile p {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.4;
}
.cat-tile-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--navy);
  line-height: 1.15;
}

/* ===========================
   PRODUITS
=========================== */
.produits {
  padding: 70px 0 80px;
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

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

/* ===========================
   PRODUCT CARDS
=========================== */
.produit-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.produit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #c8d4de;
}
.produit-card.featured { border-color: var(--ember); }

.card-top-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
  pointer-events: none;
}

.badge-promo {
  background: var(--ember);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-recommande {
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}
.badge-bestseller {
  background: var(--ember);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}
.badge-pro {
  background: var(--navy);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}
.badge-stock {
  background: var(--green-lt);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}

.produit-visual {
  background: #F5F7FA;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.produit-img {
  position: absolute;
  top: 12px; left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s ease;
}
.produit-card:hover .produit-img { transform: scale(1.06); }

.produit-info {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.produit-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.produit-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
}
.produit-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.stars { color: #F59E0B; font-size: 13px; letter-spacing: 1px; }
.stars-label { font-size: 11px; color: var(--text-3); }
.produit-desc {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 12px;
}
.produit-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.produit-specs li:nth-child(n+4) { display: none; }
.produit-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spec-label { font-size: 11.5px; color: var(--text-3); }
.spec-val { font-size: 11.5px; color: var(--navy); font-weight: 600; }

.produit-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.prix-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.prix-barre {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: line-through;
  font-family: 'DM Mono', monospace;
}
.produit-prix {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'DM Mono', monospace;
  line-height: 1;
}
.btn-cart {
  background: var(--ember);
  color: white;
  border: none;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.btn-cart:hover { background: #c24f0f; transform: scale(1.08); }
.btn-add {
  background: var(--ember);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-add:hover { background: #c24f0f; }

.produit-card.hidden { display: none; }

/* ===========================
   CONFIGURATEUR
=========================== */
.configurateur {
  padding: 80px 0;
  background: var(--navy);
}
.config-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.config-inner .section-eyebrow { color: rgba(255,255,255,0.5); }
.config-inner .section-title { color: white; }
.config-desc { color: rgba(255,255,255,0.65); font-size: 14px; margin-top: 12px; }
.config-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.config-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.range-wrap { display: flex; align-items: center; gap: 16px; }
input[type=range] {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--ember);
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.range-val {
  font-size: 18px;
  font-weight: 700;
  color: white;
  min-width: 64px;
  text-align: right;
}
.toggle-group { display: flex; gap: 8px; flex-wrap: wrap; }
.toggle-btn {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.toggle-btn.active {
  background: var(--ember);
  border-color: var(--ember);
  color: white;
}
.config-result {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.result-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}
.result-product {
  font-size: 17px;
  font-weight: 600;
  color: white;
}
.result-why { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ===========================
   WHY AIRCONFORT
=========================== */
.why {
  padding: 80px 0;
  background: var(--bg);
}
.why-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--ember-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ember);
}
.why-icon svg { width: 22px; height: 22px; }
.why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}
.why-item p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 80px 0;
  background: white;
}
.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-text p:not(.section-eyebrow) {
  font-size: 14px;
  color: var(--text-2);
  margin-top: 16px;
  line-height: 1.65;
}
.contact-info {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.info-line svg { color: var(--ember); flex-shrink: 0; }

.contact-form {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,43,58,0.5);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay[style*="flex"] { display: flex !important; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 24px 80px rgba(28,43,58,0.2);
}
.modal h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--bg);
  border: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--ember); color: white; }
.modal-cart-summary {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 14px;
  line-height: 1.8;
}
.modal-cart-summary .summary-total {
  font-weight: 700;
  color: var(--ember);
  margin-top: 8px;
  font-size: 16px;
  border-top: 1px solid var(--border);
  padding-top: 8px;
}
.modal form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===========================
   TOAST
=========================== */
.success-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--navy);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 400;
  max-width: 360px;
}
.success-toast.show { opacity: 1; transform: translateY(0); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 48px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 80px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  line-height: 1.65;
  max-width: 280px;
}
.footer .logo { color: white; }
.footer .logo span { color: var(--ember); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 28px;
  text-align: center;
  max-width: 1240px;
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   HAMBURGER & MOBILE NAV
=========================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: sticky;
  top: var(--header-h);
  z-index: 99;
  background: white;
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { background: var(--bg); color: var(--ember); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .produits-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-product { display: none; }
  .hero-title { font-size: 40px; }
  .config-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .produits-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { gap: 14px; }
  .trust-item:nth-child(n+3) { display: none; }
  .stat { padding: 20px 30px; }
  .stat-num { font-size: 24px; }
  .cart-drawer { width: min(380px, 100vw); }
}

@media (max-width: 640px) {
  .nav { display: none; }
  .header-search { display: none; }
  .hamburger-btn { display: flex; }
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; gap: 12px; }
  .announce-bar { font-size: 11px; gap: 8px; padding: 0 40px 0 10px; }
  .trust-bar { height: auto; padding: 8px 0; }
  .trust-bar .container { flex-wrap: wrap; gap: 8px; }
  .trust-item:nth-child(n+3) { display: none; }
  .trust-phone { font-size: 12px; }
}

@media (max-width: 580px) {
  .produits-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 32px; }
  .hero-inner { padding-top: 36px; padding-bottom: 36px; }
  .filters { gap: 6px; }
  .filter-btn { font-size: 12px; padding: 6px 14px; }
  .announce-bar .announce-gift { display: none; }
  .hero-trust span:nth-child(n+2) { display: none; }
  .stats-band { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat { padding: 20px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .config-form { padding: 20px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section-title { font-size: 28px; }
}

/* ===========================
   CHECKOUT CHOICE MODAL
=========================== */
.checkout-choice-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,43,58,0.5);
  z-index: 300;
}
.checkout-choice-overlay.open { display: block; }

.checkout-choice-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-radius: 20px 20px 0 0;
  z-index: 301;
  padding: 0 0 env(safe-area-inset-bottom);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 40px rgba(28,43,58,0.15);
  max-width: 520px;
  margin: 0 auto;
}
/* sur desktop → centré comme une modale */
@media (min-width: 640px) {
  .checkout-choice-panel {
    top: 50%; left: 50%;
    right: auto; bottom: auto;
    border-radius: 16px;
    width: 480px;
    transform: translate(-50%, -40%) scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  }
  .checkout-choice-panel.open {
    transform: translate(-50%, -50%) scale(1) !important;
    opacity: 1 !important;
  }
}
.checkout-choice-panel.open { transform: translateY(0); }

.checkout-choice-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
}
.checkout-choice-head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--navy);
}
.checkout-choice-close {
  background: var(--bg);
  border: none;
  border-radius: 8px;
  width: 32px; height: 32px;
  cursor: pointer;
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.checkout-choice-close:hover { background: var(--ember); color: white; }

.checkout-choice-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 22px;
}

.checkout-choice-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.checkout-choice-btn:not(:disabled):hover {
  border-color: var(--ember);
  box-shadow: 0 4px 20px rgba(224,90,19,0.12);
  transform: translateY(-2px);
}
.checkout-choice-btn:not(:disabled):active { transform: translateY(0); }

.choice-icon {
  width: 48px; height: 48px;
  background: var(--ember-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ember);
  flex-shrink: 0;
}
.choice-disabled .choice-icon { background: var(--bg); color: var(--text-3); }

.choice-text { flex: 1; }
.choice-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); }
.choice-text span { display: block; font-size: 12px; color: var(--text-2); margin-top: 2px; }

.choice-arrow { color: var(--ember); flex-shrink: 0; }
.choice-soon {
  background: var(--bg);
  color: var(--text-3);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  flex-shrink: 0;
}
.choice-disabled { opacity: 0.55; cursor: not-allowed; }

.checkout-choice-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  padding: 0 22px 20px;
}

/* hide redundant category text (brand now shown via produit-brand) */
.produit-category { display: none; }

/* hide description on cards — keeps cards uniform height */
.produit-desc { display: none; }

/* category tile images bigger */
.cat-tile-img { width: 140px; height: 140px; object-fit: contain; }

/* tighten cat tiles */
.cat-tile { padding: 28px 20px 22px; }

/* produit-name slightly smaller for uniformity */
.produit-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; line-height: 1.3; }

/* stars tighter */
.produit-stars { margin-bottom: 10px; }

/* footer tighter */
.produit-footer { padding-top: 12px; }

/* prix bigger */
.produit-prix { font-size: 20px; }
