@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800&family=Poppins:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --green:        #1e6b47;
  --green-dark:   #154f34;
  --green-light:  #e8f5ee;
  --orange:       #e07b2a;
  --orange-light: #fdf3e8;
  --text:         #1a1a2e;
  --text-mid:     #4a5568;
  --text-light:   #9aa5b1;
  --white:        #ffffff;
  --gray-bg:      #f7f8f9;
  --border:       #e2e8f0;

  --font-display: 'Poppins', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

  /* ── Hauteurs desktop ── */
  --nav-h:           64px;
  --sec-nav-h:       44px;
  --mobile-search-h: 0px;   /* 0 sur desktop : la barre mobile n'existe pas */
  --top-offset:      calc(var(--nav-h) + var(--sec-nav-h));

  --sidebar-w:    240px;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 6px rgba(30,107,71,0.08);
  --shadow-md: 0 4px 20px rgba(30,107,71,0.12);
  --shadow-lg: 0 12px 48px rgba(30,107,71,0.16);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; cursor: pointer; }
button { cursor: pointer; border: none; font-family: var(--font-body); background: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
textarea, input { font-family: var(--font-body); }

/* ══ NAVBAR ══ */
.navbar {
  background: var(--green);
  height: var(--nav-h);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.2); }

.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  height: 100%;
}

.logo { cursor: pointer; }
.logo-nadir {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
}
.logo-nadir span { color: rgba(255,255,255,0.55); font-weight: 400; }

.nav-search-central { position: relative; width: 100%; }
.nav-search-central input {
  width: 100%; padding: 10px 46px 10px 16px;
  border: none; border-radius: 6px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--white); outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.nav-search-central input::placeholder { color: var(--text-light); }
.nav-search-central button {
  position: absolute; right: 0; top: 0; bottom: 0;
  padding: 0 13px; background: var(--orange);
  border: none; border-radius: 0 6px 6px 0;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; transition: background .2s;
}
.nav-search-central button:hover { background: #c0681f; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-right-link {
  display: flex; flex-direction: column; align-items: center;
  color: var(--white); cursor: pointer; gap: 2px;
  transition: opacity .2s;
  white-space: nowrap;
}
.nav-right-link:hover { opacity: 0.8; }
.nav-right-link span { font-size: 0.66rem; font-weight: 600; }
.cart-icon-wrap { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--orange); color: var(--white);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 0.6rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════
   BARRE DE RECHERCHE MOBILE
   — cachée sur desktop, fixe sur mobile
══════════════════════════════════════════ */
.mobile-search-bar {
  display: none; /* cachée par défaut (desktop) */
  position: fixed;
  top: var(--nav-h);   /* colle sous la navbar */
  left: 0; right: 0;
  z-index: 995;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: 56px;
  align-items: center;
}
.mobile-search-bar .search-inner {
  position: relative;
  width: 100%;
}
.mobile-search-bar input {
  width: 100%;
  padding: 10px 44px 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--gray-bg);
  outline: none;
  transition: border-color .2s, background .2s;
}
.mobile-search-bar input:focus {
  border-color: var(--green);
  background: var(--white);
}
.mobile-search-bar input::placeholder { color: var(--text-light); }
.mobile-search-bar button {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  background: var(--green);
  border: none; border-radius: 50%;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.mobile-search-bar button:hover { background: var(--green-dark); }

/* ✅ Bouton panier mobile — caché par défaut, visible uniquement sur mobile */
.mobile-cart-btn { display: none; }

/* ══ SECONDARY NAV ══ */
.secondary-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: fixed;
  top: var(--nav-h); /* desktop : directement sous la navbar */
  left: 0; right: 0;
  z-index: 990;
  overflow-x: auto;
  scrollbar-width: none;
  height: var(--sec-nav-h);
}
.secondary-nav::-webkit-scrollbar { display: none; }
.secondary-nav-inner {
  width: 100%;
  padding: 0 2rem;
  display: flex; gap: 0; white-space: nowrap;
  height: 100%; align-items: center;
}
.sec-nav-link {
  padding: 0 16px;
  height: 100%;
  display: flex; align-items: center;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  color: var(--text-mid); cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.sec-nav-link:hover { color: var(--green); }
.sec-nav-link.active { color: var(--orange); border-bottom-color: var(--orange); }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.15);
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 999; padding: 0.5rem 0 1rem;
  box-shadow: var(--shadow-md);
}
.mobile-menu a {
  padding: 0.9rem 1.5rem;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; display: block; transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--orange); background: rgba(255,255,255,0.08); }
.mobile-footer-link { padding: 0.75rem 1.5rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.mobile-menu.open { display: flex; }

/* ── PAGES ── */
.page { display: none; min-height: 100vh; padding-top: var(--top-offset); }
.page.active { display: block; }

/* ══════════════════════════════════════════
   LAYOUT AVEC SIDEBAR CATÉGORIES
══════════════════════════════════════════ */
.home-layout {
  display: flex;
  width: 100%;
  align-items: flex-start;
}

/* ── SIDEBAR CATÉGORIES ── */
.sidebar-cats {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--white);
  border-right: 2px solid var(--border);
  position: sticky;
  top: var(--top-offset);
  height: calc(100vh - var(--top-offset));
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  z-index: 100;
}
.sidebar-cats::-webkit-scrollbar { width: 4px; }
.sidebar-cats::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.sidebar-cats-header {
  background: var(--green);
  padding: 0 1.25rem;
  height: 48px;
  display: flex; align-items: center; gap: 10px;
  position: sticky; top: 0; z-index: 2;
}
.sidebar-cats-header span {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
}
.sidebar-cats-header svg { color: var(--white); flex-shrink: 0; }

.sidebar-cat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 1.25rem;
  font-size: 0.84rem; font-weight: 600; color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: all .2s;
}
.sidebar-cat-item:hover { background: var(--green-light); color: var(--green); }
.sidebar-cat-item.active { background: var(--green-light); color: var(--green); border-left: 3px solid var(--green); }
.sidebar-cat-item .cat-emoji { font-size: 1rem; width: 22px; text-align: center; flex-shrink: 0; }
.sidebar-cat-item .cat-arrow { margin-left: auto; font-size: 0.7rem; color: var(--text-light); }

/* ── CONTENU PRINCIPAL ── */
.home-content {
  flex: 1;
  min-width: 0;
}

/* ══════════ HERO ══════════ */
.hero {
  background: var(--green);
  overflow: hidden;
}
.hero-lp {
  width: 100%;
  padding: 3rem 2.5rem 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.hero-lp-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); background: rgba(224,123,42,0.15);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 1rem;
}
.hero-lp-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.8rem);
  font-weight: 800; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.5px;
}
.hero-lp-title em { font-style: italic; font-weight: 600; color: rgba(255,255,255,0.75); }
.hero-lp-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  line-height: 1.65; margin-bottom: 1.75rem;
}
.hero-lp-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--green);
  padding: 11px 22px; border-radius: 6px;
  font-size: 0.84rem; font-weight: 800;
  letter-spacing: 0.3px; transition: all .2s; cursor: pointer; border: none;
}
.btn-hero-primary:hover { background: var(--orange); color: var(--white); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 11px 20px; border-radius: 6px;
  font-size: 0.84rem; font-weight: 700;
  transition: all .2s; cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.25); }

/* ══ HERO SLIDER ══ */
.hero-lp-img {
  border-radius: 14px; overflow: hidden;
  position: relative;
}
.hero-slider-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0,0,0,0.15);
  height: auto;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  width: 100%;
}
.hero-slider-track {
  width: 100%; height: 100%;
  position: relative;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.7s ease;
  background: var(--white);
}
.hero-slide.active img { transform: scale(1.02); }
.hero-slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  padding: 2.5rem 1.25rem 1rem;
  z-index: 2;
}
.hero-slide-badge {
  display: block;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-bottom: 2px;
}
.hero-slide-name {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700; color: #fff;
}
.hero-slider-dots {
  position: absolute; bottom: 0.75rem; right: 1rem;
  display: flex; gap: 0.4rem; z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none; cursor: pointer; padding: 0;
  transition: background 0.3s, transform 0.2s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }
.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.4rem; line-height: 1; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
}
.hero-slider-wrap:hover .hero-slider-arrow { opacity: 1; }
.hero-slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.hero-slider-prev { left: 0.75rem; }
.hero-slider-next { right: 0.75rem; }

/* ══════════ MEILLEURES VENTES ══════════ */
.catalog-section {
  padding: 2.5rem 0;
  background: var(--gray-bg);
  border-top: 2px solid var(--border);
}
.catalog-inner { width: 100%; padding: 0 2.5rem; }
.catalog-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.75rem; flex-wrap: wrap; gap: 0.75rem;
}
.catalog-header h2 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text);
}
.catalog-header h2 .underline { border-bottom: 3px solid var(--green); padding-bottom: 2px; }
.see-all-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700;
  color: var(--white); background: var(--green);
  padding: 8px 18px; border-radius: 6px;
  border: none; cursor: pointer; transition: background .2s;
}
.see-all-btn:hover { background: var(--green-dark); }

/* ══════════ PRODUCT CARD (LP style) ══════════ */
.lp-product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
}
.lp-product-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.lp-card-img {
  aspect-ratio: 1 / 1;
  background: var(--gray-bg);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.lp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 8px;
  transition: transform .5s;
  background: var(--gray-bg);
}
.lp-product-card:hover .lp-card-img img { transform: scale(1.04); }
.lp-card-badge-tag {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 8px 10px; display: flex; justify-content: space-between; align-items: flex-start;
  pointer-events: none;
}
.lp-badge {
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 4px;
}
.lp-badge-new    { background: var(--green); color: var(--white); }
.lp-badge-promo  { background: var(--orange); color: var(--white); }
.lp-badge-soldout{ background: rgba(0,0,0,0.5); color: var(--white); }
.lp-card-body { padding: 0.85rem; flex: 1; display: flex; flex-direction: column; }
.lp-card-category {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 3px;
}
.lp-card-title {
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
  color: var(--text); line-height: 1.3; flex: 1; margin-bottom: 0.7rem;
}
.lp-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 0.4rem; }
.lp-card-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
}
.lp-card-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--green); color: var(--white);
  border: none; border-radius: 6px;
  cursor: pointer; transition: background .2s; flex-shrink: 0;
}
.lp-card-btn:hover { background: var(--green-dark); }

.lp-grid   { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.lp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }

/* ══════════ SECTIONS PAR CATÉGORIE ══════════ */
.cat-section { padding: 2.5rem 0; border-top: 2px solid var(--border); }
.cat-section:nth-child(odd)  { background: var(--white); }
.cat-section:nth-child(even) { background: var(--gray-bg); }
.cat-section-inner { width: 100%; padding: 0 2.5rem; }
.cat-section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap; gap: 0.75rem;
}
.cat-section-header h2 {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text);
  display: flex; align-items: center; gap: 0.6rem;
}
.cat-section-header h2 .cat-icon { font-size: 1.5rem; }
.cat-section-header h2 .cat-underline { border-bottom: 3px solid var(--orange); padding-bottom: 2px; }
.cat-section-header .cat-count {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); background: var(--gray-bg);
  padding: 4px 12px; border-radius: 50px; border: 1px solid var(--border);
}

/* ══════════ PROMO BANNER ══════════ */
.promo-lp { background: var(--green); padding: 3rem 1.5rem; text-align: center; }
.promo-lp-inner { max-width: 700px; margin: 0 auto; }
.promo-lp-tag {
  display: inline-block; font-size: 0.66rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); background: rgba(224,123,42,0.15);
  padding: 5px 14px; border-radius: 50px; margin-bottom: 1rem;
}
.promo-lp h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800; color: var(--white); margin-bottom: 0.75rem;
}
.promo-lp p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; line-height: 1.6; }
.promo-lp-stats { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.promo-lp-stat { text-align: center; }
.promo-lp-stat-n { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--white); display: block; }
.promo-lp-stat-l { font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ══════════ FOOTER ══════════ */
.footer { background: var(--white); border-top: 1px solid var(--border); }
.footer-main {
  padding: 3rem 2rem 2rem;
  max-width: 100%;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-logo-white {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--green); margin-bottom: 0.5rem;
}
.footer-logo-white span { color: var(--orange); }
.footer-brand-white > p { font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.25rem; }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.82rem; color: var(--text-mid);
}
.footer-contact-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a:hover { color: var(--green); }
.footer-hours {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.76rem; color: var(--text-light);
  background: var(--green-light); padding: 8px 12px; border-radius: 6px;
  border: 1px solid rgba(30,107,71,0.15);
}
.footer-hours svg { color: var(--green); }
.footer-socials-white { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
.footer-socials-white a {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); transition: all .2s; border-radius: 8px;
}
.footer-socials-white a:hover { border-color: var(--green); color: var(--green); background: var(--green-light); }
.footer-col-white h4 {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  color: var(--text); margin-bottom: 1.1rem;
  padding-bottom: 0.4rem; border-bottom: 2px solid var(--green);
  display: inline-block;
}
.footer-col-white ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-white ul li a,
.footer-col-white ul li span {
  font-size: 0.83rem; font-weight: 500; color: var(--text-mid);
  cursor: pointer; transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col-white ul li a:hover { color: var(--green); }
.footer-col-white ul li a::before { content: '›'; color: var(--green); font-size: 1rem; font-weight: 700; }
.footer-bottom-white {
  background: var(--green); padding: 0.9rem 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.9rem; flex-wrap: wrap; text-align: center;
}
.footer-bottom-white span { font-size: 0.76rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.footer-bottom-white span.sep { color: rgba(255,255,255,0.4); }

/* ══════════ PAGE HEADER ══════════ */
.page-header-block {
  background: var(--green-light); padding: 3.5rem 2rem 2.5rem;
  border-bottom: 2px solid var(--border);
}
.page-header-block h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800; color: var(--text); line-height: 1.0;
  margin: 0.5rem 0; letter-spacing: -1px;
}
.page-header-block h1 em { font-style: italic; color: var(--green); font-weight: 600; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); background: rgba(30,107,71,0.1); padding: 4px 12px; border-radius: 50px;
  margin-bottom: 0.75rem;
}
.page-header-sub {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-top: 0.75rem;
}

/* ══════════ BOUTIQUE ══════════ */
.boutique-toolbar { display: flex; justify-content: flex-end; margin-bottom: 1.25rem; }
.products-count { font-size: 0.73rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1rem; }
.boutique-grid { gap: 0.9rem; }

/* ══════════ PRODUCT CARD (boutique) ══════════ */
.product-card {
  background: var(--white); cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green); }
.product-img-wrap {
  aspect-ratio: 1 / 1;
  background: var(--white);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  transition: transform .5s ease;
  background: var(--white);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: var(--green); color: var(--white);
  font-size: 0.6rem; font-weight: 800; letter-spacing: 1.5px; padding: 4px 10px;
  text-transform: uppercase; border-radius: 50px;
}
.sold-out-badge-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.80);
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.sold-out-label {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 700;
  color: var(--text-light); border: 2px solid var(--border); padding: 6px 18px;
  background: var(--white); border-radius: 50px;
}
.product-hover-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,107,71,0.7));
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 1.1rem; opacity: 0; transition: opacity .3s;
}
.product-card:hover .product-hover-overlay { opacity: 1; }
.quick-shop-btn {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--white); color: var(--green);
  padding: 8px 20px; border-radius: 50px;
  transform: translateY(8px); transition: transform .3s;
}
.product-card:hover .quick-shop-btn { transform: translateY(0); }
.product-info { padding: 0.85rem 0.9rem 1rem; }
.product-category { font-size: 0.6rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem; }
.product-name { font-family: var(--font-display); font-size: 0.86rem; font-weight: 700; color: var(--text); margin-bottom: 0.55rem; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.3rem; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
}
.stock-pill { font-size: 0.58rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: 50px; }
.stock-soldout { background: var(--border); color: var(--text-light); }
.stock-low { background: rgba(224,123,42,0.12); color: var(--orange); }
.stock-in  { background: var(--green-light); color: var(--green); }
.choose-options-btn {
  display: block; width: 100%; margin-top: 0.65rem; padding: 8px;
  border: 2px solid var(--green); border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--green);
  text-align: center; transition: all .2s; background: transparent;
}
.choose-options-btn:hover { background: var(--green); color: var(--white); }
.sold-out-card .choose-options-btn { opacity: 0.45; cursor: not-allowed; }

/* ══════════ PRODUIT DÉTAIL ══════════ */
.produit-wrap { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem 5rem; }
.produit-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-light); cursor: pointer; margin-bottom: 2rem;
  transition: color .2s; min-height: 44px;
}
.produit-back:hover { color: var(--green); }
.produit-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.produit-gallery { position: sticky; top: calc(var(--top-offset) + 1rem); }
.produit-main-img {
  background: var(--white); aspect-ratio: 1;
  overflow: hidden; margin-bottom: 0.75rem;
  position: relative; border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.produit-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 16px;
}
.produit-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.produit-thumb {
  width: 68px; height: 68px; background: var(--white);
  border: 2px solid var(--border); overflow: hidden; cursor: pointer;
  transition: border-color .2s; border-radius: var(--radius);
}
.produit-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.produit-thumb.active, .produit-thumb:hover { border-color: var(--green); }
.produit-info-col { padding-top: 0.5rem; }
.produit-cat-tag {
  display: inline-block; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); background: var(--green);
  padding: 4px 12px; border-radius: 50px; margin-bottom: 0.75rem;
}
.produit-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  font-size: 0.58rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 1rem; margin-left: 0.5rem;
}
.produit-name-detail {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: 0.75rem;
}
.produit-price-detail {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--green); margin-bottom: 1.1rem;
  transition: color .3s;
}
.produit-price-detail sub { font-size: 0.75rem; color: var(--text-light); font-weight: 400; }
.price-per-color { font-size: 0.7rem; color: var(--text-light); font-weight: 400; }
.stock-info { padding: 10px 14px; font-size: 0.76rem; font-weight: 700; margin-bottom: 1.1rem; border-radius: var(--radius); }
.stock-info.in-stock    { background: var(--green-light); border: 2px solid rgba(30,107,71,0.2); color: var(--green); }
.stock-info.low-stock   { background: var(--orange-light); border: 2px solid rgba(224,123,42,0.25); color: var(--orange); }
.stock-info.out-of-stock{ background: var(--gray-bg); border: 2px solid var(--border); color: var(--text-light); }
.produit-desc { color: var(--text-mid); line-height: 1.8; font-size: 0.88rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border); }
.select-block { margin-bottom: 1.1rem; }
.select-block label { font-size: 0.66rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: 0.5rem; }
.color-tag { display: inline-block; font-size: 0.82rem; font-weight: 600; color: var(--text); padding: 5px 14px; border: 2px solid var(--green); border-radius: 50px; background: var(--green-light); }

/* ══ SÉLECTEUR MULTI-COULEURS ══ */
.color-multi-select {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.color-choice-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border: 2px solid var(--border, #e0e0e0);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  color: var(--text, #333);
}
.color-choice-btn.active {
  border-color: var(--green);
  background: var(--green-light, #e8f5e9);
  color: var(--green);
}
.color-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  border: 1.5px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}

/* ── Reste des styles produit détail ── */
.produit-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.5rem; }
.btn-add-cart {
  background: var(--white); color: var(--green); border: 2px solid var(--green);
  padding: 12px; font-size: 0.76rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 50px; min-height: 48px;
}
.btn-add-cart:hover { background: var(--green-light); }
.btn-buy-now {
  background: var(--green); color: var(--white); padding: 12px;
  font-size: 0.76rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  border-radius: 50px; min-height: 48px;
}
.btn-buy-now:hover { background: var(--green-dark); }
.produit-infos-list { border-top: 2px solid var(--border); padding-top: 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.produit-infos-list li { font-size: 0.82rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.produit-infos-list li::before { content: '✓'; color: var(--white); background: var(--green); width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; font-weight: 800; flex-shrink: 0; }
.sold-out-detail-overlay { position: absolute; inset: 0; background: rgba(255,255,255,0.72); display: flex; align-items: center; justify-content: center; z-index: 2; }
.sold-out-detail-overlay span { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-light); border: 2px solid var(--border); padding: 8px 24px; background: var(--white); border-radius: 50px; }

/* ══════════ PANIER ══════════ */
.panier-wrap { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }
.panier-header { display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 2px solid var(--border); padding-bottom: 1.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.panier-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; line-height: 1; color: var(--text); }
.panier-header h1 em { font-style: italic; color: var(--green); }
.back-link { font-size: 0.76rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-light); cursor: pointer; transition: color .2s; min-height: 44px; display: flex; align-items: center; gap: 6px; }
.back-link:hover { color: var(--green); }
.panier-body { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.panier-empty { text-align: center; padding: 4rem 2rem; border: 2px dashed var(--border); border-radius: var(--radius-lg); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.panier-empty p { color: var(--text-light); margin-bottom: 1.5rem; }
.panier-item { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.panier-item:first-child { border-top: 1px solid var(--border); }
.panier-item-img { width: 76px; height: 76px; flex-shrink: 0; background: var(--white); overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.panier-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.panier-item-info { flex: 1; min-width: 0; }
.panier-item-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.panier-item-sub { font-size: 0.76rem; color: var(--text-light); }
.panier-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.55rem; flex-shrink: 0; }
.panier-item-price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--green); }
.qty-control { display: flex; align-items: center; }
.qty-btn { width: 30px; height: 30px; border: 2px solid var(--border); background: var(--white); color: var(--text); font-size: 1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; border-radius: 50%; }
.qty-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.qty-val { width: 34px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 700; color: var(--text); }
.btn-retirer { font-size: 0.63rem; font-weight: 700; letter-spacing: 1px; color: var(--text-light); text-transform: uppercase; transition: color .2s; cursor: pointer; min-height: 28px; }
.btn-retirer:hover { color: #E53935; }
.panier-summary { background: var(--white); border: 2px solid var(--border); padding: 1.75rem; border-radius: var(--radius-lg); position: sticky; top: calc(var(--top-offset) + 1.5rem); box-shadow: var(--shadow-sm); }
.panier-summary h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; font-size: 0.84rem; font-weight: 600; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.total-row { font-size: 0.92rem; font-weight: 800; color: var(--text); border-bottom: none; margin-top: 0.2rem; padding-top: 0.8rem; border-top: 2px solid var(--border); }
.price-val      { font-weight: 700; color: var(--text); }
.price-delivery { color: var(--orange); font-size: 0.82rem; font-weight: 700; }
.price-total    { font-weight: 800; color: var(--green); font-size: 1.15rem; }
.summary-badges { margin: 1.1rem 0; display: flex; flex-direction: column; gap: 0.3rem; }
.summary-badges span { font-size: 0.7rem; color: var(--text-light); font-weight: 600; }

/* ══════════ COMMANDE ══════════ */
.commande-wrap { max-width: 1100px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; }
.commande-header { margin-bottom: 2.5rem; border-bottom: 2px solid var(--border); padding-bottom: 1.75rem; }
.commande-header h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 800; color: var(--text); line-height: 1; margin-top: 0.75rem; }
.commande-header h1 em { font-style: italic; color: var(--green); }
.commande-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.form-card { background: var(--white); border: 2px solid var(--border); padding: 2rem; border-radius: var(--radius-lg); }
.form-card h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 1.75rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.66rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.45rem; }
.form-group input, .form-group textarea { width: 100%; padding: 11px 13px; border: 2px solid var(--border); background: var(--green-light); color: var(--text); font-size: 16px; transition: border-color .2s; resize: vertical; border-radius: var(--radius); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-info { background: var(--green-light); border: 2px solid rgba(30,107,71,0.2); padding: 11px 13px; font-size: 0.8rem; color: var(--text-mid); font-weight: 600; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 8px; border-radius: var(--radius); }

/* ══ ZONES DE LIVRAISON ══ */
.zone-subtitle { font-size: 0.76rem; color: var(--text-light); font-weight: 500; margin-bottom: 0.75rem; margin-top: -0.2rem; }
.zone-alert { display: flex; align-items: center; gap: 8px; padding: 10px 14px; background: rgba(224,123,42,0.1); border: 2px solid rgba(224,123,42,0.3); border-radius: var(--radius); font-size: 0.78rem; font-weight: 700; color: var(--orange); margin-bottom: 0.75rem; }
.zones-list { display: flex; flex-direction: column; gap: 0; border: 2px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.zone-option { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; cursor: pointer; transition: background .18s; background: var(--white); border-bottom: 1px solid var(--border); position: relative; }
.zone-option:last-child { border-bottom: none; }
.zone-option:hover { background: var(--green-light); }
.zone-option.selected { background: rgba(30,107,71,0.06); }
.zone-option input[type="radio"] { display: none; }
.zone-radio-circle { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .18s; position: relative; margin-top: 2px; }
.zone-option.selected .zone-radio-circle { border-color: var(--green); }
.zone-radio-circle::after { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--green); opacity: 0; transform: scale(0.5); transition: opacity .18s, transform .18s; position: absolute; }
.zone-option.selected .zone-radio-circle::after { opacity: 1; transform: scale(1); }
.zone-info { flex: 1; min-width: 0; }
.zone-label { font-size: 0.86rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.zone-price { color: var(--green); font-weight: 800; }
.zone-option[data-price="5000"] .zone-price,
.zone-option[data-price="6000"] .zone-price { color: var(--orange); }
.zone-desc { font-size: 0.72rem; color: var(--text-light); font-weight: 500; line-height: 1.5; }
.recap-zone-badge { margin: 0.75rem 0; padding: 9px 14px; background: var(--green-light); border: 1px solid rgba(30,107,71,0.2); border-radius: var(--radius); font-size: 0.75rem; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 6px; }
.recap-zone-badge.no-zone { background: rgba(224,123,42,0.08); border-color: rgba(224,123,42,0.25); color: var(--orange); }

/* ══ PAIEMENT ══ */
.payment-methods { display: flex; flex-direction: column; gap: 6px; margin-top: 0.25rem; }
.payment-option { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 2px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: background .18s, border-color .18s; background: var(--green-light); }
.payment-option:hover { background: rgba(30,107,71,0.08); }
.payment-option.selected { border-color: var(--green); background: rgba(30,107,71,0.05); }
.payment-option input[type="radio"] { display: none; }
.radio-circle { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color .18s; position: relative; }
.payment-option.selected .radio-circle { border-color: var(--green); }
.radio-circle::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); opacity: 0; transform: scale(0.5); transition: opacity .18s, transform .18s; position: absolute; }
.payment-option.selected .radio-circle::after { opacity: 1; transform: scale(1); }
.payment-info { flex: 1; min-width: 0; }
.payment-label { font-size: 0.84rem; font-weight: 700; color: var(--text); }
.payment-label.orange { color: #ff6600; }
.payment-desc { font-size: 0.7rem; color: var(--text-light); margin-top: 2px; font-weight: 600; }
.payment-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); }
.payment-logo.square { border-radius: 8px; }
.payment-icon { font-size: 1.3rem; flex-shrink: 0; }

.recap-card { background: var(--white); border: 2px solid var(--border); padding: 1.75rem; border-radius: var(--radius-lg); position: sticky; top: calc(var(--top-offset) + 1.5rem); box-shadow: var(--shadow-sm); }
.recap-card h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 1.25rem; padding-bottom: 0.85rem; border-bottom: 2px solid var(--border); }
.recap-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
.recap-item-img { width: 50px; height: 50px; background: var(--white); flex-shrink: 0; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); }
.recap-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.recap-item-info { flex: 1; min-width: 0; }
.recap-item-info strong { display: block; font-family: var(--font-display); font-size: 0.88rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recap-item-info span { color: var(--text-light); font-size: 0.72rem; font-weight: 600; }
.recap-item-price { font-size: 0.92rem; font-weight: 800; color: var(--green); flex-shrink: 0; }
.recap-line { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.recap-line.total { font-size: 0.95rem; font-weight: 800; color: var(--green); border-bottom: none; padding-top: 0.9rem; border-top: 2px solid var(--border); margin-top: 0.2rem; }
.recap-perks { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.35rem; font-size: 0.73rem; color: var(--text-light); font-weight: 600; }

/* ══════════ CONFIRMATION ══════════ */
.confirmation-wrap { min-height: calc(100vh - var(--top-offset)); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; background: var(--green-light); }
.confirmation-card { max-width: 500px; width: 100%; padding: 3.5rem 2.5rem; background: var(--white); border: 2px solid var(--border); text-align: center; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.confirm-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.confirmation-card h1 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: 1rem; }
.confirmation-card h1 em { font-style: italic; color: var(--green); }
.confirmation-card > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.88rem; }
.confirm-details { background: var(--green-light); border: 2px solid rgba(30,107,71,0.15); padding: 1.1rem 1.25rem; margin-bottom: 1.5rem; text-align: left; font-size: 0.83rem; color: var(--text); line-height: 2; border-radius: var(--radius); }
.confirm-details strong { color: var(--green); }
.confirm-payment-btns { display: flex; flex-direction: column; gap: 0.75rem; }

/* ══════════ CONTACT ══════════ */
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem 5rem; display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.contact-form-card { background: var(--white); border: 2px solid var(--border); padding: 2rem; border-radius: var(--radius-lg); }
.contact-info { background: var(--green-light); border: 2px solid rgba(30,107,71,0.15); padding: 2rem; border-radius: var(--radius-lg); }
.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: 1.25rem; padding-bottom: 0.85rem; border-bottom: 2px solid var(--border); }
.contact-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 0; border-bottom: 1px solid var(--border); font-size: 0.86rem; font-weight: 600; color: var(--text-mid); }
.contact-item svg { color: var(--green); flex-shrink: 0; }
.contact-item a:hover { color: var(--green); }

/* ══════════ À PROPOS ══════════ */
.about-section { max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem; }
.about-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: 1.25rem; }
.about-text h2 em { font-style: italic; color: var(--green); }
.about-text p { color: var(--text-mid); line-height: 1.8; font-size: 0.9rem; margin-bottom: 1rem; }
.about-text h3 { font-size: 0.66rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin: 1.5rem 0 0.65rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-stat { background: var(--green-light); padding: 1.75rem 1rem; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; transition: all .25s; border: 2px solid var(--border); border-radius: var(--radius-lg); }
.about-stat:hover { border-color: var(--green); }
.as-n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--green); line-height: 1; }
.as-l { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); font-weight: 700; }
.story-list { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.story-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.87rem; color: var(--text-mid); line-height: 1.5; }
.story-list li::before { content: '✓'; color: var(--white); background: var(--green); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 800; flex-shrink: 0; }

/* ══════════ BUTTONS ══════════ */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--green); color: var(--white); padding: 12px 26px; font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; transition: all .2s; border: 2px solid var(--green); border-radius: 50px; min-height: 48px; cursor: pointer; }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-primary.full-w { width: 100%; justify-content: center; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--green); padding: 11px 22px; font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; border: 2px solid var(--green); transition: all .2s; border-radius: 50px; min-height: 48px; cursor: pointer; }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-outline.full-w { width: 100%; }
.btn-wa { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: var(--white); padding: 12px 22px; font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; transition: all .2s; border-radius: 50px; min-height: 48px; cursor: pointer; }
.btn-wa:hover { background: #128C7E; }
.btn-wa.full-w { width: 100%; justify-content: center; }
.btn-wave { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #1c7ee0; color: var(--white); padding: 12px 22px; font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; transition: all .2s; border-radius: 50px; min-height: 48px; cursor: pointer; text-decoration: none; border: none; }
.btn-wave:hover { background: #155bb5; }
.btn-wave.full-w { width: 100%; }
.btn-orange-money { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #ff6600; color: var(--white); padding: 12px 22px; font-size: 0.8rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; transition: all .2s; border-radius: 50px; min-height: 48px; cursor: pointer; text-decoration: none; border: none; }
.btn-orange-money:hover { background: #cc5200; }
.btn-orange-money.full-w { width: 100%; }

/* ══════════ TOAST ══════════ */
.toast { position: fixed; bottom: 2rem; right: 1.5rem; left: 1.5rem; max-width: 380px; margin: 0 auto; background: var(--green); color: var(--white); padding: 13px 18px; font-size: 0.82rem; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(12px); transition: all .3s ease; z-index: 9999; border-radius: 50px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; }
.toast::before { content: '✓'; font-size: 1rem; }
.toast.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE — Tablette 1024px
════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --sidebar-w: 200px; }
  .nav-inner { grid-template-columns: 150px 1fr auto; gap: 1rem; }
  .lp-grid   { grid-template-columns: repeat(3, 1fr); }
  .lp-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .panier-body    { grid-template-columns: 1fr; }
  .panier-summary { position: static; }
  .commande-grid  { grid-template-columns: 1fr; }
  .recap-card     { position: static; }
  .contact-wrap   { grid-template-columns: 1fr; }
  .produit-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .produit-gallery{ position: static; }
  .about-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-main    { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ════════════════════════════════════
   RESPONSIVE — Mobile 768px
════════════════════════════════════ */
@media (max-width: 768px) {

  :root {
    --nav-h:           56px;
    --sec-nav-h:       40px;
    --mobile-search-h: 56px;
    --top-offset:      152px;
  }
@media (max-width: 768px) {

  /* 1. Masquer le panier de la navbar (il est maintenant dans la barre de recherche) */
  .nav-right .nav-link-cart {
    display: none !important;
  }

  /* 2. La barre de recherche mobile prend un gap pour l'icône panier */
  .mobile-search-bar {
    gap: 10px;
  }

  /* 3. Le .search-inner prend tout l'espace restant */
  .mobile-search-bar .search-inner {
    flex: 1;
  }

  /* 4. Bouton panier mobile */
  .mobile-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--green);
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    transition: background 0.2s;
  }
  .mobile-cart-btn:hover,
  .mobile-cart-btn:active {
    background: var(--green-light);
  }
  .mobile-cart-btn .cart-icon-wrap {
    position: relative;
  }
}

/* Sur desktop : masquer le bouton panier mobile (il ne doit pas apparaître) */
@media (min-width: 769px) {
  .mobile-cart-btn {
    display: none !important;
  }
}
  /* ── Navbar mobile ── */
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    padding: 0 1rem;
  }
  .nav-search-central { display: none !important; }
  .hamburger { display: flex !important; }

  /* ✅ Masquer le panier de la navbar — il est dans la barre de recherche mobile */
  .nav-right .nav-link-cart { display: none !important; }
  /* Masquer aussi le lien "Nous trouver" */
  .nav-right .nav-link-location { display: none !important; }

  /* ── Barre de recherche mobile ── */
  .mobile-search-bar {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    height: var(--mobile-search-h);
    z-index: 995;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 8px 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    align-items: center;
    gap: 10px; /* ✅ espace entre barre de recherche et panier */
  }

  /* ✅ La barre de recherche prend tout l'espace disponible */
  .mobile-search-bar .search-inner {
    flex: 1;
    position: relative;
  }

  /* ✅ Bouton panier mobile — visible ici uniquement */
  .mobile-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--green);
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cart-btn:active {
    background: var(--green-light);
  }
  .mobile-cart-btn .cart-icon-wrap {
    position: relative;
  }

  /* ── Secondary nav ── */
  .secondary-nav {
    position: fixed;
    top: calc(var(--nav-h) + var(--mobile-search-h));
    left: 0;
    right: 0;
    height: var(--sec-nav-h);
    z-index: 990;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  .secondary-nav::-webkit-scrollbar { display: none; }
  .secondary-nav-inner { padding: 0 0.75rem; }
  .sec-nav-link { padding: 0 10px; font-size: 0.76rem; }

  /* ── Sidebar cachée ── */
  .sidebar-cats { display: none; }
  .home-layout { display: block; }

  /* ── Hero ── */
  .hero-lp {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 1.5rem 1rem 0;
  }
  .hero-slider-wrap {
    height: 220px;
    min-height: 220px;
    border-radius: 0;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }
  .hero-lp-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .hero-lp-sub   { font-size: 0.82rem; }
  .hero-lp-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }

  /* ── Grilles ── */
  .catalog-inner { padding: 0 1rem; }
  .cat-section-inner { padding: 0 1rem; }
  .lp-grid   { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .lp-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }

  /* ── Cards produits mobile ── */
  .lp-card-body { padding: 0.6rem; }
  .lp-card-title { font-size: 0.76rem; }
  .lp-card-price { font-size: 0.95rem; }
  .lp-card-btn { width: 30px; height: 30px; }
  .product-info { padding: 0.7rem 0.75rem 0.85rem; }
  .product-name { font-size: 0.8rem; }
  .product-price { font-size: 1rem; }

  /* ── Panier ── */
  .panier-header { flex-direction: column; align-items: flex-start; }
  .panier-body   { grid-template-columns: 1fr; }
  .panier-item { flex-wrap: wrap; }
  .panier-item-img { width: 60px; height: 60px; }
  .panier-item-right { flex-direction: row; align-items: center; gap: 0.75rem; flex: 1; justify-content: flex-end; }

  /* ── Commande & Produit ── */
  .produit-actions { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .zone-option { padding: 11px 13px; gap: 10px; }
  .zone-label { font-size: 0.82rem; }
  .zone-desc { font-size: 0.68rem; }

  /* ── Multi-couleurs mobile ── */
  .color-chips { gap: 0.5rem; }
  .color-chip { padding: 7px 11px; font-size: 0.75rem; }
  .chip-swatch { width: 15px; height: 15px; }
  .recap-colors-total { font-size: 0.9rem; }

  /* ── À propos ── */
  .about-stats { grid-template-columns: 1fr 1fr; }
  .promo-lp-stats { gap: 1.25rem; }

  /* ── Footer ── */
  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.25rem 1.5rem; }
  .footer-bottom-white { flex-direction: column; gap: 0.4rem; }
  .footer-bottom-white .sep { display: none; }

  /* ── Page header ── */
  .page-header-block { padding: 2.5rem 1.25rem 2rem; }
}

/* ════════════════════════════════════
   RESPONSIVE — Petit mobile 480px
════════════════════════════════════ */
@media (max-width: 480px) {
  .logo-nadir { font-size: 1.2rem !important; }
  .hero-slider-wrap { height: 190px; min-height: 190px; }
  .confirmation-card { padding: 2rem 1.25rem; }
  .toast { right: 0.75rem; left: 0.75rem; max-width: none; }
  .lp-card-btn { display: none; }
  .produit-wrap { padding: 1.5rem 1rem 4rem; }
  .panier-wrap  { padding: 1.5rem 1rem 4rem; }
  .commande-wrap{ padding: 1.5rem 1rem 4rem; }
  .about-section{ padding: 2.5rem 1rem; }
  .contact-wrap { padding: 2rem 1rem 4rem; }
  .color-chips { flex-direction: column; gap: 0.4rem; }
  .color-chip  { width: 100%; border-radius: var(--radius); justify-content: flex-start; }
}

/* ════════════════════════════════════
   UTILITAIRES
════════════════════════════════════ */
@media (hover: none) {
  .product-hover-overlay { display: none; }
  .quick-shop-btn { display: none; }
  .hero-slider-arrow { opacity: 0.7 !important; }
}

* { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }