@font-face{font-family:'Instrument Sans';font-weight:400;font-style:normal;font-display:swap;src:url('https://motion-theme-adventure.myshopify.com/cdn/fonts/instrument_sans/instrumentsans_n4.db86542ae5e1596dbdb28c279ae6c2086c4c5bfa.woff2') format('woff2');}
@font-face{font-family:'Instrument Sans';font-weight:500;font-style:normal;font-display:swap;src:url('https://motion-theme-adventure.myshopify.com/cdn/fonts/instrument_sans/instrumentsans_n5.1ce463e1cc056566f977610764d93d4704464858.woff2') format('woff2');}
@font-face{font-family:'Instrument Sans';font-weight:700;font-style:normal;font-display:swap;src:url('https://motion-theme-adventure.myshopify.com/cdn/fonts/instrument_sans/instrumentsans_n7.e4ad9032e203f9a0977786c356573ced65a7419a.woff2') format('woff2');}
:root{
  --blue:#800020;
  --blue-dim:#5c0017;
  --accent:#800020;
  --gold:#800020;
  --gold-light:#a83c5a;
  --paper:#F8F8F6;
  --white:#fff;
  --ink:#1a1a1a;
  --muted:#6c6c68;
  --line:#e8e8e1;
  --soft:#f1f1ec;
  --max:1440px;
  --gutter:clamp(18px,3vw,56px);
  --radius:2px;
}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:var(--paper);color:var(--ink);font-family:'Instrument Sans',sans-serif;font-weight:500;letter-spacing:-.025em;line-height:1.4}body.no-scroll{overflow:hidden}a{color:inherit;text-decoration:none}button,input{font:inherit}.wrap{width:min(var(--max),calc(100% - 2*var(--gutter)));margin-inline:auto}.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* =========================================================
   1. RUBAN ROUGE FIXE
   ========================================================= */
.announcement {
  background: var(--accent);
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 80;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =========================================================
   2. SITE HEADER TRANSPARENT EN OVERLAY
   ========================================================= */
.site-header {
  height: 64px;
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 70;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.site-header.is-stuck {
  position: fixed;
  top: 0;
  background: rgba(248, 248, 246, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--ink);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
  animation: headerSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* =========================================================
   LOGO — BASCULE AUTOMATIQUE BLANC/NOIR SELON LA BARRE
   ========================================================= */

/* Conteneur qui empile les deux logos */
.brand-logo-wrap {
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-block;
  flex-shrink: 0;
}

/* Les deux logos occupent exactement la même place */
.brand-logo-wrap .brand-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* Par défaut (barre transparente = header non stuck)
   → logo BLANC visible, logo NOIR caché */
.brand-logo-wrap .brand-logo-white {
  opacity: 1;
}
.brand-logo-wrap .brand-logo-black {
  opacity: 0;
}

/* Quand le header devient blanc (is-stuck) :
   → logo NOIR visible, logo BLANC caché */
.site-header.is-stuck .brand-logo-wrap .brand-logo-white {
  opacity: 0;
}
.site-header.is-stuck .brand-logo-wrap .brand-logo-black {
  opacity: 1;
}

/* Sur les pages sans hero (header toujours blanc),
   on force le logo noir visible dès le départ */
.page-no-hero .brand-logo-wrap .brand-logo-white {
  opacity: 0;
}
.page-no-hero .brand-logo-wrap .brand-logo-black {
  opacity: 1;
}

/* Responsive : garder la même taille sur mobile */
@media (max-width: 560px) {
  .brand-logo-wrap {
    width: 22px;
    height: 22px;
  }
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}
.brand img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
}
.nav-link {
  position: relative;
  padding: 10px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: inherit;
}
.icon-btn svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
.menu-btn {
  display: none;
}

/* =========================================================
   3. HERO SLIDER & ANIMATION MOTION
   ========================================================= */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: #111;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: translateX(0);
}
.hero-slide.exit {
  opacity: 0;
  transform: translateX(-100%);
  z-index: 1;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}
.hero-slide.active img {
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.4) 100%);
}
.hero-copy {
  position: absolute;
  left: max(var(--gutter), 6vw);
  bottom: 12%;
  z-index: 3;
  color: #fff;
  max-width: 650px;
}
.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-copy h1 {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.hero-copy p {
  font-size: 13px;
  max-width: 480px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--blue-dim);
  color: #fff;
}
.btn.inverse {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.hero-dots {
  position: absolute;
  z-index: 4;
  left: max(var(--gutter), 6vw);
  bottom: 5%;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 32px;
  height: 2px;
  background: rgba(255,255,255,.35);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.hero-dot.active {
  background: #fff;
}

/* =========================================================
   HERO CATALOGUE (bannière simple)
   ========================================================= */
.catalogue-page .hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  background: #111;
  overflow: hidden;
  margin-top: 0;
}
.catalogue-page .hero-img-wrap {
  position: absolute;
  inset: 0;
}
.catalogue-page .hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalogue-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.5) 100%);
}
.catalogue-page .hero-copy {
  position: absolute;
  left: max(var(--gutter), 6vw);
  bottom: 18%;
  z-index: 3;
  color: #fff;
  max-width: 720px;
}
.catalogue-page .hero-copy h1 {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

/* =========================================================
   4. PANNEAU MENU SLIDE (DRAWER DROITE -> GAUCHE)
   ========================================================= */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 440px;
  background: #ffffff;
  z-index: 100;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}
.mobile-panel.open {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-links a {
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-panel.open .mobile-links a,
.mobile-panel.open .mobile-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--i) * 0.05s);
}
.mobile-footer {
  margin-top: auto;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-small {
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

/* =========================================================
   SECTION LES ESSENTIELS
   ========================================================= */
.essentials-section {
  padding: 60px 0 80px;
}
.essentials-head {
  text-align: center;
  margin-bottom: 36px;
}
.essentials-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.essentials-slider-wrapper {
  position: relative;
  width: 100%;
}
.essentials-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 10px;
}
.essentials-track::-webkit-scrollbar {
  display: none;
}
.essentials-track .product-card {
  scroll-snap-align: start;
  width: 100%;
  background: transparent;
}
.essentials-track .product-media {
  aspect-ratio: 1 / 1.05;
  background: #f4f4f0;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.essentials-track .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.essentials-track .product-meta {
  padding: 10px 0 0;
}
.essentials-track .product-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.essentials-track .product-price {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.essentials-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--blue);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: opacity 0.3s ease, transform 0.2s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.essentials-arrow.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.essentials-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}
.essentials-arrow-left { left: -12px; }
.essentials-arrow-right { right: -12px; }
.essentials-arrow svg {
  width: 16px;
  height: 16px;
}
.essentials-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.btn-essentials-viewall {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.btn-essentials-viewall:hover {
  opacity: 0.7;
}

/* =========================================================
   5. TICKER
   ========================================================= */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 17px 22px;
  font-size: 14px;
  white-space: nowrap;
}
.ticker-item:after {
  content: '✦';
  font-size: 9px;
  color: var(--blue);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   6. SECTIONS & TYPOGRAPHIE GÉNÉRALE
   ========================================================= */
.section {
  padding: clamp(76px, 9vw, 140px) 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 45px;
}
.kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted);
  margin-bottom: 11px;
}
.section-title {
  font-size: clamp(38px, 5vw, 67px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
  margin: 0;
}
.link-arrow {
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  white-space: nowrap;
}
.link-arrow:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* =========================================================
   7. GRILLE PRODUITS UNIFIÉE (index + catalogue)
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}
.product-card {
  background: transparent;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  background: #f4f4f0;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-media img {
  transform: scale(1.05);
}
.product-meta {
  padding: 12px 0 0;
  text-align: left;
}
.product-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.product-price {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.swatches {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  background: var(--swatch);
  display: block;
}
.product-note {
  margin-top: 12px;
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Badges produit */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  line-height: 1;
}
.badge-neuf {
  background: #111111;
  color: #ffffff;
}
.badge-occasion {
  background: #e8e8e3;
  color: #333333;
  border: 1px solid #d4d4ce;
}

/* =========================================================
   8. BARRE DE FILTRES CATALOGUE
   ========================================================= */
.catalogue-filters-section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.filters-flex {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.select-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.select-wrapper label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.motion-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f4f4f0 url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 8px center;
  border: 1px solid var(--line);
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 2px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.motion-select:hover {
  border-color: #c9c9c0;
}
.catalogue-section {
  padding: 48px 0 80px;
}

/* =========================================================
   9. TRADE / CONTREVALEUR - VERSION COMPACTE
   ========================================================= */
.trade {
  background: #111;
  color: #fff;
  padding: 40px 0;
}
.trade-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: auto;
}
.trade-copy {
  padding: 30px clamp(20px, 4vw, 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trade-copy .kicker {
  color: #aaa;
}
.trade-copy h2 {
  font-size: clamp(24px, 3.5vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 16px;
}
.trade-copy p {
  max-width: 560px;
  color: #b7b7b2;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.trade-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.trade-point {
  border-top: 1px solid #31312f;
  padding-top: 14px;
  font-size: 13px;
  color: #ddd;
}
.trade-card {
  align-self: center;
  margin: clamp(26px, 4vw, 70px);
  background: #f5f5f0;
  color: #111;
  padding: 28px;
}
.trade-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
}
.trade-card-top small {
  color: #777;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.trade-card-top h3 {
  font-size: 28px;
  letter-spacing: -.05em;
  margin: 5px 0 0;
  font-weight: 500;
}
.estimate-box {
  border: 1px solid #dcdcd4;
  background: #fff;
  padding: 24px;
}
.estimate-label {
  font-size: 12px;
  color: #777;
}
.estimate-value {
  font-size: 54px;
  letter-spacing: -.06em;
  margin-top: 4px;
}
.estimate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.estimate-chip {
  border-top: 1px solid #ddd;
  padding-top: 14px;
  font-size: 12px;
}
.estimate-chip strong {
  display: block;
  font-size: 20px;
  margin-top: 4px;
}
.trade-card .btn {
  margin-top: 24px;
  width: 100%;
}

/* =========================================================
   10. ACCESSORY OFFER
   ========================================================= */
.accessory-offer {
  background: var(--paper);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}
.offer-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.orbit {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-device {
  position: absolute;
  z-index: 3;
  width: 260px;
  height: 350px;
}
.center-device img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.orbit-item {
  position: absolute;
  background: transparent;
  overflow: hidden;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}
.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.orbit-item:nth-child(2) { width: 180px; height: 180px; top: 10px; left: 15%; z-index: 2; }
.orbit-item:nth-child(3) { width: 190px; height: 190px; top: 20px; right: 12%; z-index: 2; }
.orbit-item:nth-child(4) { width: 170px; height: 220px; bottom: 10px; left: 18%; z-index: 4; }
.orbit-item:nth-child(5) { width: 160px; height: 200px; bottom: 20px; right: 16%; z-index: 2; }

/* =========================================================
   11. VIDEO STRIP - TITRE CENTRÉ
   ========================================================= */
.video-head {
  text-align: center;
  margin-bottom: 36px;
}
.video-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.video-strip {
  display: flex;
  gap: 12px;
  overflow: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.video-strip::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 clamp(190px, 18vw, 260px);
  aspect-ratio: 9/16;
  background: #111;
  scroll-snap-align: start;
  overflow: hidden;
}
.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   12. SECTION AVIS / TESTIMONIALS STYLE MOTION
   ========================================================= */
.reviews {
  background: #ffffff !important;
  padding: 80px 0;
  overflow: hidden;
}
.reviews-head {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.reviews-slider-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card-motion {
  position: absolute;
  background: #f8f8f6;
  border-radius: 2px;
  padding: 36px 28px;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, z-index 0.5s;
  cursor: pointer;
  user-select: none;
}
.review-stars {
  font-size: 14px;
  letter-spacing: 3px;
  color: #111111;
  margin-bottom: 20px;
}
.review-text-body {
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a1a;
  font-weight: 400;
  margin: 0 0 24px;
  max-width: 380px;
}
.review-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}
.review-location {
  font-size: 11px;
  color: #777777;
  margin-top: 3px;
}
.review-card-motion.is-center {
  width: 38%;
  min-width: 320px;
  z-index: 3;
  transform: translateX(0) translateY(-20px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  opacity: 1;
}
.review-card-motion.is-left {
  width: 33%;
  min-width: 280px;
  z-index: 2;
  transform: translateX(-102%) translateY(10px) scale(0.95);
  opacity: 0.85;
}
.review-card-motion.is-right {
  width: 33%;
  min-width: 280px;
  z-index: 2;
  transform: translateX(102%) translateY(10px) scale(0.95);
  opacity: 0.85;
}
.review-card-motion.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  z-index: 1;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #111111;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease;
}
.review-dot.active { background: #111111; }
.reviews-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
.btn-review-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-review-primary:hover {
  transform: translateY(-2px);
  background: #e03d01;
}
.btn-review-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 24px;
  border: 1px solid #111111;
  background: transparent;
  color: #111111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-review-secondary:hover {
  background: #111111;
  color: #ffffff;
}

/* =========================================================
   13. SECTION BLOG / ACTUALITÉS
   ========================================================= */
.blog-section {
  padding: 60px 0;
  background: #ffffff;
}
.blog-head {
  text-align: center;
  margin-bottom: 36px;
}
.blog-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
  margin: 0;
}
.blog-slider-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 15px;
}
.blog-slider-wrapper::-webkit-scrollbar { display: none; }
.blog-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  background: #f9f9f8;
  border-radius: 4px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-thumb {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 14px;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #111111;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 2px;
}
.blog-date {
  font-size: 11px;
  color: #888888;
  display: block;
  margin-bottom: 6px;
}
.blog-card-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
  margin: 0 0 16px;
}
.blog-link {
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
}

/* =========================================================
   14. FOOTER PREMIUM
   ========================================================= */
.site-footer {
  background: #ffffff;
  padding: 60px 0 30px;
  border-top: 1px solid #eaeaea;
  font-family: inherit;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.footer-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111111;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  color: #666666;
  margin: 0 0 8px;
  line-height: 1.4;
}
.footer-loc {
  font-size: 12px;
  color: #888888;
}
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: #111111;
  margin: 0 0 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13px;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #111111; }
.footer-bottom {
  border-top: 1px solid #eaeaea;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #888888;
}

/* =========================================================
   15. SEARCH DRAWER
   ========================================================= */
.search-backdrop {
  position: fixed;
  inset: 0;
  top: 100px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(2px);
  z-index: 74;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, top 0.2s ease;
}
.search-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search-drawer {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 75;
  transform: translateY(-120%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease, top 0.2s ease;
  pointer-events: none;
}
.search-drawer.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
body.is-scrolled .search-drawer { top: 0; }
body.is-scrolled .search-backdrop { top: 0; }
.search-drawer-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.search-header-bar {
  width: 100%;
  background: #ffffff;
  padding: 16px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.search-input-wrap {
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-box-field {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #111111;
  background: #fff;
  height: 44px;
  padding: 0 10px 0 14px;
}
.search-box-field input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: #111;
}
.search-btn-icon {
  border: 0;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.search-btn-icon svg {
  width: 18px;
  height: 18px;
  stroke: #111;
}
.search-drawer-close {
  border: 0;
  background: none;
  font-size: 20px;
  cursor: pointer;
  color: #111;
  padding: 4px;
}
.search-drawer-body {
  display: none;
  width: calc(100% - 32px);
  max-width: 680px;
  background: #ffffff;
  margin-top: 4px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  border-radius: 2px;
}
.search-drawer-body.has-query { display: block; }
.search-results-scroll {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 6px;
}
.search-results-scroll::-webkit-scrollbar { width: 4px; }
.search-results-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.search-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 1px solid #f0f0f0;
}
.search-item-card:last-child { border-bottom: none; }
.search-item-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  background: #f5f5f2;
  border-radius: 4px;
}
.search-item-info strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #111;
}
.search-item-info span {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

/* =========================================================
   16. MODAL AVIS
   ========================================================= */
.review-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.review-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.review-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 440px;
  background: #fff;
  z-index: 1001;
  padding: 24px;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.review-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.review-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.review-modal-header h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.review-modal-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.review-form .form-group { margin-bottom: 14px; }
.review-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #555;
}
.review-form input, .review-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-size: 13px;
  box-sizing: border-box;
}
.btn-submit-review {
  width: 100%;
  height: 44px;
  background: var(--accent);
  border: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s ease;
}
.btn-submit-review:hover { background: #e03d01; }

/* =========================================================
   17. REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   18. RESPONSIVE GLOBAL
   ========================================================= */
@media(max-width:1100px) {
  .nav-links { gap: 18px; }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .offer-wrap { grid-template-columns: 1fr; }
  .offer-copy {
    max-width: 650px;
    margin-inline: auto;
    text-align: center;
  }
  .offer-copy .btn { margin-inline: auto; }
}

@media(max-width:820px) {
  .site-header {
    height: 60px;
    top: 36px;
  }
  .nav {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  .mobile-panel { padding: 28px 30px; }
  .hero-slider {
    height: 72vh;
    min-height: 540px;
  }
  .hero-copy {
    left: var(--gutter);
    right: var(--gutter);
    bottom: 13%;
  }
  .hero-copy h1 { font-size: clamp(22px, 6vw, 32px); }
  .section-head {
    align-items: start;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }
  .trade-grid { grid-template-columns: 1fr; }
  .trade-card { margin: 0 var(--gutter) 40px; }
  .trade-copy { padding: 50px var(--gutter) 30px; }
  .orbit { min-height: 560px; }
  .center-device { width: 280px; }
  .orbit-item { width: 120px; }
  .catalogue-page .hero { height: 50vh; min-height: 360px; }
}

@media(max-width:768px) {
  .essentials-track {
    grid-auto-columns: calc((100% - 16px) / 3);
    gap: 8px;
    padding: 0;
  }
  .essentials-track .product-meta { padding-top: 6px; }
  .essentials-track .product-name { font-size: 11px; }
  .essentials-track .product-price { font-size: 10px; }
  .swatch { width: 8px; height: 8px; }
  .essentials-arrow { width: 30px; height: 30px; }
  .essentials-arrow-left { left: -6px; }
  .essentials-arrow-right { right: -6px; }

  .reviews-slider-container { height: 340px; }
  .review-card-motion.is-center {
    width: 82%;
    transform: translateX(0) translateY(-10px) scale(1);
  }
  .review-card-motion.is-left {
    width: 75%;
    transform: translateX(-88%) scale(0.9);
    opacity: 0.4;
  }
  .review-card-motion.is-right {
    width: 75%;
    transform: translateX(88%) scale(0.9);
    opacity: 0.4;
  }
  .review-text-body { font-size: 13px; }
  .reviews-actions { flex-direction: row; gap: 10px; }
  .btn-review-primary, .btn-review-secondary {
    height: 42px;
    padding: 0 16px;
    font-size: 11px;
  }

  .blog-card {
    flex: 0 0 80%;
    padding: 16px;
  }
  .blog-card-title { font-size: 14px; }
  .blog-thumb { height: 140px; }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .footer-logo { font-size: 13px; }
  .footer-desc,
  .footer-loc,
  .footer-heading,
  .footer-links a { font-size: 11px; }
  .footer-links li { margin-bottom: 8px; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 10px;
  }

  .search-drawer-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media(max-width:560px) {
  .brand-name { font-size: 14px; }
  .brand img { width: 22px; height: 22px; }
  .site-header {
    height: 56px;
    top: 36px;
  }
  .hero-slider {
    height: 73vh;
    min-height: 520px;
  }
  .hero-copy p { font-size: 15px; }
  .hero-copy .btn { min-height: 46px; }
  .mobile-panel {
    padding: 24px 24px;
    width: 92%;
  }
  .mobile-links a { font-size: 20px; }
  .ticker-item { padding-inline: 16px; }
  .section { padding: 72px 0; }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }
  .product-media {
    aspect-ratio: 1 / 1.07;
    padding: 10px;
  }
  .product-name { font-size: 12px; }
  .product-price { font-size: 11px; }
  .product-badge {
    font-size: 8px;
    padding: 3px 6px;
    top: 6px;
    right: 6px;
  }

  .filters-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .select-wrapper { justify-content: space-between; }
  .motion-select { width: 65%; }

  .trade-points { grid-template-columns: 1fr; }
  .trade-card { padding: 22px; }
  .orbit { min-height: 410px; }
  .center-device { width: 210px; }
  .orbit-item { width: 88px; }
  .orbit-item:nth-child(2) { left: 0; top: 4%; }
  .orbit-item:nth-child(3) { right: 0; top: 8%; }
  .orbit-item:nth-child(4) { left: 2%; bottom: 2%; }
  .orbit-item:nth-child(5) { right: 2%; bottom: 5%; }
  .search-results { grid-template-columns: 1fr; }

  .catalogue-page .hero { height: 44vh; min-height: 300px; }
  .catalogue-page .hero-copy h1 { font-size: 22px; }
}

@media(prefers-reduced-motion:reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto!important;
    animation-duration: .01ms!important;
    animation-iteration-count: 1!important;
    transition-duration: .01ms!important;
  }
}

/* =========================================================
   19. PAGE PRODUIT — UNIFIÉE SUR TOUT LE SITE (.page-site)
   ========================================================= */

/* Main + breadcrumb */
.page-site .page-produit-main { padding: 40px 0 80px; }
.page-site .breadcrumb {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 24px;
}
.page-site .breadcrumb a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* Bloc haut : image + infos */
.page-site .product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
  margin-bottom: 40px;
}

.page-site .product-media-wrapper { position: relative; }

/* Panneau infos */
.page-site .product-info-panel {
  display: flex;
  flex-direction: column;
}
.page-site .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}
.page-site .product-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.page-site .garantie-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}
.page-site .product-description-top {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 24px;
}

.page-site .price-row { margin-bottom: 24px; }
.page-site .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
}

/* Sélecteurs */
.page-site .selector {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
}
.page-site .selector-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.page-site .selector-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.page-site .choice-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.page-site .choice-cap {
  padding: 10px 18px;
  background: transparent;
  border: 1px solid #d8d8d0;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius);
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.page-site .choice-cap:hover,
.page-site .choice-cap.selected {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Pastilles couleurs */
.page-site .swatches-produit {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.page-site .swatches-produit .swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(0,0,0,0.15);
  display: inline-block;
}

/* Bouton commander */
.page-site .action-block { margin-top: 32px; }
.page-site .order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease;
}
.page-site .order-btn:hover {
  background: var(--blue-dim);
  color: #fff;
  transform: translateY(-2px);
}

/* Galerie cliquable & Fiche technique (bloc bas centré) */
.page-site .product-bottom-fullwidth {
  width: 100%;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.page-site .tech-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: -0.01em;
}

.page-site .tech-section {
  max-width: 900px;
  margin: 0 auto;
}
.page-site .tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.page-site .tech-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.page-site .tech-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.page-site .tech-value {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  text-align: right;
}

/* =========================================================
   20. GALERIE PRODUIT & LECTURE IMAGES
   ========================================================= */

.page-site .page-produit-main {
  padding: 32px 0 80px;
}

.page-site .product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.page-site .product-media-wrapper {
  min-width: 0;
}

.page-site .product-gallery {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.page-site .gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 78px;
  height: 100%;
  max-height: none;
  overflow: hidden;
  padding: 1px;
}

.page-site .gallery-thumbnails::-webkit-scrollbar {
  width: 4px;
}

.page-site .gallery-thumbnails::-webkit-scrollbar-thumb {
  background: #cfcfc8;
  border-radius: 10px;
}

.page-site .gallery-thumb {
  appearance: none;
  -webkit-appearance: none;
  flex: 1 1 0;
  width: 100%;
  height: auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.page-site .gallery-thumb:hover {
  opacity: .82;
}

.page-site .gallery-thumb.is-active {
  border-color: #111;
}

.page-site .gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-site .hero-media {
  position: relative;
  min-width: 0;
  width: 100%;
  height: clamp(500px, 62vw, 680px);
  min-height: 500px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-site .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity .18s ease, transform .25s ease;
}

.page-site .gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 8;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
  transition: transform .2s ease, background .2s ease;
}

.page-site .gallery-zoom:hover {
  transform: scale(1.05);
  background: #fff;
}

.page-site .gallery-zoom svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.page-site .gallery-thumbnails:has(.gallery-thumb:only-child) {
  visibility: hidden;
  pointer-events: none;
}

/* Visionneuse (Lightbox) */
.page-site .gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.88);
  display: grid;
  place-items: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.page-site .gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.page-site .gallery-lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.page-site .gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

/* Responsive Galerie Produit */
@media (max-width: 1100px) {
  .page-site .product-top {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 28px;
  }
  .page-site .product-gallery {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
  }
  .page-site .gallery-thumbnails {
    width: 68px;
  }
  .page-site .gallery-thumb {
    width: 66px;
    height: 80px;
  }
  .page-site .hero-media {
    height: clamp(460px, 55vw, 600px);
    min-height: 460px;
  }
}

@media (max-width: 850px) {
  .page-site .page-produit-main {
    padding-top: 24px;
  }
  .page-site .product-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .page-site .product-gallery {
    grid-template-columns: minmax(0, 1fr) 68px;
    gap: 10px;
  }
  .page-site .gallery-thumbnails {
    grid-column: 2;
    grid-row: 1;
    width: 68px;
    max-height: 560px;
    order: 2;
  }
  .page-site .hero-media {
    grid-column: 1;
    grid-row: 1;
    height: min(78vw, 620px);
    min-height: 360px;
    padding: 16px;
    order: 1;
  }
}

@media (max-width: 560px) {
  .page-site .page-produit-main {
    padding: 18px 0 60px;
  }
  .page-site .product-top {
    gap: 28px;
  }
  .page-site .product-gallery {
    grid-template-columns: minmax(0, 1fr) 58px;
    gap: 8px;
  }
  .page-site .gallery-thumbnails {
    width: 58px;
    max-height: 470px;
    gap: 7px;
  }
  .page-site .gallery-thumb {
    width: 56px;
    height: 70px;
    padding: 4px;
  }
  .page-site .hero-media {
    height: min(76vw, 500px);
    min-height: 300px;
    padding: 10px;
  }
  .page-site .gallery-zoom {
    right: 9px;
    bottom: 9px;
    width: 36px;
    height: 36px;
  }
  .page-site .tech-title {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .page-site .tech-label,
  .page-site .tech-value {
    font-size: 11px;
  }
}

@media (max-width: 380px) {
  .page-site .product-gallery {
    grid-template-columns: minmax(0, 1fr) 52px;
  }
  .page-site .gallery-thumbnails,
  .page-site .gallery-thumb {
    width: 52px;
  }
  .page-site .gallery-thumb {
    height: 64px;
  }
  .page-site .hero-media {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-site .gallery-thumb,
  .page-site .gallery-zoom,
  .page-site .gallery-lightbox,
  .page-site .hero-media img {
    transition: none;
  }
}
/* =========================================================
   21. PAGE REPRISE / CONTREVALEUR
   ========================================================= */

/* Section principale */
.page-site .reprise-section {
  padding: 40px 0 80px;
}

/* Layout formulaire + résultat */
.page-site .reprise-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

/* Cartes */
.page-site .reprise-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
}
.page-site .reprise-card h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.page-site .reprise-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 28px;
}

/* Groupes de formulaire */
.page-site .group {
  margin-bottom: 22px;
}
.page-site .group label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.page-site .group select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 14px;
  background: #fff;
  outline: none;
  color: var(--ink);
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.page-site .group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.15);
}
.page-site .group select:disabled {
  background: #f0f0f0;
  color: #999;
  cursor: not-allowed;
}

/* Radios */
.page-site .radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.page-site .radio label {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-bottom: 0;
}
.page-site .radio label:hover {
  border-color: var(--blue);
}
.page-site .radio label.selected {
  border-color: var(--blue);
  background: #f9eef1; 
}
.page-site .radio input {
  accent-color: var(--blue);
  margin: 0;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Infos */
.page-site .info {
  margin-top: 10px;
  padding: 12px 14px;
  border-radius: 4px;
  background: #fafafa;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.page-site .info.warning-info {
  background: #fff8e6;
  border: 1px solid #800020;
  color: #800020;
}

/* Warning */
.page-site .warning {
  display: none;
  margin-bottom: 20px;
  padding: 14px;
  border-radius: 4px;
  background: #fff1f0;
  border: 1px solid #ffd2cf;
  color: #800020;
  font-size: 13px;
  line-height: 1.55;
}

/* Carte résultat */
.page-site .reprise-result {
  position: sticky;
  top: 90px;
  background: #111;
  color: #fff;
  border-color: #111;
}
.page-site .reprise-result h2 {
  color: #fff;
  margin-bottom: 20px;
}
.page-site .phone-image-box {
  height: 240px;
  border-radius: 4px;
  background: radial-gradient(circle at center, rgba(217,169,40,0.13), transparent 55%), #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 22px;
}
.page-site .phone-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}
.page-site .result-label {
  color: #999;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-site .estimate {
  margin: 6px 0 24px;
  color: #e8b3c1;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.page-site .line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #292929;
  font-size: 13px;
}
.page-site .line span {
  color: #999;
}
.page-site .line strong {
  text-align: right;
  color: #fff;
}
.page-site .not-eligible {
  color: #ff6258 !important;
}
.page-site .eligible-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  background: #1a8a3f;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.page-site .not-eligible-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  background: #c0392b;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Actions */
.page-site .trade-actions {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}
.page-site .trade-action {
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #181818;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.page-site .trade-action:hover {
  border-color: var(--blue);
  background: #202020;
  transform: translateY(-1px);
}
.page-site .trade-action strong {
  display: block;
  color: #e8b3c1;
  font-size: 13px;
  margin-bottom: 3px;
  font-weight: 700;
}
.page-site .trade-action span {
  color: #aaa;
  font-size: 11px;
  line-height: 1.5;
}
.page-site .trade-action:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.page-site .trade-action:disabled:hover {
  border-color: #333;
  background: #181818;
  transform: none;
}

/* Total */
.page-site .total-trade {
  margin-top: 22px;
  padding: 18px;
  border-radius: 4px;
  background: #191919;
}
.page-site .total-trade span {
  display: block;
  color: #999;
  font-size: 11px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.page-site .total-trade strong {
  color: #e8b3c1;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-site .result-footnote {
  margin-top: 18px;
  color: #888;
  font-size: 11px;
  line-height: 1.6;
}

/* Deuxième / troisième iPhone */
.page-site .second-phone,
.page-site .third-phone {
  display: none;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.page-site .second-phone.active,
.page-site .third-phone.active {
  display: block;
}
.page-site .second-phone h3,
.page-site .third-phone h3 {
  margin-bottom: 18px;
  font-size: 15px;
  color: var(--blue);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1000px) {
  .page-site .reprise-layout {
    grid-template-columns: 1fr;
  }
  .page-site .reprise-result {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .page-site .reprise-card {
    padding: 22px;
  }
  .page-site .radio {
    grid-template-columns: 1fr;
  }
  .page-site .estimate {
    font-size: 40px;
  }
  .page-site .reprise-video {
    aspect-ratio: 16 / 9;
  }
}
/* =========================================================
   22. CONTREVALEUR — BANNIÈRE + AFFICHAGE PRIX DÉDUIT
   ========================================================= */

/* Bannière contrevaleur (catalogue) */
.trade-banner {
  background: #111;
  color: #fff;
  border-bottom: 1px solid #222;
  padding: 18px 0;
}
.trade-banner[hidden] { display: none; }
.trade-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.trade-banner strong {
  color: #e8b3c1;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.trade-banner p {
  color: #bbb;
  font-size: 12px;
  margin-top: 4px;
}
.trade-banner-reset {
  border: 1px solid #444;
  background: transparent;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.trade-banner-reset:hover {
  border-color: var(--blue);
  background: #1a1a1a;
}
@media (max-width: 640px) {
  .trade-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Affichage prix avec contrevaleur (catalogue + produit) */
.product-price-trade {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-price-old {
  font-size: 11px;
  color: var(--muted);
  text-decoration: line-through;
}
.product-price-new {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.product-price-note {
  font-size: 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Bloc prix produit (déduction contrevaleur) */
.price-row-trade {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-old {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-trade-note {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* =========================================================
   23. PAGE REPRISE — DESIGN MOTION
   ========================================================= */

/* ---------- HERO MOTION ---------- */
.page-site .hero-motion {
  height: 78vh;
  min-height: 520px;
}
.page-site .hero-motion .hero-slide img {
  transform: scale(1.08);
}
.page-site .hero-motion .hero-slide.active img {
  transform: scale(1);
  transition: transform 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .hero-motion .hero-copy {
  bottom: 15%;
}

//* ---------- SECTION ÉTAPES (MOTION STEPS) — tailles réduites ---------- */
.page-site .steps-section {
  padding: 60px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-site .steps-head {
  text-align: center;
  margin-bottom: 36px;
}
.page-site .steps-title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.page-site .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.page-site .step-card {
  padding: 20px 18px;
  border-left: 2px solid var(--ink);
}
.page-site .step-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 8px;
}
.page-site .step-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.page-site .step-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 850px) {
  .page-site .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .page-site .steps-title {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .page-site .steps-section {
    padding: 48px 0;
  }
  .page-site .steps-head {
    margin-bottom: 28px;
  }
  .page-site .steps-title {
    font-size: 18px;
  }
  .page-site .step-card {
    padding: 16px 14px;
  }
  .page-site .step-card h3 {
    font-size: 12px;
  }
  .page-site .step-card p {
    font-size: 11px;
  }
}
/* =========================================================
   29. PAGE SUPPORT / FAQ — DESIGN MOTION
   ========================================================= */

/* ---------- STRUCTURE FAQ ---------- */
.page-site .faq-section {
  padding: 60px 0 100px;
}

.page-site .faq-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.page-site .faq-intro .kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.page-site .faq-intro h2 {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--ink);
}
.page-site .faq-intro p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- CATÉGORIES FAQ ---------- */
.page-site .faq-category {
  margin-bottom: 40px;
}

.page-site .faq-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}
.page-site .faq-category-title .faq-category-count {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--soft);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

/* ---------- FAQ ITEM ---------- */
.page-site .faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.page-site .faq-item:hover {
  border-color: #d4d4ce;
}
.page-site .faq-item.active {
  border-color: #111;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Question */
.page-site .faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease;
  position: relative;
}
.page-site .faq-question:hover {
  background: var(--soft);
}

/* Petite bordure gauche dorée qui apparaît à l'ouverture */
.page-site .faq-question::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: var(--blue);
  transform: translateY(-50%);
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .faq-item.active .faq-question::before {
  height: 70%;
}

/* Icone chevron Motion */
.page-site .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--muted);
}
.page-site .faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-site .faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--ink);
}

/* Réponse : animation fluide avec grid-template-rows */
.page-site .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.35s ease 0.1s,
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
    padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}
.page-site .faq-item.active .faq-answer-inner {
  opacity: 1;
  transform: translateY(0);
  padding: 0 20px 18px 20px;
}
.page-site .faq-answer-inner p {
  margin: 0 0 8px;
}
.page-site .faq-answer-inner p:last-child {
  margin-bottom: 0;
}
.page-site .faq-answer-inner a {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1px;
}

/* ---------- STAGGER REVEAL DES CATÉGORIES ---------- */
.page-site .faq-category {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .faq-category.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- CONTACT BOX ---------- */
.page-site .support-contact-box {
  background: #f4f4f0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  margin-top: 56px;
}
.page-site .support-contact-box h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.page-site .support-contact-box > p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 24px;
  line-height: 1.6;
}

.page-site .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.page-site .contact-col h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.page-site .contact-col p {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 16px;
  line-height: 1.55;
}

.page-site .contact-col form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-site .contact-col input,
.page-site .contact-col textarea {
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
}
.page-site .contact-col input:focus,
.page-site .contact-col textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.15);
}
.page-site .contact-col textarea {
  resize: vertical;
  min-height: 84px;
}
.page-site .contact-col .btn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  min-height: 46px;
  font-size: 12px;
}
.page-site .contact-col .btn:hover {
  background: #000;
}

@media (max-width: 768px) {
  .page-site .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .page-site .support-contact-box {
    padding: 24px;
  }
}

/* ---------- RESPONSIVE FAQ ---------- */
@media (max-width: 768px) {
  .page-site .faq-section {
    padding: 48px 0 80px;
  }
  .page-site .faq-category-title {
    font-size: 12px;
  }
  .page-site .faq-question {
    font-size: 12px;
    padding: 14px 16px;
  }
  .page-site .faq-answer-inner {
    font-size: 12px;
    padding: 0 16px;
  }
  .page-site .faq-item.active .faq-answer-inner {
    padding: 0 16px 16px 16px;
  }
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-site .faq-category,
  .page-site .faq-answer,
  .page-site .faq-answer-inner,
  .page-site .faq-icon,
  .page-site .faq-question::before {
    transition: none !important;
    transform: none !important;
  }
  .page-site .faq-category {
    opacity: 1 !important;
    transform: none !important;
  }
}
/* =========================================================
   30. PAGE ARTICLE — DESIGN MOTION ÉDITORIAL
   ========================================================= */

/* ---------- HERO ARTICLE (titre éditorial) ---------- */
.page-site .article-shell {
  background: var(--paper);
}

.page-site .article-head {
  padding: 80px 0 24px;
  background: var(--paper);
}

.page-site .article-head-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.page-site .article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-site .article-back:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* Meta (tag · date · temps) */
.page-site .article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.page-site .article-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 2px;
}
.page-site .article-meta-sep {
  opacity: 0.5;
}

/* Titre */
.page-site .article-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 720px;
}

/* Deck / chapô */
.page-site .article-deck {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 640px;
  margin: 0 0 28px;
}

/* Byline */
.page-site .article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.page-site .article-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.page-site .article-byline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.page-site .article-byline-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.page-site .article-byline-text span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ---------- IMAGE PRINCIPALE ---------- */
.page-site .article-hero-image {
  margin: 40px 0 0;
}
.page-site .article-hero-image .wrap {
  max-width: 1100px;
}
.page-site .article-hero-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  border-radius: 4px;
  background: #f4f4f0;
}

/* ---------- CORPS DE L'ARTICLE ---------- */
.page-site .article-body {
  max-width: 720px;
  margin: 56px auto 100px;
}

.page-site .article-content {
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.75;
}

.page-site .article-content p {
  margin: 0 0 22px;
  font-weight: 400;
  color: #333;
}

.page-site .article-content p strong {
  color: var(--ink);
  font-weight: 600;
}

.page-site .article-content h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 44px 0 16px;
  padding-top: 4px;
}

.page-site .article-content h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 32px 0 12px;
}

.page-site .article-content ul,
.page-site .article-content ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: #333;
}
.page-site .article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.page-site .article-content a {
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.page-site .article-content a:hover {
  opacity: 0.75;
}

/* Tableaux dans l'article */
.page-site .article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.page-site .article-content thead {
  background: var(--soft);
}
.page-site .article-content th,
.page-site .article-content td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  color: #333;
  vertical-align: top;
}
.page-site .article-content th {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.page-site .article-content tbody tr:last-child td {
  border-bottom: none;
}

/* Blockquote (au cas où) */
.page-site .article-content blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 20px;
  border-left: 2px solid var(--blue);
  font-style: italic;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

/* Pied d'article */
.page-site .article-footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.page-site .article-footer-share {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-site .article-footer-share a {
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-site .article-footer-share a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.page-site .article-footer-back {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: opacity 0.2s ease;
}
.page-site .article-footer-back:hover {
  opacity: 0.7;
}

/* Erreur */
.page-site .article-error {
  padding: 120px 0 100px;
  text-align: center;
  max-width: 520px;
}
.page-site .article-error .kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.page-site .article-error h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.page-site .article-error p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 28px;
}

/* =========================================================
   ANIMATION REVEAL (pour l'article)
   ========================================================= */
.page-site .article-shell .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.page-site .article-shell .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE ARTICLE
   ========================================================= */
@media (max-width: 820px) {
  .page-site .article-head {
    padding: 60px 0 20px;
  }
  .page-site .article-title {
    font-size: clamp(22px, 5.5vw, 30px);
  }
  .page-site .article-deck {
    font-size: 14px;
  }
  .page-site .article-hero-image {
    margin-top: 28px;
  }
  .page-site .article-hero-image img {
    border-radius: 2px;
    max-height: 420px;
  }
  .page-site .article-body {
    margin: 40px auto 72px;
  }
  .page-site .article-content {
    font-size: 14px;
  }
  .page-site .article-content h2 {
    font-size: 18px;
    margin-top: 36px;
  }
  .page-site .article-content table {
    font-size: 12px;
  }
  .page-site .article-content th,
  .page-site .article-content td {
    padding: 10px 12px;
  }
}

@media (max-width: 560px) {
  .page-site .article-head {
    padding: 40px 0 16px;
  }
  .page-site .article-title {
    font-size: 20px;
    line-height: 1.2;
  }
  .page-site .article-deck {
    font-size: 13px;
  }
  .page-site .article-byline {
    padding-top: 16px;
  }
  .page-site .article-hero-image {
    margin-top: 20px;
  }
  .page-site .article-hero-image img {
    max-height: 300px;
  }
  .page-site .article-body {
    margin: 32px auto 60px;
  }
  .page-site .article-content {
    font-size: 13.5px;
    line-height: 1.7;
  }
  .page-site .article-content h2 {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 12px;
  }
  .page-site .article-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .page-site .article-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* =========================================================
   prefers-reduced-motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .page-site .article-shell .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* =========================================================
   31. PAGE BLOG — GRILLE ÉDITORIALE MOTION
   ========================================================= */

/* ---------- SECTION ÉDITORIALE ---------- */
.page-site .editorial-section {
  padding: 60px 0 100px;
  background: var(--paper);
}

/* En-tête de section */
.page-site .editorial-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.page-site .editorial-section-head .kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.page-site .editorial-section-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.page-site .editorial-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  flex-shrink: 0;
}

/* ---------- GRILLE DE CARTES ---------- */
.page-site .editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
}

/* ---------- CARTE ARTICLE ---------- */
.page-site .editorial-card {
  min-width: 0;
}
.page-site .editorial-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* Image */
.page-site .editorial-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f4f0;
  border-radius: 3px;
  margin-bottom: 16px;
}
.page-site .editorial-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.page-site .editorial-card:hover .editorial-image-wrap img {
  transform: scale(1.04);
}

/* Meta (tag + titre + flèche) */
.page-site .editorial-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}
.page-site .editorial-card-meta > div {
  min-width: 0;
  flex: 1;
}
.page-site .editorial-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.page-site .editorial-card-meta h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  transition: color 0.25s ease;
}
.page-site .editorial-card:hover .editorial-card-meta h3 {
  color: #000;
}

/* Flèche */
.page-site .editorial-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}
.page-site .editorial-arrow svg {
  width: 12px;
  height: 12px;
}
.page-site .editorial-card:hover .editorial-arrow {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translate(3px, -3px);
}

/* Extrait */
.page-site .editorial-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 14px;
  flex: 1;
}

/* Date */
.page-site .editorial-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- EMPTY STATE ---------- */
.page-site .editorial-empty {
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed var(--line);
  border-radius: 6px;
}
.page-site .editorial-empty h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}
.page-site .editorial-empty p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ---------- REVEAL AVEC STAGGER ---------- */
.page-site .editorial-card.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.page-site .editorial-card.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .page-site .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 820px) {
  .page-site .editorial-section {
    padding: 48px 0 80px;
  }
  .page-site .editorial-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .page-site .editorial-count {
    align-self: flex-start;
  }
}

@media (max-width: 560px) {
  .page-site .editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-site .editorial-image-wrap {
    aspect-ratio: 16 / 10;
  }
  .page-site .editorial-card-meta h3 {
    font-size: 14px;
  }
  .page-site .editorial-excerpt {
    font-size: 12.5px;
  }
  .page-site .editorial-arrow {
    width: 24px;
    height: 24px;
  }
  .page-site .editorial-arrow svg {
    width: 10px;
    height: 10px;
  }
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-site .editorial-card.reveal,
  .page-site .editorial-image-wrap img,
  .page-site .editorial-arrow {
    transition: none !important;
    transform: none !important;
  }
  .page-site .editorial-card.reveal {
    opacity: 1 !important;
  }
}


/* ---------- STICKY PANEL RÉSULTAT ---------- */
.page-site .reprise-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}
.page-site .reprise-result {
  position: sticky;
  top: 100px;
}
@media (max-width: 1000px) {
  .page-site .reprise-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-site .reprise-result {
    position: relative;
    top: auto;
  }
}

/* ---------- TRANSITIONS FLUIDES POUR 2ÈME / 3ÈME IPHONE ---------- */
.page-site .second-phone,
.page-site .third-phone {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .second-phone.active,
.page-site .third-phone.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  max-height: 4000px;
}

/* ---------- ANIMATION REVEAL (FADE UP) ---------- */
.page-site .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- MICRO-INTERACTION : PULSATION DU CRÉDIT ---------- */
.page-site .total-trade strong {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-site .total-trade strong.is-updated {
  animation: creditPulse 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes creditPulse {
  0% { transform: scale(1); color: #e8b3c1; }
  50% { transform: scale(1.06); color: #fff; }
  100% { transform: scale(1); color: #e8b3c1; }
}

/* ---------- AMÉLIORATION ESTIMATION (VALEUR GRANDE) ---------- */
.page-site .estimate {
  font-variant-numeric: tabular-nums;
}

/* ---------- BADGE ÉLIGIBILITÉ AVEC TRANSITION ---------- */
.page-site .eligible-badge,
.page-site .not-eligible-badge {
  transition: background 0.3s ease, color 0.3s ease;
}
/* =========================================================
   24. ANIMATION D'APPARITION DE LA CARTE RÉSULTAT
   ========================================================= */

/* État "reset" : la carte est prête à être révélée (légèrement décalée + transparente) */
.page-site .reprise-result.is-reset {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* État "revealed" : la carte est visible et à sa place */
.page-site .reprise-result.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

/* État initial par défaut (avant que le JS prenne le relais) */
.page-site .reprise-result:not(.is-reset):not(.is-revealed) {
  opacity: 1;
  transform: translateY(0);
}

/* Reset explicite si le navigateur ne supporte pas IntersectionObserver */
@supports not (position: sticky) {
  .page-site .reprise-result.is-reset {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}

/* =========================================================
   ANIMATION INTERNE DE LA CARTE — les enfants apparaissent en cascade
   ========================================================= */

/* Enfants de la carte : décalés et invisibles en état reset */
.page-site .reprise-result.is-reset .phone-image-box,
.page-site .reprise-result.is-reset .result-label,
.page-site .reprise-result.is-reset .estimate,
.page-site .reprise-result.is-reset .line,
.page-site .reprise-result.is-reset .trade-actions,
.page-site .reprise-result.is-reset .total-trade,
.page-site .reprise-result.is-reset .result-footnote {
  opacity: 0;
  transform: translateY(15px);
}

/* En état révélé : chaque élément remonte en cascade avec un délai progressif */
.page-site .reprise-result.is-revealed .phone-image-box {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease 0.1s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.page-site .reprise-result.is-revealed .result-label {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.2s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}
.page-site .reprise-result.is-revealed .estimate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease 0.25s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}
.page-site .reprise-result.is-revealed .line {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.35s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}
.page-site .reprise-result.is-revealed .trade-actions {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.5s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.page-site .reprise-result.is-revealed .total-trade {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.6s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}
.page-site .reprise-result.is-revealed .result-footnote {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease 0.7s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

/* Amélioration du pulse du crédit */
.page-site .total-trade strong.is-updated {
  animation: creditPulse 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes creditPulse {
  0% { transform: scale(1); color: #e8b3c1; }
  50% { transform: scale(1.08); color: #fff; }
  100% { transform: scale(1); color: #e8b3c1; }
}

/* Support "prefers-reduced-motion" : pas d'animation */
@media (prefers-reduced-motion: reduce) {
  .page-site .reprise-result.is-reset,
  .page-site .reprise-result.is-revealed,
  .page-site .reprise-result.is-reset .phone-image-box,
  .page-site .reprise-result.is-reset .result-label,
  .page-site .reprise-result.is-reset .estimate,
  .page-site .reprise-result.is-reset .line,
  .page-site .reprise-result.is-reset .trade-actions,
  .page-site .reprise-result.is-reset .total-trade,
  .page-site .reprise-result.is-reset .result-footnote,
  .page-site .reprise-result.is-revealed .phone-image-box,
  .page-site .reprise-result.is-revealed .result-label,
  .page-site .reprise-result.is-revealed .estimate,
  .page-site .reprise-result.is-revealed .line,
  .page-site .reprise-result.is-revealed .trade-actions,
  .page-site .reprise-result.is-revealed .total-trade,
  .page-site .reprise-result.is-revealed .result-footnote {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .page-site .total-trade strong.is-updated {
    animation: none !important;
  }
}
/* =========================================================
   25. ANIMATION CONTREVALEUR — CATALOGUE & PRODUIT (v2)
   ========================================================= */

/* ---------- STRUCTURE DE BASE CATALOGUE ---------- */
.product-price-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: visible;
}

/* Le prix normal est un span inline-block dont la largeur
   épouse exactement le texte → la barre sera à la bonne taille */
.product-price-wrap .price-normal {
  display: inline-block;
  width: max-content;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    color 0.4s ease;
  will-change: transform;
}

/* La barre est un pseudo-élément positionné sur le span lui-même
   → donc exactement à la largeur du texte */
.product-price-wrap .price-normal::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;               /* ← 100% du span parent, pas du conteneur */
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* ---------- PRIX CONTREVALEUR (masqué par défaut) ---------- */
.product-price-wrap .price-trade {
  display: flex;
  flex-direction: column;
  gap: 1px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
.product-price-wrap .price-trade-amount {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.product-price-wrap .price-trade-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.45s ease 0.35s,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.35s;
}

/* ---------- ÉTAT RÉVÉLÉ CATALOGUE ---------- */
.product-card.is-revealed .product-price-wrap .price-normal {
  color: var(--muted);
  opacity: 0.55;
  transform: translateY(-2px);
}
.product-card.is-revealed .product-price-wrap .price-normal::after {
  transform: scaleX(1);
}
.product-card.is-revealed .product-price-wrap .price-trade {
  opacity: 1;
  transform: translateY(0);
}
.product-card.is-revealed .product-price-wrap .price-trade-label {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   PAGE PRODUIT — PRIX ANIMÉ
   ========================================================= */
.price-row.price-row-animated {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

/* Conteneur du prix normal : width max-content → la barre
   s'ajuste exactement à la largeur du texte */
.price-row-animated .price-normal-wrap {
  position: relative;
  display: inline-block;
  width: max-content;
}

.price-row-animated .price-normal {
  display: inline-block;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transform-origin: left center;
  transition:
    font-size 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.4s ease,
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: font-size, transform, opacity;
}
.price-row-animated .price-normal::after {
  content: "";
  position: absolute;
  left: 0;
  top: 52%;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.price-row-animated .price-trade-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  margin-top: 8px;
}
.price-row-animated .price-trade {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.04em;
  display: inline-block;
  font-variant-numeric: tabular-nums;
}
.price-row-animated .price-trade-note {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.45s ease 0.4s,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.price-row-animated.is-revealed .price-normal {
  font-size: 20px;
  color: var(--muted);
  opacity: 0.6;
  transform: translateY(-4px);
}
.price-row-animated.is-revealed .price-normal::after {
  transform: scaleX(1);
}
.price-row-animated.is-revealed .price-trade-wrap {
  opacity: 1;
  transform: translateY(0);
}
.price-row-animated.is-revealed .price-trade-note {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse lors du changement de capacité */
.price-trade.is-pulsing {
  animation: pricePulse 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pricePulse {
  0% { transform: scale(1); color: var(--blue); }
  50% { transform: scale(1.06); color: var(--ink); }
  100% { transform: scale(1); color: var(--blue); }
}

/* =========================================================
   prefers-reduced-motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .product-price-wrap .price-normal,
  .product-price-wrap .price-trade,
  .product-price-wrap .price-trade-label,
  .price-row-animated .price-normal,
  .price-row-animated .price-trade-wrap,
  .price-row-animated .price-trade-note {
    transition: none !important;
    transform: none !important;
  }
  .product-price-wrap .price-normal::after,
  .price-row-animated .price-normal::after {
    transition: none !important;
    transform: scaleX(1);
  }
  .product-card.is-revealed .product-price-wrap .price-trade,
  .price-row-animated.is-revealed .price-trade-wrap {
    opacity: 1 !important;
    transform: none !important;
  }
  .price-trade.is-pulsing {
    animation: none !important;
  }
}
/* =========================================================
   26. ANIMATION CHANGEMENT DE CAPACITÉ — PAGE PRODUIT
   ========================================================= */

/* Classe appliquée au prix qui doit sortir vers le haut */
.price-row-animated .price-normal.is-leaving,
.price-row-animated .price-trade.is-leaving {
  animation: priceLeaveUp 0.28s cubic-bezier(0.4, 0, 1, 1) forwards;
  pointer-events: none;
}

/* Classe appliquée au prix qui doit entrer depuis le bas */
.price-row-animated .price-normal.is-entering,
.price-row-animated .price-trade.is-entering {
  animation: priceEnterFromBottom 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes priceLeaveUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes priceEnterFromBottom {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quand le bloc contrevaleur est révélé, on garde la cohérence
   avec les classes .is-revealed existantes :
   - le prix normal reste en taille réduite
   - le prix trade reste visible
   On ne touche pas à ces états ici. */

/* Mode "reduced motion" : pas d'animation */
@media (prefers-reduced-motion: reduce) {
  .price-row-animated .price-normal.is-leaving,
  .price-row-animated .price-trade.is-leaving,
  .price-row-animated .price-normal.is-entering,
  .price-row-animated .price-trade.is-entering {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* =========================================================
   27. ANIMATION DE FERMETURE — BANNIÈRE CONTREVALEUR
   ========================================================= */

/* La bannière a une transition fluide sur sa hauteur, son opacité et ses marges */
.trade-banner {
  transition:
    height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    padding-top 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    padding-bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    margin-bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease;
  will-change: height, opacity;
}

/* Quand on ferme : la bannière passe en mode "closing" (verrouillage visuel) */
.trade-banner.is-closing {
  pointer-events: none;
  border-bottom-color: transparent;
}

.trade-banner.is-closing .trade-banner-inner {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* L'intérieur de la bannière a sa propre transition */
.trade-banner-inner {
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   TRANSITION DE LA GRILLE LORS DU RESET (annuler reprise)
   ========================================================= */
#catalogueGrid.is-refreshing {
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* À la sortie de la classe is-refreshing, on repart de 0 vers 1 avec fade */
#catalogueGrid {
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Respect de prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .trade-banner,
  .trade-banner-inner,
  .trade-banner.is-closing .trade-banner-inner,
  #catalogueGrid,
  #catalogueGrid.is-refreshing {
    transition: none !important;
    animation: none !important;
  }
}
/* =========================================================
   28. HERO — ANIMATIONS D'OUVERTURE (index, catalogue, reprise)
   ========================================================= */

/* ---------- ZOOM OUT DE L'IMAGE À L'OUVERTURE ---------- */
/* L'image part d'un scale légèrement supérieur et se cale à 1 */
.hero-slide.active img,
.hero-slider-single .hero-slide img,
.page-site .hero-motion .hero-slide img {
  animation: heroZoomOut 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroZoomOut {
  0% {
    transform: scale(1.18);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Pour les autres slides (slider index) : pas d'anim au chargement,
   uniquement les transitions existantes */
.hero-slide:not(.active) img {
  animation: none;
}

/* ---------- BLUR DÉGRADÉ EN BAS DE L'IMAGE ---------- */
/* Le gradient existant + un léger blur en bas pour améliorer la lisibilité */
.hero-slide::before,
.hero-slider-single .hero-slide::before,
.page-site .hero-motion .hero-slide::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 65%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 25%,
    rgba(0, 0, 0, 0.22) 55%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* On garde aussi le ::after existant, mais on retire son opacity forte
   pour ne pas trop assombrir le haut */
.hero-slide::after {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0) 100%
  );
}

/* ---------- TEXTE HERO — RÉDUCTION DES TAILLES ---------- */
.hero-copy h1,
.hero-slider-single .hero-copy h1,
.page-site .hero-motion .hero-copy h1 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.hero-copy p,
.hero-slider-single .hero-copy p,
.page-site .hero-motion .hero-copy p {
  font-size: 12px;
  max-width: 480px;
  line-height: 1.55;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 20px;
}

.hero-copy .eyebrow,
.hero-slider-single .hero-copy .eyebrow,
.page-site .hero-motion .hero-copy .eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

/* ---------- TEXTE HERO — ANIMATION D'APPARITION LIGNE PAR LIGNE ---------- */
.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
}

/* Animation déclenchée par la classe .hero-text-anim ajoutée en JS */
.hero-copy.hero-text-anim > .eyebrow {
  animation: heroTextIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}
.hero-copy.hero-text-anim > h1 {
  animation: heroTextIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}
.hero-copy.hero-text-anim > p {
  animation: heroTextIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.9s forwards;
}
.hero-copy.hero-text-anim > .btn {
  animation: heroTextIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 2.5s forwards;
}

@keyframes heroTextIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Si pas de classe → afficher directement (fallback) */
.hero-copy:not(.hero-text-anim) > * {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion : pas d'anim, tout visible */
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active img,
  .hero-slider-single .hero-slide img,
  .page-site .hero-motion .hero-slide img {
    animation: none !important;
  }
  .hero-copy > *,
  .hero-copy.hero-text-anim > .eyebrow,
  .hero-copy.hero-text-anim > h1,
  .hero-copy.hero-text-anim > p,
  .hero-copy.hero-text-anim > .btn {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ---------- RESPONSIVE : taille texte encore plus compacte ---------- */
@media (max-width: 820px) {
  .hero-copy h1,
  .hero-slider-single .hero-copy h1,
  .page-site .hero-motion .hero-copy h1 {
    font-size: clamp(20px, 4.5vw, 26px);
    letter-spacing: 0.02em;
  }
  .hero-copy p,
  .hero-slider-single .hero-copy p,
  .page-site .hero-motion .hero-copy p {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .hero-copy .eyebrow,
  .hero-slider-single .hero-copy .eyebrow,
  .page-site .hero-motion .hero-copy .eyebrow {
    font-size: 9px;
  }
}

@media (max-width: 560px) {
  .hero-copy h1,
  .hero-slider-single .hero-copy h1,
  .page-site .hero-motion .hero-copy h1 {
    font-size: clamp(18px, 5vw, 22px);
  }
  .hero-copy p,
  .hero-slider-single .hero-copy p,
  .page-site .hero-motion .hero-copy p {
    font-size: 10px;
  }
}
/* =========================================================
   32. PAGE ACCESSOIRES — DESIGN MOTION (v2)
   ========================================================= */

.page-accessoires .page-accessoires-main {
  padding: 60px 0 140px;
}

/* ---------- HEADER DE PAGE ---------- */
.page-accessoires .accessoires-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.page-accessoires .accessoires-header .breadcrumb {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 20px;
}

.page-accessoires .accessoires-header .breadcrumb a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.page-accessoires .accessoires-header .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.page-accessoires .accessoires-title {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}

.page-accessoires .accessoires-subtitle {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* ---------- BANNIÈRE IPHONE — ULTRA MINCE ---------- */
.page-accessoires .iphone-banner-motion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 32px;
  border: 1px solid #1a1a1a;
  animation: bannerSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes bannerSlideIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-accessoires .iphone-banner-motion[hidden] {
  display: none;
}

.page-accessoires .iphone-banner-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}

.page-accessoires .iphone-banner-img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.page-accessoires .iphone-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.page-accessoires .iphone-banner-info {
  min-width: 0;
}

.page-accessoires .iphone-banner-label {
  display: none;
}

.page-accessoires .iphone-banner-info h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.page-accessoires .iphone-banner-info p {
  font-size: 11px;
  color: #888;
  margin: 0;
  line-height: 1.2;
}

.page-accessoires .iphone-banner-price {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.page-accessoires .iphone-banner-price-label {
  display: none;
}

.page-accessoires .iphone-banner-price strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #e8b3c1;
  line-height: 1.2;
}

.page-accessoires .iphone-banner-trade {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e8b3c1;
  display: block;
  line-height: 1.2;
  margin-top: 1px;
}

/* ---------- FILTRES ---------- */
.page-accessoires .accessoires-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.page-accessoires .filter-group {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.page-accessoires .filter-btn {
  padding: 7px 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.page-accessoires .filter-btn:hover {
  border-color: #111;
  color: var(--ink);
}

.page-accessoires .filter-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.page-accessoires .accessoires-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- GRILLE ACCESSOIRES ---------- */
.page-accessoires .accessoires-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* ---------- CARTE ACCESSOIRE ---------- */
.page-accessoires .accessoire-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: 
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
  opacity: 0;
  transform: translateY(18px);
}

.page-accessoires .accessoire-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-accessoires .accessoire-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  border-color: #ddd;
}

.page-accessoires .accessoire-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f8f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
}

.page-accessoires .accessoire-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-accessoires .accessoire-card:hover .accessoire-media img {
  transform: scale(1.05);
}

.page-accessoires .accessoire-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-accessoires .accessoire-info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-accessoires .accessoire-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

.page-accessoires .accessoire-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.page-accessoires .accessoire-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.page-accessoires .accessoire-add {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.page-accessoires .accessoire-add:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.05);
}

.page-accessoires .accessoire-add.is-added {
  background: #1a8a3f;
  color: #fff;
}

.page-accessoires .accessoires-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.page-accessoires .accessoires-empty h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}

.page-accessoires .accessoires-empty p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ---------- BOUTON FLOTTANT PROCÉDER (rectangle, centré en bas) ---------- */
.page-accessoires .proceed-wrap {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  pointer-events: none;
}

.page-accessoires .proceed-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  position: relative;
}

.page-accessoires .proceed-btn:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(128, 0, 32, 0.35);
}

.page-accessoires .proceed-btn.is-pulsing {
  animation: proceedPulse 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes proceedPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.page-accessoires .proceed-btn-arrow {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
}

.page-accessoires .proceed-btn-arrow svg {
  width: 16px;
  height: 16px;
}

.page-accessoires .proceed-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.page-accessoires .proceed-btn:hover .proceed-btn-badge {
  background: #111;
  color: #fff;
}

/* ---------- BOUTON FLOTTANT SAC (à droite) ---------- */
.page-accessoires .bag-float {
  position: fixed;
  right: 16px;
  bottom: 80px;
  z-index: 91;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  display: block;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-accessoires .bag-float:hover {
  transform: scale(1.08);
}

.page-accessoires .bag-float-icon {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}

.page-accessoires .bag-float.is-pulsing {
  animation: bagPulse 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bagPulse {
  0% { transform: translateY(0) scale(1); }
  30% { transform: translateY(10px) scale(1.12); }
  60% { transform: translateY(-2px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}

.page-accessoires .bag-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--blue);
  color: #fff;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-accessoires .bag-float.is-pulsing .bag-badge {
  animation: badgePop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
/* ---------- PANNEAU DU SAC (drawer droite) ---------- */
.page-accessoires .bag-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-accessoires .bag-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.page-accessoires .bag-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: #fff;
  z-index: 101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.page-accessoires .bag-panel.open {
  transform: translateX(0);
}

.page-accessoires .bag-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--line);
}

.page-accessoires .bag-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}

.page-accessoires .bag-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.page-accessoires .bag-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--soft);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.page-accessoires .bag-close:hover {
  background: #e5e5e0;
}

.page-accessoires .bag-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.page-accessoires .bag-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  animation: bagItemIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bagItemIn {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.page-accessoires .bag-item:last-child {
  border-bottom: none;
}

.page-accessoires .bag-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #f8f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.page-accessoires .bag-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.page-accessoires .bag-item-info {
  flex: 1;
  min-width: 0;
}

.page-accessoires .bag-item-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 2px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-accessoires .bag-item-info p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.page-accessoires .bag-item-note {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-accessoires .bag-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.page-accessoires .bag-item-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #c0392b;
  cursor: pointer;
  font-size: 12px;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.page-accessoires .bag-item-remove:hover {
  background: #fff1f0;
}

.page-accessoires .bag-item-phone {
  background: #faf8f0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
  border-bottom: none;
}

.page-accessoires .bag-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 16px 0 8px;
}

.page-accessoires .bag-empty {
  text-align: center;
  padding: 24px 0;
  font-size: 12px;
  color: var(--muted);
}

.page-accessoires .bag-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.page-accessoires .bag-total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.page-accessoires .bag-total-line span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-accessoires .bag-total-line strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

/* ---------- MODAL ACCESSOIRE ---------- */
.page-accessoires .accessoire-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-accessoires .accessoire-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.page-accessoires .accessoire-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: 90%;
  max-width: 400px;
  max-height: 92vh;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  z-index: 201;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-accessoires .accessoire-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.page-accessoires .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #111;
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.page-accessoires .modal-close:hover {
  background: #fff;
}

.page-accessoires .modal-slider {
  position: relative;
  width: 100%;
  height: 200px;
  background: #f8f8f6;
  overflow: hidden;
  flex-shrink: 0;
}

.page-accessoires .modal-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-accessoires .modal-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.page-accessoires .modal-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-accessoires .modal-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: #111;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  z-index: 5;
}

.page-accessoires .modal-slider-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.page-accessoires .modal-slider-arrow svg {
  width: 14px;
  height: 14px;
}

.page-accessoires .modal-slider-arrow.prev { left: 8px; }
.page-accessoires .modal-slider-arrow.next { right: 8px; }

.page-accessoires .modal-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}

.page-accessoires .modal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.page-accessoires .modal-dot.active {
  background: #111;
  transform: scale(1.3);
}

.page-accessoires .modal-content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.page-accessoires .modal-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-accessoires .modal-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 2px;
}

.page-accessoires .modal-content h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}

.page-accessoires .modal-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.page-accessoires .modal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.page-accessoires .modal-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.page-accessoires .modal-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 10px;
}

.page-accessoires .qty-btn {
  width: 22px;
  height: 22px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.page-accessoires .qty-btn:hover {
  background: var(--soft);
}

.page-accessoires #qtyValue {
  font-size: 13px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
  color: var(--ink);
}

.page-accessoires .modal-add-btn {
  width: 100%;
  height: 44px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
  flex-shrink: 0;
}

.page-accessoires .modal-add-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* ---------- RESPONSIVE ACCESSOIRES ---------- */
@media (max-width: 1100px) {
  .page-accessoires .accessoires-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 850px) {
  .page-accessoires .page-accessoires-main {
    padding: 40px 0 130px;
  }
  .page-accessoires .accessoires-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .page-accessoires .bag-panel {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .page-accessoires .page-accessoires-main {
    padding: 30px 0 120px;
  }
  .page-accessoires .accessoires-header {
    margin-bottom: 28px;
  }
  .page-accessoires .accessoires-title {
    font-size: 20px;
  }
  .page-accessoires .accessoires-subtitle {
    font-size: 12px;
  }
  .page-accessoires .accessoires-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .page-accessoires .accessoire-media {
    padding: 10px;
  }
  .page-accessoires .accessoire-info {
    padding: 10px 12px 12px;
  }
  .page-accessoires .accessoire-name {
    font-size: 12px;
  }
  .page-accessoires .accessoire-price {
    font-size: 13px;
  }
  .page-accessoires .accessoire-add {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
  .page-accessoires .filter-btn {
    padding: 6px 12px;
    font-size: 10px;
  }
  .page-accessoires .proceed-wrap {
    bottom: 16px;
  }
  .page-accessoires .proceed-btn {
    padding: 12px 18px;
    font-size: 12px;
    gap: 8px;
  }
  .page-accessoires .proceed-btn-label {
    font-size: 11px;
  }
    .page-accessoires .bag-float-icon {
    width: 90px;
    height: 90px;
  }
  .page-accessoires .bag-badge {
    min-width: 20px;
    height: 20px;
    font-size: 10px;
  }
  .page-accessoires .accessoire-modal {
    width: 92%;
    max-width: 100%;
  }
  .page-accessoires .modal-slider {
    height: 170px;
  }
}

/* =========================================================
   33. PAGE COMMANDE — DESIGN MOTION (v2)
   ========================================================= */

.page-commande .page-commande-main {
  padding: 60px 0 100px;
}

/* ---------- HEADER CENTRÉ ---------- */
.page-commande .commande-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.page-commande .commande-heading .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.page-commande .commande-heading h1 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
}

.page-commande .commande-heading p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.page-commande .commande-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.page-commande .commande-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
}

.page-commande .commande-card h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
}

.page-commande .group {
  margin-bottom: 16px;
}

.page-commande .group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.page-commande .group input,
.page-commande .group select,
.page-commande .group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.page-commande .group input:focus,
.page-commande .group select:focus,
.page-commande .group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(2128, 0, 32, 0.12);
}

.page-commande .group textarea {
  min-height: 76px;
  resize: vertical;
}

.page-commande .field-error {
  color: #dc3545;
  font-size: 11px;
  margin-top: 5px;
  display: none;
}

.page-commande .field-error.visible {
  display: block;
}

.page-commande .group input.error {
  border-color: #dc3545;
}

.page-commande .group input.valid {
  border-color: #1a8a3f;
}

.page-commande .commande-notice {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 6px;
  background: #fdf5f7; /* Fond clair avec une touche Bourgogne */
  border: 1px solid #f0d0d8; /* Bordure douce Bourgogne claire */
  color: #66001a; /* Texte Bourgogne moyen-sombre pour une bonne lisibilité */
  font-size: 12px;
  line-height: 1.55;
}

/* ---------- BOUTON SUBMIT AVEC LUEUR TOURNANTE ---------- */
.page-commande .commande-submit {
  position: relative;
  display: block;
  width: 100%;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-commande .commande-submit:hover {
  transform: translateY(-2px);
}

.page-commande .commande-submit:disabled {
  opacity: 0.85;
  cursor: wait;
  transform: none;
}

/* La lueur qui tourne autour du bouton */
.page-commande .commande-submit-glow {
  position: absolute;
  inset: -2px;
  z-index: 0;
  border-radius: 10px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    #800020 330deg,
    #d94a6a 345deg,
    #800020 360deg
  );
  animation: rotateGlow 3s linear infinite;
  opacity: 0.9;
}

.page-commande .commande-submit-glow::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 8px;
  background: #111;
}

@keyframes rotateGlow {
  to { transform: rotate(360deg); }
}

/* Contenu interne du bouton */
.page-commande .commande-submit-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
  margin: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}

.page-commande .commande-submit:hover .commande-submit-inner {
  background: #000;
}

.page-commande .commande-submit-inner svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-commande .commande-submit:hover .commande-submit-inner svg {
  transform: translateX(3px);
}

.page-commande .commande-submit:disabled .commande-submit-inner {
  background: #333;
  color: #aaa;
}

/* ---------- TRADE SECTION ---------- */
.page-commande .commande-trade-section {
  margin: 20px 0;
  padding: 16px;
  border-radius: 6px;
  background: #fdf5f7; /* Fond très clair et doux avec une touche rosée/bourgogne */
  border: 1px solid #f0d0d8; /* Bordure discrète Bourgogne très claire */
}

.page-commande .commande-trade-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: #800020; /* Titre principal en Bourgogne pur (foncé & lisible) */
  margin: 0 0 4px;
}

.page-commande .commande-trade-section > p {
  font-size: 11px;
  color: #66001a; /* Bourgogne légèrement assombri pour le texte secondaire */
  line-height: 1.5;
  margin: 0 0 12px;
}

.page-commande .trade-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid #f5e1e6; /* Ligne de séparation très légère */
}

.page-commande .trade-detail-row:last-child {
  border-bottom: none;
}

.page-commande .trade-detail-row span {
  color: #66001a; /* Libellés en Bourgogne assombri doux */
}

.page-commande .trade-detail-row strong {
  color: #4a0013; /* Valeurs importantes en Bourgogne très foncé (presque noir) */
  text-align: right;
  font-weight: 600;
}

.page-commande .trade-detail-total {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid #f0d0d8; /* Ligne de séparation de total */
}

.page-commande .trade-detail-total strong {
  color: #800020; /* Montant total mis en valeur en Bourgogne principal */
  font-size: 14px;
}
/* ---------- RÉSUMÉ ---------- */
.page-commande .commande-summary {
  position: sticky;
  top: 100px;
}

.page-commande .commande-product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.page-commande .commande-product-img {
  width: 64px;
  height: 72px;
  border-radius: 8px;
  background: #f8f8f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.page-commande .commande-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.page-commande .commande-product-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}

.page-commande .commande-product-info p {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.page-commande .commande-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 12px;
}

.page-commande .commande-line span {
  color: var(--muted);
}

.page-commande .commande-line strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.page-commande .commande-line-trade span,
.page-commande .commande-line-trade strong {
  color: var(--blue);
  font-weight: 700;
}

.page-commande .commande-accessories {
  margin: 12px 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-commande .commande-accessories h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.page-commande .commande-accessory-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding: 4px 0;
  color: #555;
}

.page-commande .commande-accessory-item span:last-child {
  font-weight: 600;
  color: var(--ink);
}

.page-commande .commande-accessories-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
}

.page-commande .commande-total {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}

.page-commande .commande-total span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  align-self: center;
}

.page-commande .commande-total strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.page-commande .commande-payment {
  margin-top: 20px;
  padding: 14px;
  background: #f8f8f6;
  border-radius: 6px;
  font-size: 11px;
  color: #555;
  line-height: 1.6;
}

.page-commande .commande-payment strong {
  color: var(--ink);
}

/* ---------- SUCCÈS ---------- */
.page-commande .commande-success {
  text-align: center;
  padding: 50px 28px;
}

.page-commande .success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #800020; /* Fond Bourgogne principal */
  color: #ffffff; /* Icône/coche en blanc pour un contraste parfait */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
}

.page-commande .commande-success h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink); /* Reste sobre (ou #800020 si vous voulez le titre en Bourgogne) */
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.page-commande .commande-success p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .page-commande .commande-layout {
    grid-template-columns: 1fr;
  }
  .page-commande .commande-summary {
    position: relative;
    top: auto;
  }
}

@media (max-width: 560px) {
  .page-commande .page-commande-main {
    padding: 40px 0 70px;
  }
  .page-commande .commande-heading {
    margin-bottom: 32px;
  }
  .page-commande .commande-heading h1 {
    font-size: 22px;
  }
  .page-commande .commande-card {
    padding: 20px;
  }
  .page-commande .commande-total strong {
    font-size: 20px;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-commande .commande-submit-glow {
    animation: none;
    background: var(--blue);
  }
  .page-commande .commande-submit-glow::after {
    background: #111;
  }
  .page-accessoires .accessoire-card,
  .page-accessoires .proceed-btn,
  .page-accessoires .bag-float,
  .page-accessoires .bag-item {
    animation: none !important;
    transition: none !important;
  }
}
/* =========================================================
   34. PAGE 404 — MINIMALISTE
   ========================================================= */

.error-page {
  background: var(--paper);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.error-shell {
  width: 100%;
}

.error-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-code {
  font-size: clamp(72px, 14vw, 140px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
  display: block;
}

.error-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.error-title {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}

.error-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 440px;
}

.error-actions {
  display: flex;
  justify-content: center;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.error-btn:hover {
  background: var(--blue);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(128, 0, 32, 0.35);
}

.error-btn svg {
  width: 15px;
  height: 15px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-btn:hover svg {
  transform: translateX(3px);
}

.error-inner .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-inner .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .error-btn {
    padding: 12px 22px;
    font-size: 12px;
  }
}

/* =========================================================
   35. PAGE TÉMOIGNAGES — DESIGN MOTION
   ========================================================= */

/* ---------- PAGE TÉMOIGNAGES ---------- */
.reviews-page {
  padding: 60px 0 100px;
  background: var(--paper);
}

/* ---------- EN-TÊTE (pas d'image hero) ---------- */
.reviews-page-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.reviews-page-head .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.reviews-page-title {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 12px;
}

.reviews-page-subtitle {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- BARRE FILTRES ---------- */
.reviews-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.reviews-filters {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.reviews-filters .select-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-filters .select-wrapper label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  white-space: nowrap;
}

.reviews-count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- GRILLE D'AVIS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

/* ---------- CARTE AVIS ---------- */
.reviews-page .review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.reviews-page .review-card.in {
  opacity: 1;
  transform: translateY(0);
}

.reviews-page .review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border-color: #ddd;
}

/* En-tête carte */
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.review-stars {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--blue);
  line-height: 1;
}

.review-stars.low {
  color: #d4a017;
}

.review-phone {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 3px;
  white-space: nowrap;
}

.review-phone.negative {
  background: #fff1f0;
  border-color: #ffd2cf;
  color: #c0392b;
}

/* Corps */
.review-body {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin: 0;
  flex: 1;
}

/* Pied */
.review-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.review-author-info {
  min-width: 0;
}

.review-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.review-date {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Empty state */
.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed var(--line);
  border-radius: 10px;
}

.reviews-empty h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
}

.reviews-empty p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ---------- PAGINATION ---------- */
.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.page-btn:hover:not(:disabled) {
  border-color: #111;
  background: var(--soft);
}

.page-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-btn svg {
  width: 14px;
  height: 14px;
}

/* ---------- FORMULAIRE D'AVIS ---------- */
.review-form-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.review-form-head {
  text-align: center;
  margin-bottom: 28px;
}

.review-form-head .eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.review-form-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 10px;
}

.review-form-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.review-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-form label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.12);
}

.review-form .btn {
  margin-top: 8px;
  background: #111;
  color: #fff;
  min-height: 48px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-form .btn:hover {
  background: var(--blue);
  color: #111;
  transform: translateY(-2px);
}

.form-success {
  display: none;
  padding: 12px 16px;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 6px;
  color: #1a8a3f;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.form-success.active {
  display: block;
  animation: successIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes successIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE TÉMOIGNAGES ---------- */
@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .reviews-page {
    padding: 40px 0 80px;
  }
  .reviews-page-head {
    margin-bottom: 28px;
  }
  .reviews-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .reviews-filters {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .reviews-filters .select-wrapper {
    width: 100%;
    justify-content: space-between;
  }
  .reviews-filters .motion-select {
    flex: 1;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .review-form-section {
    padding: 22px;
  }
  .review-form .form-row {
    grid-template-columns: 1fr;
  }
  .reviews-page .review-card {
    min-height: auto;
    padding: 18px;
  }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .reviews-page .review-card,
  .error-inner .reveal,
  .error-btn,
  .error-btn svg,
  .form-success.active {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* =========================================================
   PAGES SANS HERO — HEADER BLANC
   ========================================================= */

.page-no-hero .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(248, 248, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  color: var(--ink);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(0);
  animation: none;
}

/* Recherche : plus aucun espace réservé au ruban */
.page-no-hero .search-drawer {
  top: 0;
}

.page-no-hero .search-backdrop {
  top: 0;
}

/* Le contenu commence juste sous le header */
.page-no-hero .page-produit-main {
  padding-top: 64px;
}

.page-no-hero .page-commande-main {
  padding-top: 88px;
}

.page-no-hero .page-accessoires-main {
  padding-top: 88px;
}

.page-no-hero .reviews-page {
  padding-top: 88px;
}

.page-no-hero.article-page .article-head {
  padding-top: 88px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {

  .page-no-hero .site-header {
    height: 60px;
  }

  .page-no-hero .page-produit-main {
    padding-top: 60px;
  }

  .page-no-hero .page-commande-main {
    padding-top: 80px;
  }

  .page-no-hero .page-accessoires-main {
    padding-top: 80px;
  }

  .page-no-hero .reviews-page {
    padding-top: 80px;
  }

  .page-no-hero.article-page .article-head {
    padding-top: 80px;
  }
}


@media (max-width: 560px) {

  .page-no-hero .site-header {
    height: 56px;
  }

  .page-no-hero .page-produit-main {
    padding-top: 56px;
  }

  .page-no-hero .page-commande-main {
    padding-top: 72px;
  }

  .page-no-hero .page-accessoires-main {
    padding-top: 72px;
  }

  .page-no-hero .reviews-page {
    padding-top: 72px;
  }

  .page-no-hero.article-page .article-head {
    padding-top: 72px;
  }
}

/* =========================================================
   ANIMATION FONDU ENTRE IMAGES — GALERIE PRODUIT
   ========================================================= */

.page-site .hero-media img {
  transition: opacity .35s ease;
}

/* État "fade out" : l'image disparaît en douceur */
.page-site .hero-media img.is-fading {
  opacity: 0;
}
/* =========================================================
   INDEX — Blog (3 derniers articles + bouton Voir plus)
   ========================================================= */

/* Grille des 3 cartes sur l'accueil */
.blog-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Petite description sous le titre */
.blog-card-excerpt {
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 12px;
}

/* Conteneur du bouton "Voir plus d'articles" */
.blog-viewall-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive : 2 colonnes puis 1 */
@media (max-width: 820px) {
  .blog-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-track {
    grid-template-columns: 1fr;
  }
}