/* ============================================================
   MAISON MONCEAU — Paris · Lunetterie de luxe
   Palette : ivoire chaud · noir profond · or champagne
   Inspiration : Azuelos Eyewear (grille produit épurée)
   ============================================================ */

:root {
  --bg:          #f7f3ec;
  --bg-2:        #f2ede2;
  --bg-3:        #ebe4d3;
  --ink:         #14110b;

  --fg:          #1a160f;
  --fg-soft:     #4c4639;
  --muted:       #8d8571;
  --line:        rgba(26, 22, 15, 0.13);
  --line-soft:   rgba(26, 22, 15, 0.06);

  --accent:      #a8853f;

  --maxw:        1400px;
  --pad:         clamp(20px, 4vw, 60px);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);

  --serif:       "Cormorant Garamond", Georgia, serif;
  --sans:        "Work Sans", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 500; margin: 0; }
em { font-style: italic; }
button { font-family: inherit; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.eyebrow--light { color: rgba(255,255,255,0.7); }
.lede {
  font-size: 15px;
  color: var(--fg-soft);
  line-height: 1.7;
  max-width: 42ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.btn--gold { background: var(--fg); color: var(--bg); }
.btn--gold:hover { background: var(--accent); transform: translateY(-1px); }
.btn--cart {
  background: var(--fg);
  color: var(--bg);
  border-radius: 999px;
}
.btn--cart:hover { background: var(--accent); transform: translateY(-1px); }
.btn--cart svg { width: 16px; height: 16px; }

/* ============================================================
   BANNIÈRE PROMO
   ============================================================ */
.promo {
  background: var(--fg);
  color: var(--bg);
  text-align: center;
  padding: 8px var(--pad);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.promo p { margin: 0; }

/* ============================================================
   NAV — logo centré, catégories à gauche, panier à droite
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px var(--pad);
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__side { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); }
.nav__side--right { justify-content: flex-end; }
.nav__link {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover::after { transform: scaleX(1); }

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: center;
}
.nav__logo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav__wordmark {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__city {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--accent);
  font-weight: 400;
}

.nav__cart {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--fg);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cart:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.nav__cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
}

@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__side--left { display: none; }
  .nav__brand { justify-self: start; }
  .nav__wordmark { font-size: 16px; }
  .nav__city { font-size: 8px; }
}

/* ============================================================
   HERO — Carrousel mannequins
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.hero__carousel {
  position: relative;
  height: clamp(520px, 78vh, 780px);
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease);
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,17,11,0.55) 0%, rgba(20,17,11,0.15) 45%, rgba(20,17,11,0) 65%);
}
@media (max-width: 720px) {
  .hero__slide-scrim {
    background: linear-gradient(180deg, rgba(20,17,11,0.15) 0%, rgba(20,17,11,0.7) 100%);
  }
}

.hero__product {
  position: absolute;
  left: clamp(24px, 6vw, 80px);
  bottom: clamp(80px, 12vh, 130px);
  max-width: 380px;
  color: #fff;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.9s var(--ease) 0.25s, opacity 0.9s var(--ease) 0.25s;
}
.hero__slide.is-active .hero__product { transform: translateY(0); opacity: 1; }
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.hero__product-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  margin-bottom: 8px;
  color: #fff;
}
.hero__product-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__product-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 26px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.2s var(--ease);
  background: transparent;
  font-family: inherit;
}
.hero__btn svg { width: 15px; height: 15px; }
.hero__btn--primary {
  background: var(--accent);
  color: #fff;
}
.hero__btn--primary:hover { background: #fff; color: var(--fg); transform: translateY(-1px); }
.hero__btn--ghost {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.hero__btn--ghost:hover { background: #fff; color: var(--fg); border-color: #fff; transform: translateY(-1px); }

.hero__nav {
  position: absolute;
  bottom: 24px;
  right: clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}
.hero__nav-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease);
}
.hero__nav-btn:hover { background: var(--accent); border-color: var(--accent); }
.hero__dots { display: flex; gap: 8px; }
.hero__dot {
  width: 30px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s var(--ease);
}
.hero__dot.is-active { background: var(--accent); }
@media (max-width: 720px) {
  .hero__nav { right: 50%; transform: translateX(50%); }
  .hero__product { left: 24px; right: 24px; max-width: none; bottom: 90px; }
  .hero__product-name { font-size: 40px; }
}

/* ============================================================
   SHOP — Grille produits (style Azuelos)
   ============================================================ */
.shop {
  padding: clamp(60px, 8vw, 100px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.shop__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}
.shop__intro { display: flex; flex-direction: column; gap: 8px; }
.shop__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  margin: 4px 0;
}
.shop__count {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop__controls {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.shop__tabs { display: flex; gap: 4px; }
.shop__tab {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  border-radius: 999px;
}
.shop__tab:hover { color: var(--fg); border-color: var(--fg); }
.shop__tab.is-active { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.shop__sort { display: flex; align-items: center; gap: 10px; }
.shop__sort label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.shop__sort select {
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px 32px 10px 16px;
  font-size: 12px;
  color: var(--fg);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234c4639' stroke-width='1.5' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}
.shop__sort select:focus { outline: none; border-color: var(--accent); }

.shop__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(32px, 4vw, 56px) clamp(20px, 2vw, 32px);
}
@media (max-width: 700px) {
  .shop__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
}

.shop__empty {
  text-align: center;
  padding: 100px 20px;
  color: var(--muted);
}
.shop__empty h3 { font-size: 28px; margin: 12px 0 8px; color: var(--fg); }

/* ---- Product card ---- */
.pcard {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.3s var(--ease);
}
.pcard:hover { transform: translateY(-3px); }
.pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.pcard__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: opacity 0.35s var(--ease);
}
.pcard__img--alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.pcard:hover .pcard__img--alt { opacity: 1; }
.pcard:hover .pcard__img--main { opacity: 0; }

.pcard__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--fg);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.pcard__badge--prestige { background: var(--accent); }

.pcard__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 4px;
}
.pcard__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.15;
  color: var(--fg);
}
.pcard__tag {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.pcard__price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--fg);
  font-weight: 500;
}
.pcard__coloris {
  display: flex;
  gap: 4px;
  align-items: center;
}
.pcard__coloris-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.pcard__coloris-num {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-left: 4px;
  text-transform: uppercase;
}

/* ============================================================
   Fiche produit (overlay)
   ============================================================ */
.catfiche {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.catfiche.is-open { opacity: 1; pointer-events: auto; }
.catfiche__backdrop { position: absolute; inset: 0; background: rgba(20,17,11,0.7); backdrop-filter: blur(6px); }
.catfiche__panel {
  position: absolute;
  inset: clamp(20px, 4vw, 60px);
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease);
  max-width: 1200px;
  margin: 0 auto;
}
.catfiche.is-open .catfiche__panel { transform: translateY(0); }
.catfiche__close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--fg);
}
.catfiche__close:hover { background: #fff; }
.catfiche__stage {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
}
@media (max-width: 900px) {
  .catfiche__stage { grid-template-columns: 1fr; grid-template-rows: 45% 55%; overflow-y: auto; }
}
.catfiche__media {
  background: #fff;
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 60px);
  overflow: hidden;
}
.catfiche__img { max-width: 100%; max-height: 100%; object-fit: contain; }
.catfiche__info {
  padding: clamp(30px, 5vw, 60px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.catfiche__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.catfiche__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 12px;
}
.catfiche__price {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 30px);
  color: var(--accent);
  margin-bottom: 22px;
}
.catfiche__desc {
  color: var(--fg-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.catfiche__coloris { margin-bottom: 24px; }
.catfiche__coloris-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.catfiche__coloris-list { display: flex; gap: 10px; flex-wrap: wrap; }
.catfiche__coloris-btn {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 4px;
  padding: 0;
  width: 64px; height: 64px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  display: grid;
  place-items: center;
}
.catfiche__coloris-btn img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 5px;
}
.catfiche__coloris-btn:hover { transform: translateY(-2px); border-color: var(--accent); }
.catfiche__coloris-btn.is-active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }

.catfiche__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}
.catfiche__specs li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.catfiche__specs li span:first-child {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ============================================================
   SAVOIR-FAIRE (bleed section)
   ============================================================ */
.bleed {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 100px var(--pad);
}
.bleed__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.bleed__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(20,17,11,0.7) 0%, rgba(20,17,11,0.35) 100%);
  z-index: 1;
}
.bleed__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  text-align: left;
  width: 100%;
}
.bleed__title {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.05;
  margin: 12px 0 20px;
}
.bleed__title em { color: var(--accent); }
.bleed__copy {
  color: rgba(255,255,255,0.85);
  max-width: 46ch;
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   MANIFESTE
   ============================================================ */
.manifesto {
  padding: clamp(80px, 12vw, 140px) var(--pad);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.manifesto__quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  font-weight: 400;
  margin: 0 0 20px;
}
.manifesto__quote em { color: var(--accent); }
.manifesto__by {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg-2);
  padding: clamp(80px, 10vw, 130px) var(--pad);
}
.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
@media (max-width: 800px) { .contact__inner { grid-template-columns: 1fr; } }
.contact__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  margin: 12px 0 20px;
}
.contact__title em { color: var(--accent); }
.contact__details { display: flex; flex-direction: column; gap: 28px; }
.contact__block { display: flex; flex-direction: column; gap: 6px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact__k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__v {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--fg);
}
a.contact__v { color: var(--accent); }
a.contact__v:hover { text-decoration: underline; }

/* ============================================================
   PANIER (drawer latéral)
   ============================================================ */
.cart-drawer {
  position: fixed; inset: 0;
  z-index: 250;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.cart-drawer.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(20,17,11,0.55);
  backdrop-filter: blur(4px);
}
.cart-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 100vw);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  box-shadow: -10px 0 40px rgba(20,17,11,0.15);
}
.cart-drawer.is-open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}
.cart-drawer__close {
  background: transparent;
  border: 0;
  padding: 4px;
  cursor: pointer;
  color: var(--fg);
  transition: transform 0.25s var(--ease);
}
.cart-drawer__close:hover { transform: rotate(90deg); }

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 0 28px;
}
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item__img {
  width: 72px; height: 72px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 6px;
}
.cart-item__body { display: flex; flex-direction: column; gap: 3px; }
.cart-item__name { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.cart-item__variant { font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.cart-item__price { font-family: var(--serif); color: var(--accent); font-size: 15px; }
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.cart-item__qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--fg);
  transition: background 0.2s;
}
.cart-item__qty button:hover { background: var(--fg); color: var(--bg); }
.cart-item__qty-val { font-size: 13px; min-width: 20px; text-align: center; }
.cart-item__remove {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  align-self: start;
  padding: 4px;
}
.cart-item__remove:hover { color: var(--fg); }

.cart-drawer__empty {
  padding: 60px 28px;
  text-align: center;
  color: var(--muted);
}
.cart-drawer__empty .eyebrow { margin-bottom: 6px; }

.cart-drawer__foot {
  padding: 22px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.cart-drawer__totals {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-drawer__totals span:first-child {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-drawer__total {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
}
.cart-drawer__meta {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 14px;
}
.cart-drawer__cta { width: 100%; justify-content: center; }

/* ============================================================
   CHECKOUT (modal)
   ============================================================ */
.checkout {
  position: fixed; inset: 0;
  z-index: 260;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.checkout.is-open { opacity: 1; pointer-events: auto; }
.checkout__backdrop { position: absolute; inset: 0; background: rgba(20,17,11,0.7); backdrop-filter: blur(6px); }
.checkout__panel {
  position: absolute;
  inset: clamp(20px, 4vw, 60px);
  background: var(--bg);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(30px);
  transition: transform 0.5s var(--ease);
  max-width: 1200px;
  margin: 0 auto;
}
.checkout.is-open .checkout__panel { transform: translateY(0); }
.checkout__close {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--fg);
}
.checkout__close:hover { background: #fff; }
.checkout__stage {
  flex: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  overflow: hidden;
}
@media (max-width: 900px) {
  .checkout__stage { grid-template-columns: 1fr; overflow-y: auto; }
}
.checkout__summary {
  background: var(--bg-2);
  padding: clamp(28px, 4vw, 44px);
  overflow-y: auto;
  border-right: 1px solid var(--line);
}
.checkout__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.checkout__title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 500;
  margin-bottom: 24px;
}
.checkout__lines {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--line);
}
.checkout__line {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.checkout__line img {
  width: 56px; height: 56px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line-soft);
  padding: 4px;
}
.checkout__line-name { font-family: var(--serif); font-size: 16px; line-height: 1.2; }
.checkout__line-meta { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.checkout__line-price { font-family: var(--serif); color: var(--accent); }
.checkout__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
}
.checkout__row--total {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.checkout__row--total span:last-child { color: var(--accent); }

.checkout__form {
  padding: clamp(28px, 4vw, 44px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.checkout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 18px;
}
.checkout__field { display: flex; flex-direction: column; gap: 5px; }
.checkout__field--full { grid-column: 1 / -1; }
.checkout__field span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout__field input,
.checkout__field select,
.checkout__field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--fg);
  transition: border-color 0.3s var(--ease);
  outline: none;
}
.checkout__field textarea { resize: vertical; min-height: 50px; }
.checkout__field input:focus,
.checkout__field select:focus,
.checkout__field textarea:focus { border-color: var(--accent); }

.checkout__consent {
  font-size: 11px;
  color: var(--muted);
  margin: 10px 0 18px;
  line-height: 1.5;
}
.checkout__consent a { color: var(--accent); text-decoration: underline; }
.checkout__submit { width: 100%; justify-content: center; }
.checkout__pay-note {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.06em;
}

.checkout__success {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  padding: 40px;
  z-index: 3;
}
.checkout__success-inner { max-width: 480px; text-align: center; }
.checkout__success svg {
  color: var(--accent);
  margin: 0 auto 20px;
  padding: 12px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  width: 68px; height: 68px;
}
.checkout__success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}
.checkout__success .lede { margin: 0 auto 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--bg-2);
  padding: clamp(60px, 8vw, 100px) var(--pad) 30px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 90px);
}
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; }
}
.footer__brand { display: flex; flex-direction: column; gap: 8px; }
.footer__logo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  filter: brightness(1.1);
  margin-bottom: 8px;
}
.footer__name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg);
}
.footer__baseline {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 640px) { .footer__cols { grid-template-columns: 1fr; gap: 32px; } }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__heading {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.footer__col a {
  font-size: 13px;
  color: var(--bg-2);
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer__col a:hover { opacity: 1; color: var(--bg); }
.footer__note { font-size: 12px; color: rgba(247,243,236,0.6); line-height: 1.6; }

.footer__form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  border-bottom: 1px solid rgba(247,243,236,0.2);
  padding-bottom: 6px;
}
.footer__form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--bg);
  font-family: inherit;
  font-size: 13px;
  padding: 6px 0;
  outline: none;
}
.footer__form input::placeholder { color: rgba(247,243,236,0.5); }
.footer__form button {
  background: transparent;
  border: 0;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
}

.footer__legal {
  border-top: 1px solid rgba(247,243,236,0.15);
  margin-top: 50px;
  padding-top: 24px;
  font-size: 11px;
  color: rgba(247,243,236,0.5);
  text-align: center;
  letter-spacing: 0.06em;
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE MOBILE (< 700px)
   ============================================================ */
@media (max-width: 700px) {
  :root { --pad: 16px; }
  body { font-size: 14px; }

  /* --- Promo bar --- */
  .promo { padding: 6px 12px; font-size: 9px; letter-spacing: 0.1em; }
  .promo p { font-size: 9px; }

  /* --- Nav --- */
  .nav { padding: 10px 14px; }
  .nav__logo { width: 34px; height: 34px; }
  .nav__wordmark { font-size: 14px; }
  .nav__city { font-size: 7px; letter-spacing: 0.24em; }
  .nav__side--right { gap: 12px; }
  .nav__side--right .nav__link { display: none; }
  .nav__cart { width: 38px; height: 38px; }
  .nav__cart svg { width: 18px; height: 18px; }

  /* --- Hero carousel --- */
  .hero__carousel { height: 78vh; min-height: 500px; max-height: 720px; }
  .hero__slide-img { object-position: center 20%; }
  .hero__slide-scrim {
    background: linear-gradient(180deg, rgba(20,17,11,0.15) 0%, rgba(20,17,11,0.35) 45%, rgba(20,17,11,0.85) 100%);
  }
  .hero__product {
    left: 20px; right: 20px; bottom: 78px;
    max-width: none;
    text-align: left;
  }
  .hero__eyebrow { font-size: 10px; letter-spacing: 0.22em; margin-bottom: 8px; }
  .hero__product-name { font-size: 36px; line-height: 0.95; margin-bottom: 6px; }
  .hero__product-tag { font-size: 11px; margin-bottom: 12px; letter-spacing: 0.06em; }
  .hero__product-price { font-size: 22px; margin-bottom: 16px; }
  .hero__actions { gap: 8px; }
  .hero__btn { padding: 11px 14px; font-size: 10px; letter-spacing: 0.1em; flex: 1; justify-content: center; }
  .hero__btn svg { width: 13px; height: 13px; }
  .hero__nav {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
    gap: 10px;
  }
  .hero__nav-btn { width: 34px; height: 34px; }
  .hero__nav-btn svg { width: 16px; height: 16px; }
  .hero__dot { width: 20px; }

  /* --- Shop head --- */
  .shop { padding: 40px 16px 60px; }
  .shop__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
  .shop__title { font-size: 30px; }
  .shop__count { font-size: 11px; }
  .shop__controls {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .shop__tabs {
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .shop__tabs::-webkit-scrollbar { display: none; }
  .shop__tab {
    padding: 8px 14px;
    font-size: 10px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .shop__sort {
    justify-content: space-between;
  }
  .shop__sort label { font-size: 10px; }
  .shop__sort select { font-size: 12px; padding: 8px 30px 8px 12px; }

  /* --- Product card --- */
  .pcard { gap: 8px; }
  .pcard__img { padding: 10px; }
  .pcard__badge { font-size: 8px; padding: 3px 7px; top: 8px; left: 8px; letter-spacing: 0.1em; }
  .pcard__body { padding: 0 2px; gap: 2px; }
  .pcard__name { font-size: 15px; line-height: 1.1; }
  .pcard__tag { font-size: 9px; letter-spacing: 0.06em; }
  .pcard__foot { margin-top: 4px; align-items: flex-end; }
  .pcard__price { font-size: 15px; }
  .pcard__coloris-num { font-size: 9px; margin-left: 3px; }
  .pcard__coloris-dot { width: 5px; height: 5px; }

  /* --- Fiche produit overlay --- */
  .catfiche__panel { inset: 0; border-radius: 0; }
  .catfiche__stage {
    grid-template-columns: 1fr;
    grid-template-rows: 40vh 1fr;
  }
  .catfiche__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .catfiche__media { padding: 20px; }
  .catfiche__info { padding: 24px 20px 40px; }
  .catfiche__eyebrow { font-size: 10px; }
  .catfiche__name { font-size: 30px; margin-bottom: 8px; }
  .catfiche__price { font-size: 22px; margin-bottom: 16px; }
  .catfiche__desc { font-size: 13px; margin-bottom: 18px; }
  .catfiche__coloris-btn { width: 54px; height: 54px; }
  .catfiche__specs li { padding: 10px 0; font-size: 12px; }

  /* --- Bleed (savoir-faire) --- */
  .bleed { padding: 60px 20px; min-height: 55vh; }
  .bleed__title { font-size: 32px; }
  .bleed__copy { font-size: 14px; }

  /* --- Manifesto --- */
  .manifesto { padding: 60px 24px; }
  .manifesto__quote { font-size: 24px; line-height: 1.35; }

  /* --- Contact --- */
  .contact { padding: 60px 16px; }
  .contact__inner { gap: 30px; }
  .contact__title { font-size: 30px; }
  .contact__v { font-size: 17px; }

  /* --- Cart drawer --- */
  .cart-drawer__panel { width: 100vw; }
  .cart-drawer__head { padding: 18px 20px; }
  .cart-drawer__title { font-size: 20px; }
  .cart-drawer__items { padding: 0 20px; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 0; }
  .cart-item__img { width: 64px; height: 64px; }
  .cart-item__name { font-size: 15px; }
  .cart-item__price { font-size: 14px; }
  .cart-drawer__foot { padding: 18px 20px; }
  .cart-drawer__total { font-size: 20px; }

  /* --- Checkout --- */
  .checkout__panel { inset: 0; border-radius: 0; }
  .checkout__stage { grid-template-columns: 1fr; overflow-y: auto; }
  .checkout__close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .checkout__summary, .checkout__form { padding: 22px 20px; }
  .checkout__title { font-size: 22px; margin-bottom: 16px; }
  .checkout__grid { grid-template-columns: 1fr; gap: 12px; }
  .checkout__field span { font-size: 10px; }
  .checkout__field input, .checkout__field select, .checkout__field textarea { font-size: 15px; }
  .checkout__row--total { font-size: 18px; }
  .checkout__success h3 { font-size: 24px; }

  /* --- Footer --- */
  .footer { padding: 50px 20px 24px; }
  .footer__inner { gap: 32px; }
  .footer__name { font-size: 17px; }
  .footer__cols { gap: 26px; }
  .footer__heading { font-size: 10px; }
  .footer__col a { font-size: 12px; }
  .footer__legal { font-size: 10px; margin-top: 32px; padding-top: 18px; }
}

/* Encore plus petit : téléphones étroits */
@media (max-width: 380px) {
  .hero__product-name { font-size: 30px; }
  .hero__product-price { font-size: 20px; }
  .hero__btn { padding: 10px 10px; font-size: 9px; }
  .shop__title { font-size: 26px; }
  .pcard__name { font-size: 14px; }
  .pcard__price { font-size: 14px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
