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

/* ══════════════════════════════════
   VARIABLES
══════════════════════════════════ */
:root {
  --navy:         #0f1c3f;
  --navy-dark:    #091430;
  --navy-mid:     #1a2e5a;
  --navy-light:   #e8edf7;
  --blue-accent:  #2563eb;
  --blue-hover:   #1d4ed8;
  --white:        #ffffff;
  --off-white:    #f5f7fb;
  --border:       #dde3f0;
  --text:         #0d1526;
  --text-mid:     #445070;
  --text-light:   #8a96b0;
  --wa-green:     #25d366;
  --wa-dark:      #128c7e;
  --font-display: 'Poppins', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --topbar-h:     36px;
  --nav-h:        68px;
  --catbar-h:     46px;
  --top-offset:   calc(var(--topbar-h) + var(--nav-h) + var(--catbar-h));
  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 8px rgba(15,28,63,.06);
  --shadow-md: 0 4px 24px rgba(15,28,63,.10);
  --shadow-lg: 0 10px 48px rgba(15,28,63,.16);
}

/* ══════════════════════════════════
   RESET & BASE
══════════════════════════════════ */
*, *::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; background: none; font-family: var(--font-body); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
textarea, input { font-family: var(--font-body); }
* { -webkit-tap-highlight-color: transparent; }

/* ══════════════════════════════════
   TOPBAR
══════════════════════════════════ */
.topbar {
  background: var(--navy);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
}
.topbar a { color: rgba(255,255,255,.9); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-sep { color: rgba(255,255,255,.25); }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  background: var(--white);
  height: var(--nav-h);
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.logo {
  cursor: pointer;
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.04em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-accent);
  letter-spacing: -.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}
.nav-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); background: var(--off-white); }
.nav-link.active { color: var(--navy); font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.nav-search-wrap { position: relative; display: flex; align-items: center; }
.nav-search-wrap input {
  width: 240px;
  padding: 9px 42px 9px 14px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: .84rem;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color .2s, background .2s, width .3s;
}
.nav-search-wrap input:focus { border-color: var(--navy); background: var(--white); width: 280px; }
.nav-search-wrap input::placeholder { color: var(--text-light); }
.nav-search-wrap button {
  position: absolute;
  right: 6px;
  width: 30px; height: 30px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.nav-search-wrap button:hover { background: var(--blue-accent); }
.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--navy);
  transition: background .2s, border-color .2s;
}
.cart-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cart-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--blue-accent);
  color: var(--white);
  font-size: .58rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0; right: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
  padding: .5rem 0 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .85rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu a:hover { background: var(--off-white); }
.mobile-search { padding: .75rem 1.25rem; }
.mobile-search input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  font-size: .9rem;
  background: var(--off-white);
  outline: none;
}

/* ══════════════════════════════════
   CATÉGORIES BAR
══════════════════════════════════ */
.cat-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: calc(var(--topbar-h) + var(--nav-h));
  left: 0; right: 0;
  z-index: 980;
  height: var(--catbar-h);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.cat-pill {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mid);
  padding: .35rem 1rem;
  border-radius: 30px;
  border: 1.5px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.cat-pill:hover { color: var(--navy); background: var(--off-white); border-color: var(--border); }
.cat-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

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

/* ══════════════════════════════════
   PAGE HEADER
══════════════════════════════════ */
.page-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem 2.5rem;
}
.page-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.page-header h1 em { font-style: italic; color: var(--blue-accent); font-weight: 700; }
.eyebrow {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue-accent);
}
.back-link {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  transition: color .2s;
  align-self: flex-start;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.back-link:hover { color: var(--navy); }

/* ══════════════════════════════════
   VUE CATÉGORIE SUR PAGE ACCUEIL
══════════════════════════════════ */
.cat-view-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem 2rem;
}
.cat-view-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.cat-view-header-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.cat-view-count {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--navy-light);
  padding: 5px 14px;
  border-radius: 30px;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero { background: var(--navy); overflow: hidden; }
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; font-weight: 700; color: rgba(255,255,255,.65); }
.hero-desc { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 2rem; max-width: 420px; }
.hero-ctas { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-badges { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.hero-badges span { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.55); }
.hero-visual { display: flex; flex-direction: column; gap: 1rem; }
.hero-slider-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,.1);
}
.hero-slider-track { width: 100%; height: 100%; position: relative; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; cursor: pointer; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: contain; padding: 12px; background: rgba(255,255,255,.04); transition: transform .6s ease; }
.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,.6));
  padding: 2.5rem 1.25rem 1rem;
  z-index: 2;
}
.hero-slide-badge { display: block; font-size: .58rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 2px; }
.hero-slide-name { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--white); }
.slider-dots { position: absolute; bottom: .75rem; right: 1rem; display: flex; gap: .4rem; z-index: 10; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0; transition: all .3s; }
.hero-dot.active { background: var(--white); transform: scale(1.4); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
  transition: background .2s, transform .2s;
  opacity: 0;
}
.hero-slider-box:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.prev { left: .75rem; }
.next { right: .75rem; }
.hero-cats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.hero-cat-btn {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.hero-cat-btn:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.25); }
.hero-cat-btn svg { flex-shrink: 0; opacity: .7; }
.hero-cat-btn strong { display: block; font-size: .82rem; font-weight: 700; font-family: var(--font-display); }
.hero-cat-btn small { font-size: .7rem; color: rgba(255,255,255,.5); }
.hero-stats {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  padding: 1.5rem 2rem;
}
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 3rem; }
.stat-n { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-l { font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: .2rem; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }

/* ══════════════════════════════════
   SECTIONS PRODUITS
══════════════════════════════════ */
.products-section { padding: 3rem 2rem; max-width: 1400px; margin: 0 auto; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 1.75rem; flex-wrap: wrap; gap: .75rem;
}
.section-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; }
.section-title .accent { color: var(--blue-accent); }
.section-sub { font-size: .8rem; color: var(--text-light); margin-top: .2rem; }

/* ══════════════════════════════════
   PRODUCT GRID
══════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.boutique-wrap { max-width: 1400px; margin: 0 auto; padding: 2rem; }
.boutique-grid { gap: .9rem; }
.loading-placeholder { grid-column: 1/-1; text-align: center; padding: 2rem; color: var(--text-light); font-size: .85rem; }

/* ══════════════════════════════════
   PRODUCT CARD
══════════════════════════════════ */
.lp-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex; flex-direction: column;
}
.lp-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--navy); }
.lp-card-img { aspect-ratio: 1; background: var(--off-white); overflow: hidden; position: relative; }
.lp-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .5s; background: var(--off-white); }
.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; display: flex; justify-content: space-between; align-items: flex-start; pointer-events: none; }
.lp-badge { font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; }
.lp-badge-new { background: var(--navy); color: var(--white); }
.lp-badge-soldout { background: rgba(0,0,0,.45); color: var(--white); }
.lp-card-body { padding: .9rem; flex: 1; display: flex; flex-direction: column; }
.lp-card-category { font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue-accent); margin-bottom: 3px; }
.lp-card-title { font-family: var(--font-display); font-size: .84rem; font-weight: 600; color: var(--text); line-height: 1.35; flex: 1; margin-bottom: .65rem; }
.lp-card-bottom { display: flex; align-items: center; justify-content: space-between; gap: .4rem; }
.lp-card-price { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.lp-card-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: var(--navy); color: var(--white); border-radius: var(--radius); cursor: pointer; transition: background .2s; flex-shrink: 0; }
.lp-card-btn:hover { background: var(--blue-accent); }

/* Boutique product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.product-img-wrap { aspect-ratio: 1; background: var(--off-white); overflow: hidden; position: relative; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .5s; background: var(--off-white); }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge { position: absolute; top: .75rem; left: .75rem; background: var(--navy); color: var(--white); font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 3px 9px; border-radius: 4px; }
.product-hover-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(15,28,63,.7)); display: flex; align-items: flex-end; justify-content: center; padding-bottom: 1rem; opacity: 0; transition: opacity .3s; }
.product-card:hover .product-hover-overlay { opacity: 1; }
.quick-shop-btn { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; background: var(--white); color: var(--navy); padding: 7px 18px; border-radius: 30px; transform: translateY(6px); transition: transform .3s; }
.product-card:hover .quick-shop-btn { transform: translateY(0); }
.sold-out-badge-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.78); display: flex; align-items: center; justify-content: center; z-index: 2; }
.sold-out-label { font-family: var(--font-display); font-size: .9rem; font-weight: 700; color: var(--text-light); border: 2px solid var(--border); padding: 5px 16px; background: var(--white); border-radius: 30px; }
.product-info { padding: .85rem .9rem 1rem; }
.product-category { font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue-accent); margin-bottom: .25rem; }
.product-name { font-family: var(--font-display); font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: .5rem; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .3rem; }
.product-price { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--navy); }
.stock-pill { font-size: .56rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 2px 7px; border-radius: 30px; }
.stock-in { background: rgba(37,99,235,.1); color: var(--blue-accent); }
.stock-soldout { background: var(--border); color: var(--text-light); }
.choose-options-btn {
  display: block; width: 100%; margin-top: .6rem; padding: 7px;
  border: 1.5px solid var(--navy); border-radius: 30px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); text-align: center; transition: all .2s; background: transparent;
}
.choose-options-btn:hover { background: var(--navy); color: var(--white); }

/* ══════════════════════════════════
   SECTIONS CATÉGORIES PAGE HOME
══════════════════════════════════ */
.cat-section { border-top: 1px solid var(--border); }
.cat-section-inner { max-width: 1400px; margin: 0 auto; padding: 2.5rem 2rem; }
.cat-section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: .75rem; }
.cat-section-header h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text); letter-spacing: -.03em; }
.cat-underline { position: relative; }
.cat-underline::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 2px; background: var(--blue-accent); border-radius: 2px; }
.cat-count { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }
.see-all-btn { font-size: .76rem; font-weight: 700; color: var(--blue-accent); cursor: pointer; transition: color .2s; min-height: 32px; }
.see-all-btn:hover { color: var(--navy); }
.lp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

/* ══════════════════════════════════
   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: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); cursor: pointer; margin-bottom: 2rem; transition: color .2s; min-height: 44px; }
.produit-back:hover { color: var(--navy); }
.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(--off-white); aspect-ratio: 1; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: .75rem; position: relative; }
.produit-main-img img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.produit-thumbs { display: flex; gap: .5rem; flex-wrap: wrap; }
.produit-thumb { width: 66px; height: 66px; background: var(--off-white); border: 1.5px 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:hover, .produit-thumb.active { border-color: var(--navy); }
.produit-info-col { padding-top: .5rem; }
.produit-cat-tag { display: inline-block; font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--white); background: var(--navy); padding: 4px 12px; border-radius: 4px; margin-bottom: .75rem; }
.produit-name-detail { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: .75rem; letter-spacing: -.03em; }
.produit-price-detail { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.stock-info { padding: 10px 14px; font-size: .76rem; font-weight: 700; margin-bottom: 1rem; border-radius: var(--radius); }
.stock-info.in-stock { background: rgba(37,99,235,.08); border: 1.5px solid rgba(37,99,235,.2); color: var(--blue-accent); }
.stock-info.out-of-stock { background: var(--off-white); border: 1.5px solid var(--border); color: var(--text-light); }
.produit-desc { color: var(--text-mid); line-height: 1.8; font-size: .88rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.select-block { margin-bottom: 1rem; }
.select-block label { font-size: .62rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--text-light); display: block; margin-bottom: .5rem; }
.color-multi-select { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.color-choice-btn { display: flex; align-items: center; gap: .45rem; padding: .4rem .9rem; border: 1.5px solid var(--border); border-radius: 30px; background: var(--white); font-size: .82rem; font-weight: 600; cursor: pointer; transition: border-color .18s, background .18s; color: var(--text); }
.color-choice-btn.active { border-color: var(--navy); background: var(--navy-light); color: var(--navy); }
.color-dot { width: 12px; height: 12px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,.15); flex-shrink: 0; }
.produit-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1.5rem; }
.btn-add-cart { background: var(--white); color: var(--navy); border: 1.5px solid var(--navy); padding: 12px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 6px; border-radius: 30px; min-height: 48px; }
.btn-add-cart:hover { background: var(--navy-light); }
.btn-buy-now { background: var(--navy); color: var(--white); padding: 12px; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 6px; border-radius: 30px; min-height: 48px; }
.btn-buy-now:hover { background: var(--blue-accent); }
.produit-infos-list { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; flex-direction: column; gap: .45rem; }
.produit-infos-list li { font-size: .82rem; color: var(--text-mid); display: flex; align-items: center; gap: 8px; }
.produit-infos-list li::before { content: '✓'; color: var(--white); background: var(--navy); width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 800; flex-shrink: 0; }

/* ══════════════════════════════════
   PANIER
══════════════════════════════════ */
.panier-wrap { max-width: 1100px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.panier-empty { text-align: center; padding: 4rem 2rem; border: 1.5px dashed var(--border); border-radius: var(--radius-xl); color: var(--text-light); }
.empty-icon { color: var(--border); margin-bottom: 1rem; }
.panier-empty p { margin-bottom: 1.5rem; font-size: .9rem; }
.panier-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.panier-item:first-child { border-top: 1px solid var(--border); }
.panier-item-img { width: 72px; height: 72px; flex-shrink: 0; background: var(--off-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: .92rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.panier-item-sub { font-size: .74rem; color: var(--text-light); }
.panier-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; flex-shrink: 0; }
.panier-item-price { font-family: var(--font-display); font-size: .92rem; font-weight: 800; color: var(--navy); }
.qty-control { display: flex; align-items: center; }
.qty-btn { width: 28px; height: 28px; border: 1.5px solid var(--border); background: var(--white); color: var(--text); font-size: .95rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; border-radius: 50%; }
.qty-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.qty-val { width: 32px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: .86rem; font-weight: 700; color: var(--text); }
.btn-retirer { font-size: .62rem; font-weight: 700; letter-spacing: .08em; color: var(--text-light); text-transform: uppercase; cursor: pointer; min-height: 24px; transition: color .2s; }
.btn-retirer:hover { color: #dc2626; }
.panier-summary { background: var(--white); border: 1.5px solid var(--border); padding: 1.75rem; border-radius: var(--radius-xl); 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.2rem; font-weight: 800; color: var(--text); margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; font-size: .84rem; font-weight: 600; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.summary-row.total-row { font-size: .95rem; font-weight: 800; color: var(--text); border-bottom: none; padding-top: .85rem; margin-top: .25rem; border-top: 1.5px solid var(--border); }
.delivery-txt { color: var(--blue-accent); font-size: .82rem; font-weight: 700; }
.summary-perks { margin: 1rem 0; display: flex; flex-direction: column; gap: .3rem; }
.summary-perks span { font-size: .7rem; color: var(--text-light); font-weight: 600; }

/* ══════════════════════════════════
   COMMANDE
══════════════════════════════════ */
.commande-wrap { max-width: 1100px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.form-card { background: var(--white); border: 1.5px solid var(--border); padding: 2rem; border-radius: var(--radius-xl); }
.form-card h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 1.75rem; padding-bottom: .85rem; border-bottom: 1px solid var(--border); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-light); margin-bottom: .4rem; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 13px; border: 1.5px solid var(--border); background: var(--off-white); color: var(--text); font-size: .9rem; transition: border-color .2s, background .2s; resize: vertical; border-radius: var(--radius); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.zone-hint { font-size: .75rem; color: var(--text-light); margin-bottom: .75rem; margin-top: -.2rem; }
.zone-alert { display: flex; align-items: center; gap: 8px; padding: 9px 13px; background: rgba(234,88,12,.08); border: 1.5px solid rgba(234,88,12,.25); border-radius: var(--radius); font-size: .76rem; font-weight: 700; color: #ea580c; margin-bottom: .75rem; }
.zones-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.zone-option { display: flex; align-items: flex-start; gap: 12px; padding: 12px 15px; cursor: pointer; transition: background .18s; background: var(--white); border-bottom: 1px solid var(--border); }
.zone-option:last-child { border-bottom: none; }
.zone-option:hover { background: var(--navy-light); }
.zone-option.selected { background: rgba(15,28,63,.04); }
.zone-option input[type="radio"] { display: none; }
.zone-radio { width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid var(--border); flex-shrink: 0; transition: border-color .18s; position: relative; margin-top: 2px; }
.zone-option.selected .zone-radio { border-color: var(--navy); }
.zone-radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--navy); opacity: 0; transform: scale(.5); transition: opacity .18s, transform .18s; position: absolute; top: 50%; left: 50%; translate: -50% -50%; }
.zone-option.selected .zone-radio::after { opacity: 1; transform: scale(1); }
.zone-info { flex: 1; min-width: 0; }
.zone-label { font-size: .84rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.zone-price { color: var(--navy); font-weight: 800; }
.zone-price.free { color: #16a34a; }
.zone-price.high { color: #ea580c; }
.zone-desc { font-size: .71rem; color: var(--text-light); line-height: 1.5; }
.form-secure { background: var(--navy-light); border: 1px solid rgba(15,28,63,.12); padding: 10px 13px; font-size: .78rem; color: var(--text-mid); font-weight: 600; margin-bottom: 1.25rem; border-radius: var(--radius); display: flex; align-items: center; gap: 8px; }
.recap-card { background: var(--white); border: 1.5px solid var(--border); padding: 1.75rem; border-radius: var(--radius-xl); 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.2rem; font-weight: 800; color: var(--text); margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid var(--border); }
.recap-item { display: flex; align-items: center; gap: .8rem; padding: .65rem 0; border-bottom: 1px solid var(--border); }
.recap-item-img { width: 48px; height: 48px; background: var(--off-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: .85rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recap-item-info span { color: var(--text-light); font-size: .7rem; font-weight: 600; }
.recap-item-price { font-size: .9rem; font-weight: 800; color: var(--navy); flex-shrink: 0; }
.recap-line { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; font-size: .8rem; font-weight: 600; color: var(--text-mid); border-bottom: 1px solid var(--border); }
.recap-line.total { font-size: .95rem; font-weight: 800; color: var(--navy); border-bottom: none; padding-top: .85rem; border-top: 1.5px solid var(--border); margin-top: .25rem; }
.recap-zone-badge { margin: .75rem 0; padding: 8px 13px; background: var(--navy-light); border: 1px solid rgba(15,28,63,.12); border-radius: var(--radius); font-size: .73rem; font-weight: 700; color: var(--navy); }
.recap-zone-badge.no-zone { background: rgba(234,88,12,.06); border-color: rgba(234,88,12,.2); color: #ea580c; }
.recap-perks { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .3rem; font-size: .72rem; color: var(--text-light); font-weight: 600; }

/* ══════════════════════════════════
   CONFIRMATION
══════════════════════════════════ */
.confirm-wrap { min-height: calc(100vh - var(--top-offset)); display: flex; align-items: center; justify-content: center; padding: 3rem 1.5rem; background: var(--off-white); }
.confirm-card { max-width: 480px; width: 100%; padding: 3.5rem 2.5rem; background: var(--white); border: 1.5px solid var(--border); text-align: center; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.confirm-icon { font-size: 3rem; margin-bottom: 1.25rem; }
.confirm-card h1 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; color: var(--text); line-height: 1.1; margin-bottom: 1rem; }
.confirm-card h1 em { font-style: italic; color: var(--blue-accent); }
.confirm-card > p { color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; font-size: .88rem; }
.confirm-details { background: var(--navy-light); border: 1.5px solid rgba(15,28,63,.12); padding: 1rem 1.25rem; margin-bottom: 1.5rem; text-align: left; font-size: .82rem; color: var(--text); line-height: 2; border-radius: var(--radius); }
.confirm-details strong { color: var(--navy); }
.confirm-btns { display: flex; flex-direction: column; gap: .75rem; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 5rem; display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; align-items: start; }
.contact-form-card, .contact-info-card { background: var(--white); border: 1.5px solid var(--border); padding: 2rem; border-radius: var(--radius-xl); }
.contact-form-card h2, .contact-info-card h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 1.75rem; padding-bottom: .85rem; border-bottom: 1px solid var(--border); }
.contact-item { display: flex; align-items: center; gap: .7rem; padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .86rem; font-weight: 500; color: var(--text-mid); }
.contact-item:last-of-type { border-bottom: none; }
.contact-item svg { color: var(--navy); flex-shrink: 0; }
.contact-item a:hover { color: var(--navy); }
.contact-hours { margin-top: 1.25rem; padding: 1rem; background: var(--navy-light); border-radius: var(--radius); display: flex; flex-direction: column; gap: .35rem; font-size: .82rem; font-weight: 600; }
.contact-hours strong { color: var(--navy); }
.contact-hours span { color: var(--text-mid); }

/* ══════════════════════════════════
   À PROPOS
══════════════════════════════════ */
.about-wrap { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem 5rem; 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.6rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--text); line-height: 1.1; margin: .75rem 0 1.25rem; letter-spacing: -.03em; }
.about-text h2 em { font-style: italic; color: var(--blue-accent); }
.about-text p { color: var(--text-mid); line-height: 1.8; font-size: .9rem; margin-bottom: 1rem; }
.about-text h3 { font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--navy); margin: 1.5rem 0 .65rem; }
.about-list { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.75rem; }
.about-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .87rem; color: var(--text-mid); line-height: 1.5; }
.about-list li::before { content: '✓'; color: var(--white); background: var(--navy); width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .58rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; position: sticky; top: calc(var(--top-offset) + 1rem); }
.about-stat { background: var(--navy-light); border: 1.5px solid rgba(15,28,63,.1); padding: 2rem 1rem; display: flex; flex-direction: column; align-items: center; gap: .4rem; border-radius: var(--radius-xl); transition: all .25s; }
.about-stat:hover { border-color: var(--navy); }
.astat-n { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; }
.astat-l { font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-light); font-weight: 700; }

/* ══════════════════════════════════
   PROMO BANNER
══════════════════════════════════ */
.promo-banner { background: var(--navy); border-top: 1px solid rgba(255,255,255,.06); }
.promo-inner { max-width: 720px; margin: 0 auto; padding: 4rem 2rem; text-align: center; }
.promo-banner h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin-bottom: .75rem; letter-spacing: -.03em; }
.promo-banner p { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 2rem; line-height: 1.7; }
.promo-stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.promo-stats div { text-align: center; }
.promo-stats strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--white); }
.promo-stats span { font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer { background: var(--off-white); border-top: 1px solid var(--border); }
.footer-grid { max-width: 1400px; margin: 0 auto; padding: 3.5rem 2rem 2.5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: .35rem; letter-spacing: -.04em; }
.footer-logo span { color: var(--blue-accent); }
.footer-tagline { font-size: .8rem; font-weight: 600; color: var(--text-mid); margin-bottom: .5rem; }
.footer-brand > p { font-size: .82rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }
.footer-contacts { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.fc-item { display: flex; align-items: flex-start; gap: .5rem; font-size: .81rem; color: var(--text-mid); }
.fc-item svg { color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.fc-item a:hover { color: var(--navy); }
.footer-hours { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: var(--text-light); background: var(--navy-light); padding: 7px 12px; border-radius: var(--radius); font-weight: 600; }
.footer-hours svg { color: var(--navy); flex-shrink: 0; }
.footer-col h4 { font-family: var(--font-display); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a, .footer-col ul li span { font-size: .82rem; font-weight: 500; color: var(--text-mid); cursor: pointer; transition: color .2s; display: inline-block; }
.footer-col ul li a:hover { color: var(--navy); }
.footer-bottom { background: var(--navy); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom span { font-size: .73rem; color: rgba(255,255,255,.6); }
.footer-mini { background: var(--navy); padding: 1rem 2rem; text-align: center; }
.footer-mini span { font-size: .73rem; color: rgba(255,255,255,.6); }
.products-count { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); }

/* ══════════════════════════════════
   BOUTONS GLOBAUX
══════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--white); color: var(--navy);
  padding: 11px 22px; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  transition: all .2s; border: 1.5px solid var(--white); border-radius: 30px; min-height: 46px; cursor: pointer;
}
.btn-primary:hover { background: rgba(255,255,255,.88); }
.btn-primary.full-w { width: 100%; }

/* Bouton primaire sur fond clair */
.btn-primary-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 11px 22px; font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  transition: background .2s; border: none; border-radius: 30px; min-height: 46px; cursor: pointer;
}
.btn-primary-dark:hover { background: var(--blue-accent); }
.btn-primary-dark.full-w { width: 100%; }

.btn-primary-inv { display: inline-flex; align-items: center; justify-content: center; background: var(--white); color: var(--navy); padding: 12px 26px; font-size: .84rem; font-weight: 700; border-radius: 30px; min-height: 48px; cursor: pointer; transition: background .2s; border: none; }
.btn-primary-inv:hover { background: rgba(255,255,255,.9); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--navy); padding: 11px 22px; font-size: .8rem; font-weight: 700; border: 1.5px solid var(--navy); transition: all .2s; border-radius: 30px; min-height: 46px; cursor: pointer; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline.full-w { width: 100%; }
.btn-outline-sm { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; font-weight: 700; color: var(--navy); background: transparent; border: 1.5px solid var(--navy); padding: 7px 16px; border-radius: 30px; cursor: pointer; transition: all .2s; }
.btn-outline-sm:hover { background: var(--navy); color: var(--white); }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: var(--wa-green); color: var(--white); padding: 11px 20px; font-size: .82rem; font-weight: 700; border-radius: 30px; min-height: 46px; cursor: pointer; transition: background .2s; border: none; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-wa.full-w { width: 100%; justify-content: center; }
.btn-wa-full { display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; background: var(--wa-green); color: var(--white); padding: 12px; font-size: .82rem; font-weight: 700; border-radius: 30px; min-height: 48px; cursor: pointer; transition: background .2s; border: none; }
.btn-wa-full:hover { background: var(--wa-dark); }
.btn-wa-inline { display: inline-flex; align-items: center; gap: 8px; background: var(--wa-green); color: var(--white); padding: 12px 22px; font-size: .8rem; font-weight: 700; letter-spacing: .04em; border-radius: 30px; min-height: 46px; cursor: pointer; transition: background .2s; margin-top: 1.5rem; }
.btn-wa-inline:hover { background: var(--wa-dark); }
.btn-wave { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: #1c7ee0; color: var(--white); padding: 12px 22px; font-size: .8rem; font-weight: 700; border-radius: 30px; min-height: 46px; cursor: pointer; transition: background .2s; border: none; text-decoration: none; }
.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: .8rem; font-weight: 700; border-radius: 30px; min-height: 46px; cursor: pointer; transition: background .2s; border: none; text-decoration: none; }
.btn-orange-money.full-w { width: 100%; }

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

/* ══════════════════════════════════
   RESPONSIVE — 1024px
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-cats-grid { grid-template-columns: repeat(4, 1fr); }
  .stat { padding: 0 1.5rem; }
  .panier-wrap { grid-template-columns: 1fr; }
  .panier-summary { position: static; }
  .commande-wrap { 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-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats-grid { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .lp-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --topbar-h:  0px;
    --nav-h:     60px;
    --catbar-h:  44px;
    --top-offset: calc(var(--nav-h) + var(--catbar-h));
  }
  .topbar { display: none; }
  .nav-inner { padding: 0 1rem; gap: 1rem; }
  .nav-links { display: none; }
  .nav-search-wrap { display: none; }
  .hamburger { display: flex; }
  .mobile-menu .mobile-search input { font-size: 16px; }
  .cat-bar-inner { padding: 0 1rem; }
  .hero-inner { padding: 2rem 1.25rem 2rem; }
  .hero-cats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1rem; padding: 1.5rem 1rem; }
  .stat { padding: .5rem 1.5rem; }
  .stat-sep { display: none; }
  .products-section { padding: 2rem 1.25rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .boutique-wrap { padding: 1.5rem 1rem; }
  .boutique-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .lp-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  .page-header { padding: 2rem 1.25rem 1.75rem; }
  .cat-view-header { padding: 1.5rem 1.25rem 1.25rem; }
  .commande-wrap { padding: 1.5rem 1rem; }
  .form-row-2 { grid-template-columns: 1fr; }
  .panier-wrap { padding: 1.5rem 1rem; }
  .contact-wrap { padding: 2rem 1rem 4rem; }
  .about-wrap { padding: 2rem 1rem 4rem; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .promo-stats { gap: 1.5rem; }
  .produit-wrap { padding: 1.5rem 1rem 4rem; }
  .produit-actions { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .3rem; }
  .hero-cats-grid { gap: .5rem; }
  .hero-cat-btn { padding: .65rem .75rem; }
  .hero-cat-btn small { display: none; }
}

/* ══════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════ */
@media (max-width: 480px) {
  .logo-mark { font-size: 1.35rem; }
  .confirm-card { padding: 2rem 1.25rem; }
  .toast { right: .75rem; left: .75rem; max-width: none; }
  .lp-card-btn { display: none; }
}

@media (hover: none) {
  .product-hover-overlay { display: none; }
  .slider-arrow { opacity: .7 !important; }
}

button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid var(--blue-accent); outline-offset: 2px; }