/* Composants Opal DX
   button · header · hero · category-tile · product-card · badge · footer */

/* ============================================================
   BUTTON
   ============================================================ */
.btn {
  --btn-bg: var(--c-text);
  --btn-fg: var(--c-text-inv);
  --btn-bd: var(--c-text);
  --btn-hover-bg: #2a2a2c;

  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 28px;
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 600;
  letter-spacing: var(--tracking-snug);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out-cubic),
              background var(--dur-fast) var(--ease-out-cubic),
              border-color var(--dur-fast) var(--ease-out-cubic),
              color var(--dur-fast) var(--ease-out-cubic);
  white-space: nowrap;
}
.btn:hover { background: var(--btn-hover-bg); border-color: var(--btn-hover-bg); }
.btn:active { transform: scale(0.98); }

.btn--brand {
  --btn-bg: var(--c-brand);
  --btn-bd: var(--c-brand);
  --btn-hover-bg: var(--c-brand-700);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--c-text);
  --btn-bd: var(--c-border-strong);
  --btn-hover-bg: var(--c-text);
}
.btn--ghost:hover { color: var(--c-text-inv); }

.btn--ghost-inv {
  --btn-bg: transparent;
  --btn-fg: var(--c-text-inv);
  --btn-bd: rgba(255,255,255,.4);
  --btn-hover-bg: var(--c-text-inv);
}
.btn--ghost-inv:hover { color: var(--c-text); border-color: var(--c-text-inv); }

.btn--lg { padding: 18px 36px; font-size: var(--fs-16); }
.btn--sm { padding: 10px 18px; font-size: var(--fs-13); }

.btn .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease-out-expo);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   ANNOUNCEMENT BAR (bandeau défilant top — éditable via config)
   ============================================================ */
.announcement-bar {
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.announcement-bar__track {
  display: flex;
  animation: announcement-scroll var(--marquee-duration, 30s) linear infinite;
  will-change: transform;
  width: max-content;
}
.announcement-bar:hover .announcement-bar__track { animation-play-state: paused; }
.announcement-bar__group {
  display: flex;
  flex-shrink: 0;
}
.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  padding: 8px var(--s-6);
  font-size: var(--fs-13);
  letter-spacing: var(--tracking-snug);
  color: var(--c-text-inv-muted);
  white-space: nowrap;
  position: relative;
}
.announcement-bar__item + .announcement-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
}
@keyframes announcement-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-bar__track { animation: none; }
  .announcement-bar__group + .announcement-bar__group { display: none; }
}

/* ============================================================
   HERO CAROUSEL (pleine largeur, auto-rotate)
   ============================================================ */
.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--c-bg-subtle);
  min-height: clamp(600px, 88vh, 880px);
}
.hero-carousel__viewport {
  overflow: hidden;
  height: 100%;
  min-height: clamp(600px, 88vh, 880px);
}
.hero-carousel__track {
  display: flex;
  transition: transform 700ms var(--ease-out-expo);
  will-change: transform;
  height: 100%;
}
.hero-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: clamp(600px, 88vh, 880px);
  display: grid;
  align-items: end;
  padding-block: clamp(56px, 8vw, 120px) clamp(96px, 10vw, 160px);
}
.hero-carousel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
}
@media (min-width: 1024px) {
  .hero-carousel__grid { grid-template-columns: 6fr 5fr; }
}
.hero-slide__copy { max-width: 56ch; }
.hero-slide__eyebrow { margin-bottom: var(--s-4); }
.hero-slide__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-6);
}
.hero-slide__title em {
  font-style: normal;
  color: var(--c-brand);
  font-weight: 800;
}
.hero-slide__lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--c-text-muted);
  margin-bottom: var(--s-8);
  max-width: 48ch;
}
.hero-slide__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.hero-slide__marquee {
  display: flex;
  gap: var(--s-6);
  font-size: var(--fs-13);
  color: var(--c-text-muted);
  flex-wrap: wrap;
}
.hero-slide__marquee span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-slide__marquee span::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-brand);
  border-radius: var(--r-pill);
}
.hero-slide__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--c-bg);
  border-radius: var(--r-4);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.hero-slide__visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: clamp(24px, 5vw, 64px);
  background: radial-gradient(120% 80% at 50% 30%, #FFFFFF 0%, var(--c-bg-subtle) 100%);
}
.hero-slide__visual-meta {
  position: absolute;
  top: var(--s-6); left: var(--s-6);
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: var(--fs-12);
  font-weight: 500;
}
.hero-slide__visual-badge {
  position: absolute;
  top: var(--s-6); right: var(--s-6);
  padding: 6px 14px;
  background: var(--c-promo);
  color: var(--c-text-inv);
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: var(--fs-13);
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
}
.hero-slide__visual-tag {
  position: absolute;
  bottom: var(--s-6); left: var(--s-6); right: var(--s-6);
  display: flex; justify-content: space-between; align-items: end;
  gap: var(--s-3);
}
.hero-slide__visual-tag .name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-18);
  letter-spacing: var(--tracking-snug);
}
.hero-slide__visual-tag .price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-20);
  font-variant-numeric: tabular-nums;
}

.hero-carousel__nav {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--s-2);
  z-index: 3;
}
.hero-carousel__dot {
  width: 32px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--c-border);
  cursor: pointer;
  transition: background var(--dur-base), width var(--dur-base);
  padding: 0;
  border: 0;
}
.hero-carousel__dot.is-active {
  background: var(--c-text);
  width: 56px;
}
.hero-carousel__arrows {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  padding-inline: clamp(16px, 3vw, 32px);
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}
.hero-carousel__arrow {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  cursor: pointer;
  pointer-events: auto;
  color: var(--c-text);
  transition: background var(--dur-fast), color var(--dur-fast);
  border: 0;
}
.hero-carousel__arrow:hover { background: var(--c-text); color: var(--c-text-inv); }
.hero-carousel__arrow svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; }
@media (max-width: 767px) {
  .hero-carousel__arrows { display: none; }
}

/* ============================================================
   HEADER (sticky, blanc, fin, premium)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur-base);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-8);
  min-height: 88px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--dur-fast);
}
.site-header__brand:hover { opacity: 0.78; }
.site-header__logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 767px) {
  .site-header__logo { height: 44px; }
}
/* Legacy text wordmark — kept for pages qui ne sont pas encore re-générées */
.site-header__brand-text {
  display: none;
}

.primary-nav { display: flex; justify-content: center; }
.primary-nav__list {
  display: flex;
  gap: var(--s-6);
  align-items: center;
}
.primary-nav__item { position: relative; }
.primary-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: var(--tracking-snug);
}
.primary-nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--c-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out-expo);
}
.primary-nav__link:hover::after { transform: scaleX(1); }
.primary-nav__chevron {
  transition: transform var(--dur-base) var(--ease-out-cubic);
  opacity: 0.6;
}
.primary-nav__item.is-open .primary-nav__chevron,
.primary-nav__item:hover .primary-nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  padding: 8px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-3);
  box-shadow: 0 16px 32px -8px rgba(10, 10, 11, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out-expo),
              transform var(--dur-base) var(--ease-out-expo),
              visibility 0s var(--dur-base);
  z-index: calc(var(--z-header) + 1);
}
.primary-nav__item.has-mega:hover .mega-panel,
.primary-nav__item.has-mega:focus-within .mega-panel,
.primary-nav__item.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.mega-panel__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mega-panel__item {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-2);
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 500;
  color: var(--c-text);
  transition: background var(--dur-fast), color var(--dur-fast);
  white-space: nowrap;
}
.mega-panel__item:hover {
  background: var(--c-bg-subtle);
  color: var(--c-brand);
}
.mega-panel__all {
  display: block;
  margin-top: 4px;
  padding: 10px 14px;
  border-top: 1px solid var(--c-border);
  font-family: var(--ff-display);
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--c-brand);
  transition: color var(--dur-fast);
}
.mega-panel__all:hover { color: var(--c-brand-700); }

.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 11, 0.24);
  z-index: calc(var(--z-header) - 1);
  opacity: 0;
  transition: opacity var(--dur-base);
  pointer-events: none;
}
.mega-backdrop.is-active {
  opacity: 1;
  pointer-events: auto;
}
.mega-backdrop[hidden] { display: none; }

/* ============================================================
   MOBILE DRAWER (menu déroulant tactile)
   ============================================================ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: var(--c-bg);
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-out-expo);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--container-pad);
  border-bottom: 1px solid var(--c-border);
  min-height: 72px;
}
.mobile-drawer__nav {
  padding: var(--s-6) var(--container-pad) var(--s-12);
}
.mobile-drawer__group {
  border-bottom: 1px solid var(--c-border);
}
.mobile-drawer__group[open] .primary-nav__chevron { transform: rotate(180deg); }
.mobile-drawer__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-4) 0;
  font-family: var(--ff-display);
  font-size: var(--fs-18);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.mobile-drawer__summary::-webkit-details-marker { display: none; }
.mobile-drawer__sublist {
  padding: 0 0 var(--s-4) var(--s-3);
  display: grid;
  gap: 4px;
}
.mobile-drawer__sublist a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: var(--fs-15);
  color: var(--c-text-muted);
}
.mobile-drawer__sublist a:hover { color: var(--c-text); }
.mobile-drawer__all {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--c-brand) !important;
}
.mobile-drawer__count {
  font-size: var(--fs-12);
  color: var(--c-text-faint);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 1023px) {
  .primary-nav { display: none; }
  .menu-toggle { display: grid; }
}
@media (min-width: 1024px) {
  .mobile-drawer { display: none; }
  .menu-toggle { display: none; }
}

/* Legacy variant-switcher — retiré (config admin uniquement) */
.variant-switcher { display: none !important; }

.site-header__tools {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--r-pill);
  transition: background var(--dur-fast);
  position: relative;
}
.icon-btn:hover { background: var(--c-bg-muted); }
.icon-btn svg { width: 20px; height: 20px; stroke: var(--c-text); fill: none; stroke-width: 1.6; }
.icon-btn[data-count]::after {
  content: attr(data-count);
  position: absolute;
  top: 4px; right: 4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  display: grid; place-items: center;
  background: var(--c-promo);
  color: var(--c-text-inv);
  font-size: 10px;
  font-weight: 600;
  border-radius: var(--r-pill);
  line-height: 1;
}

.menu-toggle { display: none; }

/* mobile nav */
@media (max-width: 1023px) {
  .primary-nav { display: none; }
  .menu-toggle { display: grid; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--c-bg-subtle);
  overflow: hidden;
  min-height: clamp(560px, 88vh, 880px);
  display: grid;
  align-items: end;
  padding-block-end: clamp(48px, 8vw, 120px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 6fr 5fr; align-items: end; }
}
.hero__copy { max-width: 56ch; }
.hero__eyebrow { margin-bottom: var(--s-4); }
.hero__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-6);
}
.hero__title em {
  font-style: normal;
  color: var(--c-brand);
  font-weight: 800;
}
.hero__lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--c-text-muted);
  margin-bottom: var(--s-8);
  max-width: 48ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--c-bg);
  border-radius: var(--r-4);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: clamp(24px, 5vw, 64px);
  background: radial-gradient(120% 80% at 50% 30%, #FFFFFF 0%, var(--c-bg-subtle) 100%);
}
.hero__visual-meta {
  position: absolute;
  top: var(--s-6); left: var(--s-6);
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px 12px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  font-size: var(--fs-12);
  font-weight: 500;
}
.hero__visual-tag {
  position: absolute;
  bottom: var(--s-6); left: var(--s-6); right: var(--s-6);
  display: flex; justify-content: space-between; align-items: end;
  gap: var(--s-3);
}
.hero__visual-tag .name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-18);
  letter-spacing: var(--tracking-snug);
}
.hero__visual-tag .price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--fs-20);
  font-variant-numeric: tabular-nums;
}
.hero__marquee {
  display: flex;
  gap: var(--s-6);
  margin-top: var(--s-12);
  font-size: var(--fs-13);
  color: var(--c-text-muted);
  flex-wrap: wrap;
}
.hero__marquee span {
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__marquee span::before {
  content: ''; width: 6px; height: 6px;
  background: var(--c-brand); border-radius: var(--r-pill);
}

/* ============================================================
   HERO — variante TRIPTYQUE (3 univers côte à côte)
   ============================================================ */
.hero-triptyque {
  background: var(--c-bg-subtle);
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(560px, auto);
  border-bottom: 1px solid var(--c-border);
}
@media (min-width: 768px) {
  .hero-triptyque {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: clamp(560px, 78vh, 820px);
  }
}
.tript-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--s-4);
  padding: clamp(28px, 4vw, 48px);
  background: var(--panel-bg, var(--c-bg));
  color: var(--panel-fg, var(--c-text));
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur-slow) var(--ease-out-expo);
  min-height: 480px;
}
@media (min-width: 768px) {
  .tript-panel {
    border-bottom: 0;
    border-right: 1px solid var(--c-border);
    grid-template-rows: auto 1fr auto;
    min-height: 0;
  }
  .tript-panel:last-child { border-right: 0; }
}
.tript-panel__num {
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 500;
  color: var(--c-text-faint);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  align-self: start;
  z-index: 1;
}
.tript-panel__media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  transition: transform var(--dur-reveal) var(--ease-out-expo);
}
.tript-panel__media img {
  max-width: 78%;
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--dur-reveal) var(--ease-out-expo),
              opacity var(--dur-slow) var(--ease-out-expo);
  filter: drop-shadow(0 24px 40px rgba(10,10,11,0.10));
}
@media (min-width: 768px) {
  .tript-panel__media {
    position: absolute;
    inset: 0;
    min-height: 0;
    z-index: -1;
  }
  .tript-panel__media img { max-width: 70%; max-height: 60%; }
}
.tript-panel:hover .tript-panel__media img { transform: scale(1.06) translateY(-6px); }
.tript-panel__foot {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  align-self: end;
  z-index: 1;
}
.tript-panel__cat {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.tript-panel__sub {
  font-size: var(--fs-14);
  color: var(--c-text-muted);
  max-width: 28ch;
}
.tript-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-4);
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--c-text);
  align-self: start;
}
.tript-panel__cta .arrow { transition: transform var(--dur-base) var(--ease-out-expo); display: inline-block; }
.tript-panel:hover .tript-panel__cta .arrow { transform: translateX(4px); }

/* couleur subtile par univers (palette retenue, juste un wash léger) */
.tript-panel--tv         { --panel-bg: linear-gradient(180deg, #FFFFFF 0%, #EFF4FA 100%); }
.tript-panel--electro    { --panel-bg: linear-gradient(180deg, #FFFFFF 0%, #F6F6F8 100%); }
.tript-panel--mobilier   { --panel-bg: linear-gradient(180deg, #FFFFFF 0%, #FAF6EE 100%); }

/* Top strip présent sur les 2 variantes : nom de marque + tagline */
.hero-headline {
  padding: clamp(32px, 5vw, 64px) 0 clamp(16px, 3vw, 32px);
}
.hero-headline__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.hero-headline__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 18ch;
}
.hero-headline__title em { color: var(--c-brand); font-style: normal; }
.hero-headline__right {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 36ch;
  align-self: end;
}
.hero-headline__right p {
  font-size: var(--fs-16);
  color: var(--c-text-muted);
}

/* ============================================================
   VARIANT SWITCHER (dev/preview only — peut être retiré en prod)
   ============================================================ */
.variant-switcher {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-overlay);
  display: inline-flex;
  align-items: center;
  background: var(--c-bg-dark);
  color: var(--c-text-inv);
  padding: 6px;
  border-radius: var(--r-pill);
  font-family: var(--ff-display);
  font-size: var(--fs-13);
  font-weight: 500;
  box-shadow: 0 12px 32px -8px rgba(0,0,0,0.4);
}
.variant-switcher__label {
  padding: 0 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-size: 10px;
}
.variant-switcher a {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  color: rgba(255,255,255,0.7);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.variant-switcher a:hover { color: #fff; }
.variant-switcher a.is-active {
  background: #fff;
  color: var(--c-text);
}

/* ============================================================
   CATEGORY BAR (sous le hero — 7 familles)
   ============================================================ */
.category-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
  border-block: 1px solid var(--c-border);
}
@media (min-width: 640px) { .category-bar { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .category-bar { grid-template-columns: repeat(7, 1fr); } }

.category-tile {
  background: var(--c-bg);
  padding: var(--s-8) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-2);
  text-align: left;
  position: relative;
  transition: background var(--dur-base) var(--ease-out-cubic),
              color var(--dur-base) var(--ease-out-cubic);
  overflow: hidden;
}
.category-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out-expo);
}
.category-tile:hover { background: var(--c-bg-subtle); }
.category-tile:hover::before { transform: scaleX(1); }
.category-tile__num {
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 500;
  color: var(--c-text-faint);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}
.category-tile__name {
  font-family: var(--ff-display);
  font-size: var(--fs-18);
  font-weight: 700;
  letter-spacing: var(--tracking-snug);
}
.category-tile__count {
  font-size: var(--fs-13);
  color: var(--c-text-muted);
  margin-top: auto;
  padding-top: var(--s-4);
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  display: flex; flex-direction: column;
  gap: var(--s-4);
  text-align: left;
  position: relative;
  isolation: isolate;
}
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-bg-subtle);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease-out-expo),
              box-shadow var(--dur-slow) var(--ease-out-expo);
}
.product-card:hover .product-card__media {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12%;
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badges {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  display: flex; gap: var(--s-2);
  flex-wrap: wrap;
  z-index: 2;
}
.product-card__quick {
  position: absolute;
  right: var(--s-3); bottom: var(--s-3);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--c-text);
  color: var(--c-text-inv);
  border-radius: var(--r-pill);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: all var(--dur-base) var(--ease-out-expo);
}
.product-card:hover .product-card__quick {
  opacity: 1; transform: none;
}
.product-card__quick svg { width: 18px; height: 18px; }

.product-card__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-2) var(--s-4);
  align-items: baseline;
}
.product-card__brand {
  grid-column: 1 / -1;
  font-size: var(--fs-12);
  font-weight: 500;
  color: var(--c-text-faint);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}
.product-card__name {
  font-family: var(--ff-display);
  font-size: var(--fs-16);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: var(--tracking-snug);
  color: var(--c-text);
}
.product-card__price {
  font-family: var(--ff-display);
  font-size: var(--fs-16);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.product-card__price-strike {
  display: block;
  font-size: var(--fs-12);
  color: var(--c-text-faint);
  text-decoration: line-through;
  font-weight: 400;
  margin-top: 2px;
}

/* ============================================================
   BADGE
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--c-text);
  color: var(--c-text-inv);
}
.badge--promo { background: var(--c-promo); color: #fff; }
.badge--featured { background: var(--c-featured); color: var(--c-text); }
.badge--out { background: var(--c-bg-dark); color: var(--c-text-inv); opacity: .9; }
.badge--new { background: var(--c-brand); color: #fff; }
.badge--soft { background: rgba(255,255,255,0.92); color: var(--c-text); backdrop-filter: blur(6px); }

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}
.section-head__title { max-width: 18ch; }
.section-head__title h1, .section-head__title h2 { max-width: 100%; }
@media (min-width: 768px) {
  .section-head__title { max-width: 28ch; }
}
@media (min-width: 1024px) {
  .section-head__title { max-width: none; flex: 1; }
  .section-head__title h1, .section-head__title h2 { max-width: 18ch; }
}
.section-head__right { display: flex; gap: var(--s-3); align-items: center; }

/* ============================================================
   USP / GARANTIES (4 colonnes éditoriales)
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }
.usp {
  background: var(--c-bg-dark);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 2.5vw, 32px);
  display: flex; flex-direction: column; gap: var(--s-4);
  min-height: 220px;
}
.usp__num {
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  color: rgba(255,255,255,0.5);
  letter-spacing: var(--tracking-caps);
  font-weight: 500;
}
.usp__title {
  font-family: var(--ff-display);
  font-size: var(--fs-20);
  font-weight: 700;
  letter-spacing: var(--tracking-snug);
  line-height: 1.2;
}
.usp__text {
  font-size: var(--fs-14);
  line-height: 1.55;
  color: var(--c-text-inv-muted);
  margin-top: auto;
}

/* ============================================================
   EDITORIAL CTA (bandeau pleine largeur, fin)
   ============================================================ */
.cta-band {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: var(--s-6);
  padding-block: clamp(80px, 12vw, 160px);
}
@media (min-width: 1024px) { .cta-band { grid-template-columns: 1fr auto; } }
.cta-band__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 18ch;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding-block: var(--s-6);
  font-size: var(--fs-13);
  color: var(--c-text-muted);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: var(--s-2);
  color: var(--c-text-faint);
}
.breadcrumb a {
  color: var(--c-text-muted);
  transition: color var(--dur-fast);
}
.breadcrumb a:hover { color: var(--c-text); }
.breadcrumb [aria-current="page"] {
  color: var(--c-text);
  font-weight: 500;
}

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pd {
  padding-bottom: clamp(64px, 8vw, 112px);
}
.pd__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
}
@media (min-width: 1024px) {
  .pd__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }
}

/* ---- Gallery ---- */
.pd-gallery {
  position: sticky;
  top: 96px;
  display: grid;
  gap: var(--s-4);
}
@media (max-width: 1023px) {
  .pd-gallery { position: static; }
}
.pd-gallery__main {
  aspect-ratio: 1 / 1;
  background: var(--c-bg-subtle);
  border-radius: var(--r-3);
  overflow: hidden;
  display: grid; place-items: center;
}
.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(24px, 5vw, 64px);
}
.pd-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: var(--s-3);
}
.pd-gallery__thumb {
  aspect-ratio: 1 / 1;
  background: var(--c-bg-subtle);
  border-radius: var(--r-2);
  overflow: hidden;
  display: grid; place-items: center;
  border: 2px solid transparent;
  transition: border-color var(--dur-fast);
}
.pd-gallery__thumb img { width: 80%; height: 80%; object-fit: contain; }
.pd-gallery__thumb.is-active { border-color: var(--c-text); }
.pd-gallery__thumb:hover { border-color: var(--c-border-strong); }

/* ---- Info column ---- */
.pd-info { display: grid; gap: var(--s-6); }
.pd-info__brand {
  font-size: var(--fs-12);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--c-text-muted);
}
.pd-info__name {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}
.pd-info__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  flex-wrap: wrap;
  padding-block: var(--s-4);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.pd-info__price {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.pd-info__price-strike {
  font-size: var(--fs-18);
  color: var(--c-text-faint);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.pd-info__price-tax {
  margin-left: auto;
  font-size: var(--fs-13);
  color: var(--c-text-muted);
}

.stock-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: var(--c-bg-subtle);
  border-radius: var(--r-pill);
  font-size: var(--fs-13);
  font-weight: 500;
  width: max-content;
}
.stock-pill::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: var(--r-pill);
  background: var(--c-success);
}
.stock-pill--out { background: var(--c-bg-muted); color: var(--c-text-muted); }
.stock-pill--out::before { background: var(--c-out-of-stock); }

.pd-info__desc {
  color: var(--c-text-muted);
  font-size: var(--fs-16);
  line-height: var(--lh-base);
  max-width: 56ch;
}

.pd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-pill);
  overflow: hidden;
  background: var(--c-bg);
}
.pd-qty__btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-size: var(--fs-18);
  font-weight: 500;
  background: transparent;
  transition: background var(--dur-fast);
}
.pd-qty__btn:hover { background: var(--c-bg-subtle); }
.pd-qty__value {
  min-width: 44px;
  text-align: center;
  font-family: var(--ff-display);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.pd-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: center;
}
@media (max-width: 640px) {
  .pd-actions { grid-template-columns: 1fr; }
  .pd-qty { justify-self: stretch; }
}
.pd-actions .btn { width: 100%; justify-content: center; }

.pd-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.pd-contact .btn { width: 100%; justify-content: center; }

.pd-bullets {
  display: grid;
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-border);
}
.pd-bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  font-size: var(--fs-14);
}
.pd-bullet svg {
  width: 22px; height: 22px;
  stroke: var(--c-text);
  fill: none;
  stroke-width: 1.6;
  flex-shrink: 0;
}
.pd-bullet strong {
  display: block;
  font-weight: 600;
  font-family: var(--ff-display);
  margin-bottom: 2px;
}
.pd-bullet span { color: var(--c-text-muted); }

/* ---- Specs ---- */
.pd-specs {
  border-top: 1px solid var(--c-border);
  padding-top: clamp(48px, 6vw, 80px);
  margin-top: clamp(48px, 6vw, 80px);
}
.pd-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 768px) {
  .pd-specs__grid { grid-template-columns: 1fr 2fr; gap: clamp(48px, 6vw, 96px); }
}
.pd-specs__table {
  display: grid;
  border-top: 1px solid var(--c-border);
}
.pd-specs__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-border);
  font-size: var(--fs-14);
}
.pd-specs__row dt { color: var(--c-text-muted); }
.pd-specs__row dd { color: var(--c-text); font-weight: 500; }

/* ============================================================
   CATEGORY / CATALOG
   ============================================================ */
.cat-head {
  padding-block: clamp(24px, 4vw, 56px);
  display: grid;
  gap: var(--s-4);
}
.cat-head__title {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.cat-head__sub {
  color: var(--c-text-muted);
  max-width: 56ch;
  font-size: var(--fs-16);
}

.cat-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(64px, 8vw, 112px);
}
@media (min-width: 1024px) {
  .cat-layout { grid-template-columns: 240px 1fr; align-items: start; }
}

/* Sidebar filters */
.cat-sidebar {
  display: grid;
  gap: var(--s-6);
  position: sticky;
  top: 96px;
}
@media (max-width: 1023px) {
  .cat-sidebar { position: static; }
}
.cat-filter {
  display: grid;
  gap: var(--s-3);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--c-border);
}
.cat-filter:last-child { border-bottom: 0; }
.cat-filter__title {
  font-family: var(--ff-display);
  font-size: var(--fs-12);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--c-text);
}
.cat-filter__list { display: grid; gap: 6px; }
.cat-filter__item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: var(--fs-14);
  padding: 4px 0;
  color: var(--c-text);
  transition: color var(--dur-fast);
  cursor: pointer;
}
.cat-filter__item:hover { color: var(--c-brand); }
.cat-filter__item.is-active { color: var(--c-brand); font-weight: 600; }
.cat-filter__count {
  font-size: var(--fs-12);
  color: var(--c-text-faint);
  font-variant-numeric: tabular-nums;
}
.cat-filter__check {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-14);
  cursor: pointer;
  user-select: none;
}
.cat-filter__check input {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--r-1);
  display: grid; place-items: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.cat-filter__check input:checked {
  background: var(--c-text);
  border-color: var(--c-text);
}
.cat-filter__check input:checked::after {
  content: '';
  width: 10px; height: 10px;
  background: var(--c-bg);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.cat-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-border);
  flex-wrap: wrap;
}
.cat-toolbar__count {
  font-size: var(--fs-14);
  color: var(--c-text-muted);
  font-variant-numeric: tabular-nums;
}
.cat-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-14);
}
.cat-toolbar__sort select {
  border: 0;
  background: transparent;
  font-family: var(--ff-display);
  font-weight: 500;
  cursor: pointer;
  padding: 4px 0;
  color: var(--c-text);
  border-bottom: 1.5px solid var(--c-text);
}
.cat-toolbar__sort select:focus { outline: 0; }

.cat-empty {
  padding: var(--s-12) var(--s-6);
  text-align: center;
  color: var(--c-text-muted);
  background: var(--c-bg-subtle);
  border-radius: var(--r-3);
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { padding-bottom: clamp(64px, 8vw, 112px); }
.cart-page__head { padding-block: clamp(24px, 4vw, 56px); max-width: 60ch; }
.cart-page__grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .cart-page__grid { grid-template-columns: 1.6fr 1fr; align-items: start; } }

.cart-list { display: grid; gap: var(--s-3); }
.cart-empty {
  padding: var(--s-12);
  text-align: center;
  background: var(--c-bg-subtle);
  border-radius: var(--r-3);
  display: grid;
  gap: var(--s-6);
  justify-items: center;
}

.cart-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-4);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-3);
  transition: box-shadow var(--dur-fast);
}
.cart-row:hover { box-shadow: var(--shadow-2); }
@media (max-width: 640px) {
  .cart-row { grid-template-columns: 64px 1fr auto; grid-template-areas: 'img info remove' 'img qty total'; }
  .cart-row__media { grid-area: img; }
  .cart-row__info { grid-area: info; }
  .cart-row__qty { grid-area: qty; }
  .cart-row__total { grid-area: total; text-align: right; }
  .cart-row__remove { grid-area: remove; }
}
.cart-row__media {
  width: 80px; height: 80px;
  background: var(--c-bg-subtle);
  border-radius: var(--r-2);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.cart-row__media img { width: 80%; height: 80%; object-fit: contain; }
.cart-row__info { display: grid; gap: 2px; min-width: 0; }
.cart-row__brand {
  font-size: var(--fs-12);
  color: var(--c-text-faint);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
}
.cart-row__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--fs-15);
  color: var(--c-text);
  line-height: 1.3;
}
.cart-row__unit { font-size: var(--fs-13); color: var(--c-text-muted); margin-top: 2px; }
.cart-row__total {
  font-family: var(--ff-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: var(--fs-16);
  min-width: 100px;
  text-align: right;
}
.cart-row__remove {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  color: var(--c-text-muted);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.cart-row__remove:hover { background: var(--c-bg-muted); color: var(--c-text); }

.cart-summary {
  position: sticky;
  top: 96px;
  padding: var(--s-6);
  background: var(--c-bg-subtle);
  border-radius: var(--r-3);
}
.cart-summary__title {
  font-family: var(--ff-display);
  font-size: var(--fs-18);
  font-weight: 700;
  margin-bottom: var(--s-4);
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding-block: 10px;
  font-size: var(--fs-14);
  border-bottom: 1px solid var(--c-border);
}
.cart-summary__row strong { font-variant-numeric: tabular-nums; }
.cart-summary__row--total {
  font-family: var(--ff-display);
  font-size: var(--fs-18);
  padding-top: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 0;
}
.cart-summary__note { font-size: var(--fs-12); color: var(--c-text-muted); margin-top: var(--s-3); }

/* ============================================================
   CHECKOUT FORM
   ============================================================ */
.checkout-block {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: clamp(32px, 4vw, 56px);
  border-top: 1px solid var(--c-border);
}
.checkout-block__head { margin-bottom: var(--s-8); }
.checkout-block__head .eyebrow { display: block; margin-bottom: var(--s-3); }

.checkout-form { display: grid; gap: var(--s-8); }
.checkout-form__grid {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .checkout-form__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .checkout-form__grid { grid-template-columns: 1fr 1fr 1fr; } }
.checkout-form__field { display: grid; gap: 6px; }
.checkout-form__field--wide { grid-column: 1 / -1; }
.checkout-form__field label {
  font-family: var(--ff-display);
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--c-text);
}
.checkout-form__optional { color: var(--c-text-faint); font-weight: 400; }
.checkout-form__field input,
.checkout-form__field select,
.checkout-form__field textarea {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-2);
  background: var(--c-bg);
  font-size: var(--fs-15);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.checkout-form__field input:focus,
.checkout-form__field select:focus,
.checkout-form__field textarea:focus {
  outline: 0;
  border-color: var(--c-brand);
  box-shadow: 0 0 0 3px var(--c-brand-50);
}
.checkout-form__field select:disabled { background: var(--c-bg-muted); cursor: not-allowed; }

.checkout-form__mode {
  border: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .checkout-form__mode { grid-template-columns: 1fr 1fr; } }
.checkout-form__mode legend {
  font-family: var(--ff-display);
  font-size: var(--fs-14);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: var(--s-2);
  grid-column: 1 / -1;
}
.checkout-form__radio {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: start;
  padding: var(--s-4);
  border: 1px solid var(--c-border);
  border-radius: var(--r-3);
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.checkout-form__radio:hover { border-color: var(--c-border-strong); }
.checkout-form__radio:has(input:checked) { border-color: var(--c-brand); background: var(--c-brand-50); }
.checkout-form__radio input { margin-top: 4px; accent-color: var(--c-brand); }
.checkout-form__radio strong { display: block; font-family: var(--ff-display); font-weight: 600; font-size: var(--fs-15); }
.checkout-form__radio em { display: block; font-style: normal; color: var(--c-text-muted); font-size: var(--fs-13); margin-top: 2px; }

.checkout-channels { margin-top: var(--s-4); }
.checkout-channels__title {
  font-family: var(--ff-display);
  font-size: var(--fs-18);
  font-weight: 700;
  margin-bottom: var(--s-5);
}
.checkout-channels__grid {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .checkout-channels__grid { grid-template-columns: 1fr 1fr 1fr; } }
.checkout-channel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-4);
  align-items: center;
  padding: var(--s-5);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-3);
  text-align: left;
  cursor: pointer;
  transition: transform var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.checkout-channel:hover {
  transform: translateY(-2px);
  border-color: var(--c-text);
  background: var(--c-bg-subtle);
}
.checkout-channel:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.checkout-channel strong { display: block; font-family: var(--ff-display); font-weight: 700; font-size: var(--fs-15); margin-bottom: 4px; }
.checkout-channel span { display: block; color: var(--c-text-muted); font-size: var(--fs-13); line-height: 1.4; }
.checkout-channel .arrow { color: var(--c-text); font-size: var(--fs-20); transition: transform var(--dur-fast); }
.checkout-channel:hover .arrow { transform: translateX(4px); }

.checkout-confirmation {
  text-align: center;
  padding: clamp(64px, 8vw, 128px) var(--s-4);
  display: grid;
  gap: var(--s-6);
  justify-items: center;
}
.checkout-confirmation .eyebrow { margin-bottom: var(--s-3); }

/* Bouton "Ajouter au panier" — état ajouté */
.btn.is-added {
  background: var(--c-success) !important;
  border-color: var(--c-success) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-bg-darker);
  color: var(--c-text-inv);
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: var(--s-8);
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(48px, 6vw, 96px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .site-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--s-5);
}
.footer-brand__logo-mark {
  width: 56px; height: 56px;
  background: #FFFFFF;
  border-radius: var(--r-3);
  padding: 6px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-brand__title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-text-inv);
}
.footer-brand__text {
  font-size: var(--fs-14);
  color: var(--c-text-inv-muted);
  max-width: 36ch;
  margin-bottom: var(--s-6);
}
.footer-newsletter {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  overflow: hidden;
  max-width: 380px;
}
.footer-newsletter input {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: 0;
  color: var(--c-text-inv);
  font-size: var(--fs-14);
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter input:focus { outline: 0; }
.footer-newsletter button {
  padding: 0 20px;
  background: var(--c-text-inv);
  color: var(--c-text);
  font-weight: 600;
  font-size: var(--fs-13);
}

.footer-col__title {
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-5);
  font-weight: 500;
}
.footer-col__list { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-col__link {
  font-size: var(--fs-14);
  color: var(--c-text-inv);
  transition: color var(--dur-fast);
}
.footer-col__link:hover { color: var(--c-text-inv-muted); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  padding-top: var(--s-8);
  font-size: var(--fs-13);
  color: var(--c-text-inv-muted);
}
.site-footer__legal { display: flex; gap: var(--s-6); flex-wrap: wrap; }
.site-footer__legal a { transition: color var(--dur-fast); }
.site-footer__legal a:hover { color: var(--c-text-inv); }
