/* ==========================================================================
   RUHI COLLECTION — Design system (blanc & or, luxe, moderne)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --black-soft: #141210;
  --white: #ffffff;
  --cream: #faf7f2;
  --cream-dark: #f1eadd;
  --gold: #c6a15b;
  --gold-light: #e6cd94;
  --gold-dark: #9c7c3d;
  --ink: #221f1a;
  --ink-soft: #55504a;
  --line: #e7ddc9;
  --success: #4b7f52;
  --error: #a83a3a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Segoe UI', sans-serif;

  --container: 1280px;
  --radius: 2px;
  --shadow-soft: 0 10px 30px rgba(10, 10, 10, 0.06);
  --shadow-card: 0 6px 24px rgba(10, 10, 10, 0.08);
  --transition: 220ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a {
  color: inherit; text-decoration: none;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
ul { list-style: none; margin: 0; padding: 0; }
button {
  font-family: inherit; cursor: pointer;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
input, select, textarea { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--black);
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.9em;
}
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--cream { background: var(--cream); }
.section--black { background: var(--black); color: var(--cream); }
.section--black h1, .section--black h2, .section--black h3 { color: var(--white); }
.text-center { text-align: center; }
.divider-orn {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto;
  position: relative;
}
.divider-orn::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--black); color: var(--gold-light);
  padding: 10px 16px; z-index: 999; transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--black);
  color: var(--gold-light);
  border-color: var(--black);
}
.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-light {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}
@media (hover: hover) and (pointer: fine) {
  .btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
  .btn--outline:hover { background: var(--black); color: var(--gold-light); }
  .btn--outline-light:hover { background: var(--gold-light); color: var(--black); }
}
.btn--gold:active { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn--outline:active { background: var(--black); color: var(--gold-light); }
.btn--outline-light:active { background: var(--gold-light); color: var(--black); }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn--sm { padding: 10px 20px; font-size: 0.7rem; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--black);
  color: var(--cream-dark);
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.topbar strong { color: var(--gold-light); }

/* ---------- Header ---------- */
.site-header {
  background: var(--black);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18);
}
.header-logo-row {
  display: flex;
  justify-content: center;
  padding: 18px 0 10px;
}
.header-logo-row img { height: 58px; width: auto; }
.header-nav-row {
  border-top: 1px solid rgba(230, 205, 148, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.nav-links {
  display: flex;
  gap: 34px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links a.active { color: var(--gold-light); border-color: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover { color: var(--gold-light); border-color: var(--gold); }
}
.header-icons { display: flex; align-items: center; gap: 6px; }
.header-icons button, .header-icons a {
  background: none; border: none; color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  transition: color var(--transition);
  width: 44px; height: 44px;
}
@media (hover: hover) and (pointer: fine) {
  .header-icons button:hover, .header-icons a:hover { color: var(--gold-light); }
}
.header-icons svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: var(--black);
  font-size: 0.62rem; font-weight: 600;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle {
  display: none; background: none; border: none; color: var(--cream);
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 860px) {
  .header-logo-row img { height: 46px; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw);
    background: var(--black); flex-direction: column; justify-content: flex-start;
    align-items: flex-start;
    padding: max(28px, env(safe-area-inset-top)) 32px max(32px, env(safe-area-inset-bottom));
    gap: 22px;
    transform: translateX(100%); transition: transform var(--transition);
    z-index: 250;
    overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  }
  .nav-links a { padding: 8px 2px; font-size: 0.92rem; }
  .nav-links.is-open { transform: translateX(0); }
  .nav-toggle { display: inline-flex; }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    opacity: 0; pointer-events: none; transition: opacity var(--transition);
    z-index: 240;
  }
  .nav-overlay.is-open { opacity: 1; pointer-events: auto; }
  .nav-close {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin: -10px -10px 10px auto;
    background: none; border: none; color: var(--gold-light);
  }
}

/* ---------- Habillage du contenu qui glisse par-dessus le splash ---------- */
.site-content-wrap {
  position: relative;
  z-index: 2;
  background: var(--white);
}

/* ---------- Splash intro (page d'accueil uniquement) ---------- */
.splash {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--black);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 22%;
  background-image:
    linear-gradient(180deg, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.32) 42%, rgba(10,10,10,0.35) 65%, rgba(10,10,10,0.82) 100%),
    url('/assets/img/photos/splash-bg-mobile.webp');
}
/* 100svh (small viewport height) reste constant pendant que la barre d'outils
   de Safari iOS apparaît/disparaît au scroll — contrairement à 100dvh qui
   change en direct et provoque un redimensionnement saccadé du splash au
   moment précis où l'utilisateur commence à faire défiler la page. */
@supports (height: 100svh) {
  .splash { height: 100svh; }
}
@media (min-width: 700px) {
  .splash {
    background-image:
      linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.28) 42%, rgba(10,10,10,0.32) 65%, rgba(10,10,10,0.78) 100%),
      url('/assets/img/photos/splash-bg-tablet.webp');
  }
}
@media (min-width: 1200px) {
  .splash {
    background-position: center 14%;
    background-image:
      linear-gradient(100deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.32) 45%, rgba(10,10,10,0.2) 65%, rgba(10,10,10,0.6) 100%),
      url('/assets/img/photos/splash-bg.webp');
  }
}
.splash-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform, opacity;
}
.splash-logo {
  width: min(230px, 56vw);
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 10px 34px rgba(0,0,0,0.45));
  opacity: 0;
  animation: splashFadeUp 0.9s cubic-bezier(.16,1,.3,1) 0.1s forwards;
}
.splash-eyebrow {
  display: block;
  color: var(--gold-light);
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: splashFadeUp 0.9s cubic-bezier(.16,1,.3,1) 0.3s forwards;
}
.splash-slogan {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-size: clamp(1.9rem, 5.4vw, 3.4rem);
  line-height: 1.22;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  opacity: 0;
  animation: splashFadeUp 0.9s cubic-bezier(.16,1,.3,1) 0.42s forwards;
}
.splash-quote {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-dark);
  font-size: clamp(0.92rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
  opacity: 0;
  animation: splashFadeUp 0.9s cubic-bezier(.16,1,.3,1) 0.56s forwards;
}
.splash-scroll {
  position: absolute;
  bottom: max(26px, env(safe-area-inset-bottom));
  left: 50%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  animation:
    splashScrollFadeIn 0.8s ease 0.85s forwards,
    splashBounce 2.4s ease-in-out 0.85s infinite;
}
.splash-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes splashScrollFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes splashBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}
@media (prefers-reduced-motion: reduce) {
  .splash-scroll, .splash-logo, .splash-eyebrow, .splash-slogan, .splash-quote {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .splash-scroll { transform: translateX(-50%); }
}

/* Écrans bas (iPad, petits laptops, iPhone en paysage) : resserre les
   espacements verticaux pour que le logo + le slogan + la citation tiennent
   toujours entièrement, sans jamais être rognés. Placé après les règles de
   base ci-dessus pour bien les surcharger dans la cascade (même spécificité,
   donc l'ordre dans le fichier compte). */
@media (max-height: 860px) {
  .splash-logo { width: min(170px, 42vw); margin-bottom: 16px; }
  .splash-eyebrow { margin-bottom: 12px; }
  .splash-slogan { font-size: clamp(1.5rem, 4.4vw, 2.5rem); margin-bottom: 14px; }
  .splash-quote { font-size: clamp(0.82rem, 1.6vw, 0.98rem); line-height: 1.55; }
  .splash-scroll { bottom: max(14px, env(safe-area-inset-bottom)); }
}
@media (max-height: 620px) {
  .splash-content { padding-top: 60px; padding-bottom: 50px; }
  .splash-logo { width: min(120px, 34vw); margin-bottom: 10px; }
  .splash-eyebrow { margin-bottom: 8px; font-size: 0.66rem; }
  .splash-slogan { font-size: clamp(1.25rem, 4vw, 1.9rem); margin-bottom: 10px; }
  .splash-scroll { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.82) 34%, rgba(10,10,10,0.35) 60%, rgba(10,10,10,0.12) 100%),
    url('/assets/img/hero-bg.jpg') center 18% / cover no-repeat,
    linear-gradient(155deg, var(--black) 0%, #241d12 60%, var(--gold-dark) 150%);
  color: var(--white);
  padding: 130px 0 120px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(230,205,148,0.12), transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 640px; }
.hero h1, .hero h2 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--white); line-height: 1.15; }
.hero p { color: var(--cream-dark); font-size: 1.05rem; max-width: 480px; }
.hero-actions { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Category strip ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex; align-items: flex-end;
}
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
@media (hover: hover) and (pointer: fine) {
  .cat-card:hover img { transform: scale(1.06); }
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75), rgba(10,10,10,0.05) 55%);
}
.cat-card span {
  position: relative; color: var(--white);
  font-family: var(--font-display); font-size: 1.2rem;
  padding: 22px; letter-spacing: 0.02em;
}

/* ---------- Product grid & card ---------- */
.toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px; margin-bottom: 32px;
}
.filter-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding-bottom: 2px;
}
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pills--sub {
  margin: -6px 0 26px;
  padding-top: 2px;
  flex-wrap: nowrap;
}
@media (min-width: 700px) { .filter-pills--sub { flex-wrap: wrap; } }
.filter-pill {
  padding: 9px 18px; border: 1px solid var(--line);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 999px; background: var(--white); transition: all var(--transition);
  white-space: nowrap; flex-shrink: 0;
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.filter-pill--sub {
  padding: 7px 15px; font-size: 0.68rem; color: var(--ink-soft); border-color: transparent; background: var(--cream);
}
@media (hover: hover) and (pointer: fine) {
  .filter-pill:hover { border-color: var(--gold); }
}
.filter-pill:active { border-color: var(--gold); }
.filter-pill.active { background: var(--black); color: var(--gold-light); border-color: var(--black); }
.result-count { font-size: 0.82rem; color: var(--ink-soft); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; } }

.product-card { position: relative; }
.product-card__media {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--cream-dark); border-radius: var(--radius); margin-bottom: 14px;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__media img { transform: scale(1.05); }
}
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--black); color: var(--gold-light);
  font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.badge--sale { background: var(--error); color: var(--white); }
.quick-add {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  opacity: 0; transform: translateY(8px);
  transition: all var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
}
@media (max-width: 760px), (hover: none) { .quick-add { opacity: 1; transform: none; position: static; margin-top: 10px; } }
.product-card__cat { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); }
.product-card__name { font-family: var(--font-display); font-size: 1.02rem; margin: 4px 0 6px; }
.product-card__name a { transition: color var(--transition); }
@media (hover: hover) and (pointer: fine) {
  .product-card__name a:hover { color: var(--gold-dark); }
}
.price { font-size: 0.92rem; }
.price__original { text-decoration: line-through; color: var(--ink-soft); margin-right: 8px; font-size: 0.84rem; }
.price__current { color: var(--black); font-weight: 500; }
.price__current--sale { color: var(--error); }

/* ---------- Product detail ---------- */
.product-detail {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px;
}
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; gap: 30px; } }
.product-gallery__main {
  aspect-ratio: 3/4; overflow: hidden; background: var(--cream-dark); border-radius: var(--radius);
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-gallery__thumbs img {
  width: 74px; height: 92px; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--line); cursor: pointer; opacity: 0.7; transition: all var(--transition);
}
.product-gallery__thumbs img.active { opacity: 1; border-color: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .product-gallery__thumbs img:hover { opacity: 1; border-color: var(--gold); }
}
.product-info__cat { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); }
.product-info h1 { font-size: 2rem; margin: 8px 0 10px; }
.product-info__price { font-size: 1.3rem; margin-bottom: 18px; }
.product-info__desc { color: var(--ink-soft); margin-bottom: 22px; }
.option-group { margin-bottom: 22px; }
.option-label { display: flex; justify-content: space-between; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.option-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
  border: 1px solid var(--line); background: var(--white); padding: 10px 16px;
  font-size: 0.82rem; border-radius: var(--radius); transition: all var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .swatch:hover { border-color: var(--gold); }
}
.swatch { min-height: 44px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.swatch.selected { background: var(--black); color: var(--gold-light); border-color: var(--black); }
.qty-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.qty-control button { background: none; border: none; width: 44px; height: 44px; font-size: 1.1rem; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.qty-control input { width: 42px; border: none; text-align: center; -moz-appearance: textfield; }
.product-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.product-actions .btn { flex: 1; min-width: 200px; }
.trust-list { display: flex; flex-direction: column; gap: 10px; padding: 20px 0; border-top: 1px solid var(--line); font-size: 0.86rem; color: var(--ink-soft); }
.trust-list li { display: flex; gap: 10px; align-items: center; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; background: none; border: none; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height var(--transition); color: var(--ink-soft); font-size: 0.92rem; }
.accordion-item.open .accordion-panel { max-height: 320px; padding-bottom: 16px; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-icon { transition: transform var(--transition); }

/* ---------- Cart page & drawer ---------- */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } }
.cart-line {
  display: grid; grid-template-columns: 90px 1fr auto; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.cart-line img { width: 90px; height: 112px; object-fit: cover; border-radius: var(--radius); background: var(--cream-dark); }
.cart-line__name { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.cart-line__meta { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 10px; }
.cart-line__remove { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--error); background: none; border: none; margin-top: 8px; padding: 8px 0; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
.cart-line__price { font-size: 0.95rem; font-weight: 500; white-space: nowrap; align-self: start; padding-top: 4px; }
.cart-summary { background: var(--cream); padding: 30px; border-radius: var(--radius); }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.92rem; }
.summary-row--total { font-size: 1.15rem; font-weight: 500; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 14px; }
.empty-state { text-align: center; padding: 90px 20px; }
.payment-icons { display: flex; gap: 10px; margin-top: 18px; align-items: center; flex-wrap: wrap; }
.payment-icons span { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); padding: 5px 9px; border-radius: 4px; }

.cart-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(420px, 92vw); background: var(--white);
  transform: translateX(100%); transition: transform var(--transition); z-index: 300;
  display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: max(22px, env(safe-area-inset-top)) 26px 22px; border-bottom: 1px solid var(--line);
}
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 10px 26px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.cart-drawer__footer { padding: 22px 26px max(22px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.5); z-index: 290;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); transition: border-color var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.checkbox-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); }
.alert { padding: 14px 18px; border-radius: var(--radius); font-size: 0.88rem; margin-bottom: 18px; }
.alert--success { background: #ecf4ec; color: var(--success); border: 1px solid #c9e0ca; }
.alert--error { background: #f8ecec; color: var(--error); border: 1px solid #edc9c9; }

/* ---------- Trust / features band ---------- */
.feature-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
@media (max-width: 800px) { .feature-band { grid-template-columns: repeat(2, 1fr); } }
.feature-band svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 12px; }
.feature-band h4 { font-size: 0.95rem; }
.feature-band p { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { background: var(--white); padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { color: var(--ink-soft); font-style: italic; }
.testimonial-card__author { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--black); }

/* ---------- Newsletter ---------- */
.newsletter { display: flex; gap: 12px; max-width: 460px; margin: 0 auto; flex-wrap: wrap; }
.newsletter input { flex: 1; min-width: 200px; padding: 14px 16px; border: 1px solid var(--gold-light); background: transparent; color: var(--white); border-radius: var(--radius); }
.newsletter input::placeholder { color: rgba(250,247,242,0.6); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--cream-dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(230,205,148,0.14); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
}
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; color: var(--gold-light); font-size: 1rem; margin-bottom: 10px; }
.footer-brand p { font-size: 0.86rem; color: rgba(250,247,242,0.65); max-width: 280px; }
.footer-col h5 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.88rem; color: rgba(250,247,242,0.75); transition: color var(--transition); display: inline-block; padding: 3px 0; }
@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover { color: var(--gold-light); }
}
.footer-social { display: flex; gap: 14px; margin-top: 16px; justify-content: flex-start; }
@media (max-width: 560px) { .footer-social { justify-content: center; } }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(230,205,148,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 0.76rem; color: rgba(250,247,242,0.5); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(250,247,242,0.5); }
.footer-payments { display: flex; gap: 8px; }
.footer-payments span { border: 1px solid rgba(230,205,148,0.25); padding: 4px 8px; border-radius: 4px; font-size: 0.68rem; letter-spacing: 0.05em; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 26px; }
@media (hover: hover) and (pointer: fine) {
  .breadcrumb a:hover { color: var(--gold-dark); }
}
.breadcrumb span { margin: 0 6px; }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2em; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.legal-content li { margin-bottom: 0.5em; }
.legal-content p { color: var(--ink-soft); }
.legal-updated { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 40px; }

/* ---------- Misc pages ---------- */
.page-header { background: var(--cream); padding: 60px 0 40px; text-align: center; }
.page-header h1 { font-size: 2.1rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }
.info-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list svg { width: 20px; height: 20px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }

.toast {
  position: fixed; bottom: max(24px, calc(env(safe-area-inset-bottom) + 14px)); left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--black); color: var(--gold-light); padding: 14px 26px; border-radius: 999px;
  font-size: 0.84rem; opacity: 0; pointer-events: none; transition: all var(--transition);
  z-index: 400;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- FAQ (bouton flottant + popup) ---------- */
.faq-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, calc(env(safe-area-inset-bottom) + 14px));
  z-index: 150;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-light);
  border: 1px solid rgba(230,205,148,0.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(10,10,10,0.35);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  transition: transform 180ms ease, background var(--transition), color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .faq-fab:hover { background: var(--gold-dark); color: var(--white); }
}
.faq-fab:active { transform: scale(0.93); }

.faq-overlay {
  position: fixed; inset: 0; background: rgba(10,10,10,0.55);
  z-index: 500; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.faq-overlay.is-open { opacity: 1; pointer-events: auto; }

.faq-modal {
  position: fixed;
  z-index: 510;
  left: 50%; top: 50%;
  transform: translate(-50%, -46%) scale(0.97);
  width: min(560px, 92vw);
  max-height: 82vh;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.faq-modal.is-open { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: auto; }
.faq-modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--line);
}
.faq-modal__header h2 { margin: 0; font-size: 1.15rem; }
.faq-modal__close {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--ink-soft);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
}
.faq-modal__body { flex: 1; overflow-y: auto; padding: 4px 24px; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.faq-modal__body .accordion-trigger { text-transform: none; letter-spacing: 0.01em; font-size: 0.92rem; text-align: left; gap: 14px; }
.faq-modal__footer {
  padding: 16px 24px max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.faq-modal__footer p { margin: 0; font-size: 0.85rem; color: var(--ink-soft); }

@media (max-width: 640px) {
  .faq-modal {
    left: 0; right: 0; top: auto; bottom: 0;
    transform: translateY(100%);
    width: 100%; max-width: none; max-height: 86vh;
    border-radius: 16px 16px 0 0;
  }
  .faq-modal.is-open { transform: translateY(0); }
}

.spinner {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--gold-light); border-radius: 50%; animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
