/* ── Loot My Print – main.css v1.4 ───────────────────────────────────────── */
:root {
  --navy:      #1B1630;
  --navy-2:    #221b3a;
  --navy-3:    #2b2347;
  --navy-card: #1f1b38;
  --gold:      #F2B72B;
  --gold-soft: #f7cf6b;
  --cream:     #F3EEE4;
  --muted:     rgba(243,238,228,.55);
  --muted-2:   rgba(243,238,228,.35);
  --line:      rgba(243,238,228,.12);
  --serif:     'Cormorant Garamond', serif;
  --sans:      'Jost', sans-serif;
  --script:    'Parisienne', cursive;
  --r-card:    16px;
  --r-btn:     999px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: .02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }

.wrap    { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
section  { padding: 80px 0; }

/* ── Zone WooCommerce ────────────────────────────────────────────────────── */
.wc-main { display: block; width: 100%; min-height: 60vh; }

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--gold); color: var(--navy);
  text-align: center; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; padding: 9px 16px;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
header { position: sticky; top: 0; z-index: 100; }
header.loot-nav {
  background: rgba(12, 8, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 151, 45, 0.18);
}
header.loot-nav.scrolled {
  background: rgba(8, 4, 20, 0.92);
  border-bottom-color: rgba(197, 151, 45, 0.28);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-family: var(--script); font-size: 34px; line-height: 1; white-space: nowrap; }
.logo .gold { color: var(--gold); }
.menu { display: flex; gap: 34px; list-style: none; }
.menu a {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); position: relative; padding: 4px 0; transition: color .3s;
}
.menu a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--gold); transition: width .35s; }
.menu a:hover { color: var(--cream); }
.menu a:hover::after { width: 100%; }
/* ── Dropdown Boutique ───────────────────────────────────────────────────── */
.has-dropdown { position: relative; }
.menu-boutique-link { display: inline-flex; align-items: center; gap: 5px; }
.chevron-icon { transition: transform .25s; flex-shrink: 0; margin-top: 1px; }
.has-dropdown.open .chevron-icon { transform: rotate(180deg); }
.dropdown-toggle { display: none; }

.dropdown {
  position: absolute; top: 100%; left: -8px;
  padding-top: 8px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  z-index: 300; min-width: 210px;
}
.has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.dropdown-card {
  background: #151228;
  border: 1px solid rgba(242,183,43,.18);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
}
.dropdown-list { list-style: none; padding: 4px 0 2px; }
.dropdown-list li { border: none; }
.dropdown-list a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(243,238,228,.6); white-space: nowrap;
  border-left: 2px solid transparent;
  transition: color .15s, background .15s, border-color .15s;
}
.dropdown-list a::after { display: none; }
.dropdown-list a:hover {
  color: var(--cream);
  background: rgba(242,183,43,.06);
  border-left-color: var(--gold);
}
.dropdown-dot {
  width: 3px; height: 3px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); opacity: .35; transition: opacity .15s;
}
.dropdown-list a:hover .dropdown-dot { opacity: 1; }
.dropdown-sep { height: 1px; background: rgba(243,238,228,.08); margin: 2px 0; }
.dropdown-all {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 11px 18px;
  font-family: var(--sans); font-size: 10px;
  font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(242,183,43,.07);
  border-left: 2px solid transparent;
  transition: background .15s, border-color .15s;
}
.dropdown-all::after { display: none; }
.dropdown-all:hover { background: rgba(242,183,43,.14); border-left-color: var(--gold); }

/* ── Loot Nav (nouvelle nav) ──────────────────────────────────────────────── */
.loot-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.loot-mobile-utility { display: none; }
.loot-menu li { position: relative; }
.loot-menu > li > a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  padding: 4px 0;
  position: relative;
}
.loot-menu > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  height: 1px; width: 0; background: #d9a82f; transition: width .35s;
}
.loot-menu > li > a:hover { color: #d9a82f; }
.loot-menu > li > a:hover::after { width: 100%; }
.loot-dropdown-toggle { display: none; }

/* Panneau dropdown
   Sur desktop : déplacé dans <body> par JS (portal), position: fixed, z-index: 99999.
   Échappe à 100% aux stacking contexts du header et du contenu WooCommerce.
   Sur mobile  : reste dans le li, accordéon contrôlé par .open. */
.loot-dropdown-panel {
  position: absolute; /* écrasé en fixed par JS sur desktop */
  min-width: 320px;
  padding: 0;
  background: transparent;
  border: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 200;
}
/* Classe ajoutée par JS quand le panel est visible (desktop) */
.loot-panel-visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.loot-dropdown-panel .loot-panel-card {
  background: linear-gradient(145deg, rgba(24, 16, 58, 0.96), rgba(8, 5, 25, 0.96));
  border: 1px solid rgba(217, 168, 47, 0.22);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45), 0 0 35px rgba(130, 72, 255, 0.18);
  padding: 14px;
  position: relative;
}
.loot-dropdown-panel .loot-panel-card::before {
  content: "";
  position: absolute;
  top: -7px; left: 50%;
  width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: rgba(24, 16, 58, 0.96);
  border-left: 1px solid rgba(217, 168, 47, 0.22);
  border-top: 1px solid rgba(217, 168, 47, 0.22);
}
.loot-dropdown-panel a {
  display: block;
  padding: 14px 16px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.loot-dropdown-panel a::after { display: none; }
.loot-dropdown-panel a:hover {
  background: rgba(217, 168, 47, 0.10);
  box-shadow: inset 0 0 0 1px rgba(217, 168, 47, 0.18);
  transform: translateX(4px);
  color: rgba(255, 255, 255, 0.88);
}
.loot-dropdown-panel span {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: #f4d27a;
  margin-bottom: 4px;
}
.loot-dropdown-panel small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.loot-panel-all {
  margin-top: 6px;
  border-top: 1px solid rgba(217, 168, 47, 0.15);
  padding-top: 14px !important;
}
.loot-panel-all span {
  color: #d9a82f !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-actions { display: flex; align-items: center; gap: 20px; }
.icon-btn { background: none; border: none; color: var(--cream); cursor: pointer; display: flex; transition: color .3s; }
.icon-btn:hover { color: var(--gold); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; font-weight: 600;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; font-family: var(--sans);
  transform: scale(0); transition: transform .3s cubic-bezier(.3,1.6,.5,1);
}
.cart-count.show { transform: scale(1); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  font-family: var(--sans); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
  padding: 15px 30px; border: none; cursor: pointer;
  transition: .35s; border-radius: var(--r-btn); display: inline-flex;
  align-items: center; gap: 8px;
}
.btn-gold  { background: var(--gold); color: var(--navy); }
.btn-gold:hover  { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(242,183,43,.5); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(243,238,228,.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── Kicker / section labels ─────────────────────────────────────────────── */
.kicker { font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* ── Hero – Film slideshow ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100dvh; overflow: hidden;
}

/* Backgrounds */
.hf-bgs { position: absolute; inset: 0; z-index: 0; }
.hf-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s cubic-bezier(.4,0,.2,1);
}
.hf-bg.active { opacity: 1; }
.hf-bg-inner {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hf-bg-inner.active { opacity: 1; }

/* ── Diaporama produit (right, multiple images per slide) ─────────────────── */
.hf-diaporama {
  display: none;
}
.hf-diap-group {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .7s ease;
}
.hf-diap-group.active { opacity: 1; }
.hf-diap-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.4,0,.2,1);
}
.hf-diap-img.active {
  opacity: 1;
  animation: diap-kenburns 6s ease-out forwards;
}
@keyframes diap-kenburns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* Vignette */
.hf-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(13,11,24,.96) 0%,
    rgba(13,11,24,.88) 28%,
    rgba(13,11,24,.50) 50%,
    rgba(13,11,24,.18) 68%,
    rgba(13,11,24,.05) 100%
  );
}

/* Glows */
.hero-bg { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-bg .glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.glow.g1 { width: 480px; height: 480px; background: radial-gradient(circle,rgba(242,183,43,.2),transparent 70%); top: -80px; left: -60px; opacity: .5; }
.glow.g2 { display: none; }

/* Left content */
.hf-wrap {
  position: relative; z-index: 3;
  min-height: 100dvh; display: flex; align-items: center;
  padding-top: 76px; padding-bottom: 180px;
}
.hf-left { max-width: 440px; display: flex; flex-direction: column; }

/* Per-slide texts */
.hf-text { display: none; flex-direction: column; }
.hf-text.active { display: flex; }
.hf-eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; font-weight: 500;
  animation: fadeUp .65s cubic-bezier(.2,.7,.2,1) both;
}
.hf-eyebrow .rule { height: 1px; width: 48px; background: var(--gold); opacity: .6; flex-shrink: 0; }
.hf-title {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(44px,5.5vw,76px); line-height: 1.08; color: #fff;
  margin-bottom: 18px;
  animation: fadeUp .65s .1s cubic-bezier(.2,.7,.2,1) both;
}
.hf-sub {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  max-width: 40ch; margin-bottom: 34px;
  animation: fadeUp .65s .2s cubic-bezier(.2,.7,.2,1) both;
}
.hf-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }

/* Hero text utilities (shared) */
.eyebrow {
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; font-weight: 500;
}
.eyebrow .rule { height: 1px; width: 48px; background: var(--gold); opacity: .6; }
.hero h1 { font-family: var(--script); font-weight: 400; font-size: clamp(46px,6vw,82px); line-height: 1.08; letter-spacing: 0; }
.hero h1 .gold { color: var(--gold); }
.rot { display: inline-block; color: var(--gold); font-family: var(--script); font-weight: 400; transition: opacity .4s, transform .4s; }
.rot.out { opacity: 0; transform: translateY(12px); }
.hero p.lead { font-size: 17px; color: var(--muted); max-width: 46ch; margin: 26px 0 36px; line-height: 1.7; }
.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.micro { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.micro div { font-size: 12px; letter-spacing: .06em; color: var(--muted); display: flex; align-items: center; gap: 7px; text-transform: uppercase; }

/* Sparkles */
.sparkle { position: absolute; z-index: 5; color: var(--gold); animation: twinkle 3.5s ease-in-out infinite; }
@keyframes twinkle { 0%,100%{opacity:.25;transform:scale(.8)} 50%{opacity:1;transform:scale(1.1)} }
.sp1 { top: 18%; right: 7%; width: 34px; }
.sp2 { top: 65%; right: 16%; width: 18px; animation-delay: 1.1s; }
.sp3 { top: 38%; left: 4%; width: 24px; animation-delay: 2s; }
.fade { opacity: 0; transform: translateY(22px); animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
.d1{animation-delay:.1s} .d2{animation-delay:.25s} .d3{animation-delay:.4s} .d4{animation-delay:.55s} .d5{animation-delay:.7s} .d6{animation-delay:.9s}

/* ── Product image (right, sharp) ────────────────────────────────────────── */
.hf-product {
  display: none;
}

/* ── Thumbnail strip ──────────────────────────────────────────────────────── */
.hf-strip {
  position: absolute; z-index: 4;
  bottom: 100px; right: 40px;
  left: auto; top: auto; transform: none;
  display: flex; flex-direction: row; gap: 10px;
  overflow: visible;
}
.hf-card {
  flex: 0 0 100px; aspect-ratio: 2/3;
  position: relative; overflow: hidden;
  border-radius: 10px; display: block;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 12px 32px -6px rgba(0,0,0,.65);
  transition: opacity .5s ease, transform .3s ease;
}
.hf-card:hover { transform: translateY(-4px); }
.hf-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.hf-card:hover img { transform: scale(1.05); }
.hf-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,24,.92) 0%, rgba(13,11,24,0) 55%);
}
.hf-card-info {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 3px; pointer-events: none;
}
.hf-card-tag {
  font-size: 9px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
.hf-card-name {
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  color: #fff; line-height: 1.2;
}
.hf-hidden { display: none !important; }

/* ── Navigation ───────────────────────────────────────────────────────────── */
.hf-nav {
  position: absolute; bottom: 36px; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
}
.hf-nav-btns { display: flex; gap: 8px; }
.hf-btn {
  width: 42px; height: 42px; border-radius: 50%; padding: 0;
  border: 1px solid rgba(243,238,228,.22);
  background: rgba(13,11,24,.45); backdrop-filter: blur(10px);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, color .25s;
}
.hf-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.hf-counter {
  font-family: var(--ui); font-size: 52px; font-weight: 800;
  color: rgba(243,238,228,.18); letter-spacing: -.03em; line-height: 1;
}

/* Progress bar */
.hf-progress-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  height: 2px; background: rgba(243,238,228,.1);
}
.hf-fill {
  height: 100%; background: var(--gold);
  transition: width .6s cubic-bezier(.4,0,.2,1);
}

/* ── Trust logos bar ─────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.trust-bar .lbl { text-align: center; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 28px; font-weight: 500; }
.logo-circles { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 40px; }
.logo-circle { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.logo-circle-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy-3); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--muted); letter-spacing: .05em;
  font-family: var(--sans);
}
.logo-circle span { font-size: 12px; color: var(--muted-2); letter-spacing: .04em; text-align: center; max-width: 90px; line-height: 1.3; }

/* ── Procédés ────────────────────────────────────────────────────────────── */
.proc { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 60px 0; }
.proc-head { text-align: center; margin-bottom: 44px; }
.proc-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.proc-item { width: 120px; text-align: center; cursor: pointer; transition: transform .35s; }
.proc-item:hover { transform: translateY(-5px); }
.proc-ic { width: 84px; height: 84px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; transition: .35s; }
.proc-item:hover .proc-ic { transform: scale(1.05); }
.proc-ic svg { width: 38px; height: 38px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.proc-ic i { font-size: 36px; color: var(--gold); line-height: 1; }
.proc-ic img { object-fit: contain; }
.proc-item span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ── Stats ───────────────────────────────────────────────────────────────── */
.stats { text-align: center; }
.stats .kicker { margin-bottom: 16px; }
.stats h2 { font-family: var(--script); font-size: clamp(36px,4.4vw,54px); font-weight: 400; margin-bottom: 56px; }
.stats h2 em, .sec-head h2 em, .explain h2 em, .news h2 em { font-family: var(--script); font-style: normal; color: var(--gold); font-size: 1.05em; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat .n { font-family: var(--script); font-size: clamp(50px,6vw,74px); color: var(--gold); line-height: 1; }
.stat .l { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ── Segments ────────────────────────────────────────────────────────────── */
.segs { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.seg {
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px 26px;
  background: var(--navy-card); transition: transform .4s, border-color .4s; cursor: pointer;
}
.seg:hover { transform: translateY(-6px); border-color: rgba(242,183,43,.4); }
.seg .seg-ic { width: 44px; height: 44px; margin-bottom: 18px; stroke: var(--gold); fill: none; stroke-width: 1.4; }
.seg h3 { font-family: var(--script); font-size: 26px; font-weight: 400; margin-bottom: 8px; }
.seg p  { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Section headings ────────────────────────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 58px; }
.sec-head .kicker { margin-bottom: 16px; }
.sec-head h2 { font-family: var(--script); font-weight: 400; font-size: clamp(38px,5vw,60px); line-height: 1.1; }
.sec-head p  { color: var(--muted); margin-top: 14px; max-width: 52ch; margin-inline: auto; font-size: 16px; line-height: 1.65; }

/* ── Best-sellers grid ───────────────────────────────────────────────────── */
.grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.card {
  background: var(--navy-card); border: 1px solid var(--line);
  border-radius: var(--r-card); overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .4s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(242,183,43,.4); }
.card .thumb {
  aspect-ratio: 1/1; position: relative; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 35%,var(--navy-3),var(--navy-2)); overflow: hidden;
}
.card .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.card:hover .thumb img { transform: scale(1.05); }
.card .thumb svg { width: 56%; }
.card .thumb a { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: 4px 10px; border-radius: var(--r-btn);
}
.card .info { padding: 18px 18px 20px; }
.card .info h3 { font-family: var(--script); font-size: 24px; font-weight: 400; margin-bottom: 3px; }
.card .info h3 a { color: var(--cream); }
.card .info .type { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.price { font-family: var(--sans); font-size: 19px; font-weight: 700; color: var(--gold); }
.add {
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
  background: transparent; border: 1px solid rgba(243,238,228,.2); color: var(--cream);
  padding: 8px 16px; border-radius: var(--r-btn); cursor: pointer; transition: .3s; display: inline-block;
}
.add:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.center { text-align: center; margin-top: 50px; }

/* ── Bento grid – Collections ────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto auto; gap: 16px; }
.bento-cell {
  position: relative; border-radius: var(--r-card); overflow: hidden; cursor: pointer;
}
.bento-cell.wide { grid-column: span 2; aspect-ratio: 16/9; }
.bento-cell.tall { aspect-ratio: 4/5; }
.bento-cell.sq   { aspect-ratio: 1/1; }
.bento-cell img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.bento-cell:hover img { transform: scale(1.05); }
.bento-cell .bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,22,48,.82) 0%, rgba(27,22,48,.1) 55%, transparent 100%);
}
.bento-cell .bento-label {
  position: absolute; bottom: 20px; left: 20px;
}
.bento-cell .bento-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 4px;
}
.bento-cell .bento-name {
  font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -.01em;
  font-family: var(--sans);
}
.bento-cell.wide .bento-name { font-size: 22px; }
.bento-cell.sq .bento-label { bottom: 14px; left: 14px; }
.bento-cell.sq .bento-tag { font-size: 9px; }
.bento-cell.sq .bento-name { font-size: 14px; }

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.step-lead h2 { font-family: var(--script); font-size: clamp(34px,4.2vw,52px); font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
.step-lead h2 em { font-style: normal; color: var(--gold); }
.step-lead p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.step-list { display: flex; flex-direction: column; gap: 22px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 14px; font-weight: 700;
}
.step-item:nth-child(3) .step-num,
.step-item:nth-child(4) .step-num {
  background: var(--navy-3); color: var(--muted); border: 1px solid var(--line);
}
.step-item h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.step-item p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Explain (print-on-demand) ───────────────────────────────────────────── */
.explain { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.explain .visual {
  aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--r-card);
  background: radial-gradient(circle at 50% 40%,var(--navy-3),var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.explain .visual svg.big { width: 46%; }
.explain .visual .glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle,rgba(242,183,43,.25),transparent 70%); filter: blur(30px); }
.explain h2 { font-family: var(--script); font-size: clamp(36px,4.6vw,54px); font-weight: 400; line-height: 1.12; margin-bottom: 22px; }
.explain p   { color: var(--muted); line-height: 1.8; font-size: 16px; margin-bottom: 18px; max-width: 480px; }

/* ── B2B section ─────────────────────────────────────────────────────────── */
.b2b { background: var(--navy-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.b2b-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.b2b-text h2 { font-family: var(--script); font-size: clamp(32px,4vw,52px); font-weight: 400; margin-bottom: 16px; line-height: 1.1; }
.b2b-text h2 em { font-style: normal; color: var(--gold); }
.b2b-text p  { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; max-width: 46ch; }
.b2b-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.b2b-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--muted); line-height: 1.5; }
.b2b-list li svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }
.b2b-img { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4/3; }
.b2b-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Galerie masonry ─────────────────────────────────────────────────────── */
.gallery { background: var(--navy-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.gallery h2 { font-family: var(--script); font-size: clamp(32px,4vw,48px); font-weight: 400; margin-bottom: 10px; }
.gallery .sub { color: var(--muted); font-size: 15px; margin-bottom: 40px; }
.gallery-cols { columns: 3; gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: 12px; overflow: hidden; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }

/* ── Techniques ──────────────────────────────────────────────────────────── */
.tech { }
.tech .sec-head { text-align: left; margin-bottom: 44px; }
.tech-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.tech-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.tech-card {
  border-radius: var(--r-card); padding: 32px 30px;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.tc-dtf { background: rgba(242,183,43,.07); border: 1px solid rgba(242,183,43,.15); }
.tc-flo { background: rgba(91,155,255,.07); border: 1px solid rgba(91,155,255,.12); }
.tc-sub { background: rgba(167,139,250,.07); border: 1px solid rgba(167,139,250,.12); }
.tc-las { background: rgba(52,211,153,.07); border: 1px solid rgba(52,211,153,.12); }
.tech-card:hover { transform: translateY(-5px); }
.tc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.tc-emoji { font-size: 28px; line-height: 1; }
.tc-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--r-btn); background: rgba(243,238,228,.08); color: var(--muted);
}
.tech-card h3 { font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.tech-card .tc-sub { font-size: 13px; color: var(--muted); margin-bottom: 14px; font-weight: 400; }
.tech-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list { margin-top: 44px; max-width: 740px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--cream);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: "+"; font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform .3s; }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 22px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── Pricing ─────────────────────────────────────────────────────────────── */
.pricing-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pricing-lead h2 { font-family: var(--script); font-size: clamp(32px,4vw,52px); font-weight: 400; margin-bottom: 14px; line-height: 1.1; }
.pricing-lead h2 em { font-style: normal; color: var(--gold); }
.pricing-lead p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; max-width: 42ch; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.price-card {
  background: var(--navy-card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px 20px; transition: border-color .3s;
}
.price-card:hover { border-color: rgba(242,183,43,.4); }
.price-card .pc-label { font-size: 13px; color: var(--muted); margin-bottom: 10px; font-weight: 400; }
.price-card .pc-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.price-card .pc-num { font-family: var(--sans); font-size: 26px; font-weight: 700; color: var(--cream); }
.price-card .pc-unit { font-size: 12px; color: var(--muted); }
.price-card .pc-tag {
  font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-btn);
  background: rgba(242,183,43,.12); color: var(--gold);
  display: inline-block;
}

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rev { border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; background: var(--navy-card); }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 14px; }
.rev p  { font-family: var(--script); font-size: 22px; font-style: normal; line-height: 1.5; margin-bottom: 18px; }
.rev .who { font-size: 13px; letter-spacing: .06em; color: var(--muted); }
.rev .who b { color: var(--cream); font-weight: 500; font-style: normal; }

/* ── Trust marquee ───────────────────────────────────────────────────────── */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--navy-2); overflow: hidden; }
.trust .lbl { text-align: center; font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); padding: 36px 0 22px; font-weight: 500; }
.logo-track { display: flex; gap: 64px; align-items: center; white-space: nowrap; animation: scroll 26s linear infinite; padding: 0 32px 40px; }
.logo-track span { font-family: var(--script); font-size: 28px; color: var(--muted); opacity: .6; font-weight: 400; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.news { text-align: center; }
.news-card {
  max-width: 620px; margin: 0 auto;
  background: var(--navy-card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 54px 46px; position: relative; overflow: hidden;
}
.news-card .glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(242,183,43,.22),transparent 70%); top: -120px; left: 50%; transform: translateX(-50%); filter: blur(40px); }
.news h2 { font-family: var(--script); font-size: 44px; font-weight: 400; margin-bottom: 12px; position: relative; }
.news p  { color: var(--muted); margin-bottom: 28px; position: relative; }
.news-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; position: relative; }
.news-form input { flex: 1; background: var(--navy); border: 1px solid var(--line); color: var(--cream); padding: 15px 18px; border-radius: var(--r-btn); font-family: var(--sans); font-size: 14px; }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form input::placeholder { color: var(--muted); }

/* ── CTA Final ───────────────────────────────────────────────────────────── */
.final-cta { }
.fc-inner {
  position: relative; overflow: hidden;
  background: var(--navy-3); border: 1px solid var(--line);
  border-radius: 20px; padding: 72px 64px; text-align: center;
}
.fc-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(242,183,43,.14) 0%, transparent 70%); pointer-events: none; }
.fc-inner h2 { font-family: var(--script); font-size: clamp(36px,4.5vw,58px); font-weight: 400; color: var(--cream); line-height: 1.1; margin-bottom: 16px; }
.fc-inner p  { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 52ch; margin: 0 auto 36px; }
.fc-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.fc-contact { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.fc-contact a { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; letter-spacing: .06em; color: var(--muted); transition: color .2s; }
.fc-contact a:hover { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); padding: 68px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.foot-brand .logo { margin-bottom: 16px; }
.foot-brand p  { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 300px; }
.foot-col h5   { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 500; }
.foot-col a    { display: block; color: var(--muted); font-size: 14px; margin-bottom: 11px; transition: color .3s; }
.foot-col a:hover { color: var(--cream); }
.foot-bottom   { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 26px; flex-wrap: wrap; gap: 16px; }
.foot-bottom p { font-size: 12px; color: var(--muted); }
.pay           { display: flex; gap: 8px; }
.pay span      { font-size: 10px; letter-spacing: .08em; border: 1px solid var(--line); padding: 6px 10px; border-radius: 3px; color: var(--muted); }

/* ── Cart drawer ─────────────────────────────────────────────────────────── */
.overlay { position: fixed; inset: 0; background: rgba(10,7,20,.6); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .4s; z-index: 200; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 90vw; background: var(--navy-2); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .45s cubic-bezier(.2,.7,.2,1); z-index: 201; display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-family: var(--script); font-size: 30px; font-weight: 400; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 28px; }
.drawer-foot { padding: 22px 28px; border-top: 1px solid var(--line); }
.totrow { display: flex; justify-content: space-between; margin-bottom: 16px; }
.totrow .t-label { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.totrow .t-val   { font-family: var(--sans); font-size: 24px; font-weight: 700; color: var(--gold); }
.woocommerce-mini-cart__empty-message { color: var(--muted); text-align: center; margin-top: 60px; font-size: 15px; }
.woocommerce-mini-cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.woocommerce-mini-cart-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.woocommerce-mini-cart-item .mini_cart_item a { font-family: var(--script); font-size: 18px; font-weight: 400; color: var(--cream); }
.woocommerce-mini-cart-item .quantity { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── Zoom Modal ──────────────────────────────────────────────────────────── */
.img-zoom-modal { position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: .3s; }
.img-zoom-modal.active { opacity: 1; visibility: visible; }
.img-zoom-modal .img-zoom-bg { position: absolute; inset: 0; background: rgba(10,7,20,.95); backdrop-filter: blur(4px); }
.img-zoom-modal img { max-width: 90vw; max-height: 90vh; object-fit: contain; z-index: 1; animation: zoomIn .3s cubic-bezier(.2,.7,.2,1); }
.img-zoom-modal button { position: absolute; top: 20px; right: 20px; z-index: 2; background: rgba(255,255,255,.1); border: 1px solid rgba(243,238,228,.3); color: var(--cream); font-size: 32px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; }
.img-zoom-modal button:hover { background: rgba(242,183,43,.2); border-color: var(--gold); color: var(--gold); }
@keyframes zoomIn { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ── Menu Burger ─────────────────────────────────────────────────────────── */
.menu-btn { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-btn span { width: 24px; height: 2px; background: var(--cream); border-radius: 1px; transition: .3s; }
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

/* ── Responsive ──────────────────────────────────────────────────────────── */

/* Tablette paysage ────────────────────────────────────────────────── 1080px */
@media (max-width: 1080px) {
  .grid         { grid-template-columns: repeat(3,1fr); gap: 18px; }
  .bento        { grid-template-columns: 1fr 1fr; }
  .bento-cell.wide { grid-column: span 2; }
  .pricing-wrap { grid-template-columns: 1fr; gap: 36px; }
  .b2b-inner    { grid-template-columns: 1fr; gap: 40px; }
  .b2b-img      { max-height: 340px; aspect-ratio: 16/9; }
  .tech-grid    { grid-template-columns: repeat(2,1fr); }
  .stat-grid    { grid-template-columns: 1fr 1fr; }
  .foot-grid    { grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; }
}

/* Tablette portrait ───────────────────────────────────────────────── 900px */
@media (max-width: 900px) {
  section { padding: 60px 0; }
  .wrap   { padding: 0 24px; }

  /* Topbar */
  .topbar { font-size: 11px; padding: 7px 14px; }

  /* La navigation suit le document sur mobile et ne masque plus le contenu
     pendant le défilement. */
  header { position: relative; top: auto; }

  /* Hero */
  .hf-strip   { left: 16px; right: 16px; bottom: 90px; flex-wrap: nowrap;
                overflow-x: auto; scrollbar-width: none; }
  .hf-strip::-webkit-scrollbar { display: none; }
  .hf-card    { flex: 0 0 100px; }
  .hf-wrap    { min-height: auto; padding-top: 100px; padding-bottom: 220px; }
  .hf-left    { max-width: 100%; }
  .hf-title   { font-size: clamp(36px,8vw,54px); }
  .hf-counter { font-size: 36px; }
  .micro      { gap: 12px 18px; }

  /* Navigation */
  .menu-btn   { display: flex; }

  /* ── loot-menu mobile ─────────────────────────────────────────────────── */
  .loot-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0; background: #0c0820;
    border-bottom: 1px solid rgba(197,151,45,.2);
    max-height: 0; overflow: hidden; opacity: 0;
    pointer-events: none;
    transition: max-height .35s ease, opacity .3s ease;
    z-index: 9999;
  }
  .loot-menu.open { max-height: var(--menu-open-max-height, calc(100dvh - 76px)); overflow-y: auto; opacity: 1; pointer-events: all; }
  .loot-menu li { border-bottom: 1px solid rgba(255,255,255,.06); }
  .loot-menu > li > a { display: flex; padding: 16px 24px; font-size: 14px; }
  .loot-menu > li > a::after { display: none; }

  /* Dropdown accordéon mobile */
  .loot-dropdown { flex-wrap: wrap; }
  .loot-dropdown > a { flex: 1; }
  .loot-dropdown-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 52px; border: none; background: none;
    color: rgba(255,255,255,.4); font-size: 20px;
    cursor: pointer; padding: 0; flex-shrink: 0;
    transition: color .2s, transform .25s;
  }
  .loot-dropdown.open .loot-dropdown-toggle { color: #d9a82f; transform: rotate(180deg); }
  .loot-dropdown-panel {
    position: static !important; transform: none !important;
    min-width: 0 !important; width: 100%;
    max-height: 0; overflow: hidden;
    opacity: 1 !important; visibility: visible !important; pointer-events: none;
    border: none !important; box-shadow: none !important;
    background: transparent !important; padding: 0 !important;
    transition: max-height .3s ease;
  }
  .loot-dropdown.open .loot-dropdown-panel { max-height: 400px !important; pointer-events: auto; }
  .loot-panel-card {
    border-radius: 0 !important; box-shadow: none !important;
    background: rgba(0,0,0,.3) !important;
    border: none !important; border-top: 1px solid rgba(217,168,47,.12) !important;
    padding: 6px 0 !important;
  }
  .loot-panel-card::before { display: none !important; }
  .loot-dropdown-panel a { border-radius: 0; padding: 13px 20px 13px 36px; transform: none; }
  .loot-dropdown-panel a:hover { transform: none; }
  .loot-dropdown-panel span { font-size: 13px; }
  .loot-dropdown-panel small { font-size: 11px; }

  /* Grilles */
  .grid        { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .step-layout { grid-template-columns: 1fr; gap: 36px; }
  .explain     { grid-template-columns: 1fr; gap: 40px; }
  .tech-layout { grid-template-columns: 1fr; gap: 40px; }
  .segs        { grid-template-columns: 1fr 1fr; }
  .rev-grid    { grid-template-columns: 1fr 1fr; }
  .foot-grid   { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gallery-cols { columns: 2; }
}

/* Mobile ──────────────────────────────────────────────────────────── 640px */
@media (max-width: 640px) {
  section { padding: 48px 0; }
  .wrap   { padding: 0 16px; }
  .topbar { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 11px; }

  /* Logo, bouton menu et panier restent sur une seule ligne à 320 px. */
  .wrap.nav {
    height: 64px;
    gap: 6px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .logo {
    min-width: 0;
    font-size: clamp(25px, 8.5vw, 30px);
  }
  .menu-btn {
    flex: 0 0 auto;
    margin-left: auto;
    padding: 7px;
  }
  .menu-btn span { width: 22px; }
  .nav-actions {
    flex: 0 0 auto;
    gap: 0;
  }
  .nav-actions .icon-btn:not(.cart-btn) { display: none; }
  .loot-menu .loot-mobile-utility { display: block; }
  .nav-actions .icon-btn,
  .nav-actions .cart-btn {
    width: 36px;
    height: 36px;
  }
  .loot-menu.open { max-height: calc(100dvh - 64px); }

  /* Hero : on masque le strip, plus propre sur petit écran */
  .hf-strip        { display: none; }
  .hf-wrap         { padding-top: 90px; padding-bottom: 110px; }
  .hf-nav          { bottom: 24px; }
  .hf-progress-bar { display: none; }
  /* Sur mobile, le cadrage centré coupe la partie droite du visuel : on la décale */
  .hf-bg, .hf-bg-inner { background-position: 65% center !important; }
  .micro           { gap: 8px 14px; }
  .micro div       { font-size: 11px; }

  /* Grilles */
  .grid        { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bento       { grid-template-columns: 1fr; }
  .bento-cell.wide { grid-column: span 1; aspect-ratio: 16/9; }
  .segs        { grid-template-columns: 1fr; }
  .rev-grid    { grid-template-columns: 1fr; }
  .tech-grid   { grid-template-columns: 1fr; }
  .price-grid  { grid-template-columns: 1fr 1fr; }
  .foot-grid   { grid-template-columns: 1fr; gap: 24px; }
  .stat-grid   { gap: 20px; }
  .gallery-cols { columns: 1; }

  /* Cards produit */
  .card .info    { padding: 12px 12px 14px; }
  .card .info h3 { font-size: 20px; }
  .card .foot    { margin-top: 10px; }
  .price         { font-size: 16px; }
  .add           { padding: 7px 12px; font-size: 10px; }

  /* Sections */
  .sec-head      { margin-bottom: 36px; }
  .proc          { padding: 40px 0; }
  .proc-row      { gap: 12px; }
  .proc-item     { width: 100px; }
  .proc-ic       { width: 72px; height: 72px; }
  .step-list     { gap: 16px; }
  .step-num      { width: 34px; height: 34px; font-size: 13px; flex-shrink: 0; }
  .b2b-list      { gap: 10px; }
  .faq-list      { margin-top: 24px; }
  .faq-q         { padding: 18px 0; font-size: 14px; }

  /* Trust */
  .logo-circles  { gap: 16px 20px; }
  .trust-bar     { padding: 40px 0; }

  /* Newsletter */
  .news-card     { padding: 36px 16px; }
  .news-form     { flex-direction: column; }

  /* CTA Final */
  .fc-inner      { padding: 40px 16px; border-radius: 12px; }
  .fc-btns       { flex-direction: column; align-items: stretch; }
  .fc-btns .btn  { text-align: center; justify-content: center; }

  /* Footer */
  .foot-bottom   { flex-direction: column; align-items: flex-start; gap: 14px; }
  .pay           { flex-wrap: wrap; gap: 6px; }
}

/* ── Pages légales ───────────────────────────────────────────────────────── */
.legal-page { padding: 60px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.legal-toc { position: sticky; top: 100px; background: var(--navy-2); border: 1px solid var(--line); border-radius: 10px; padding: 20px; }
.legal-toc-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin: 0 0 12px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.legal-toc a { font-size: 13px; color: var(--muted); text-decoration: none; line-height: 1.4; display: block; padding: 4px 0; transition: color .2s; border-left: 2px solid transparent; padding-left: 10px; }
.legal-toc a:hover { color: var(--cream); border-left-color: var(--gold); }
.legal-header { margin-bottom: 40px; }
.legal-header .kicker { margin-bottom: 8px; }
.legal-header h1 { font-family: var(--script); font-size: clamp(36px, 5vw, 56px); font-weight: 400; line-height: 1.1; margin: 0 0 10px; }
.legal-date { font-size: 12px; color: var(--muted); margin: 0; }
.legal-content h2 { font-family: var(--sans); font-size: 18px; font-weight: 600; color: var(--cream); margin: 40px 0 14px; padding-top: 40px; border-top: 1px solid var(--line); }
.legal-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal-content h3 { font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--cream); margin: 24px 0 10px; }
.legal-content p { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0 0 14px; }
.legal-content ul, .legal-content ol { color: var(--muted); font-size: 15px; line-height: 1.8; margin: 0 0 16px; padding-left: 22px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--gold); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 13px; }
.legal-content th { background: var(--navy-3); color: var(--cream); font-weight: 600; padding: 10px 12px; text-align: left; border: 1px solid var(--line); }
.legal-content td { padding: 9px 12px; border: 1px solid var(--line); color: var(--muted); vertical-align: top; }
.legal-content tr:nth-child(even) td { background: rgba(255,255,255,.02); }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}
@media (max-width: 640px) {
  .legal-page { padding: 40px 0 60px; }
  .legal-content table { display: block; overflow-x: auto; }
}

/* Petit mobile ──────────────────────────────────────────────────── 480px */
@media (max-width: 480px) {
  .hf-title  { font-size: clamp(30px,9vw,44px); }
  .hf-sub    { font-size: 14px; }
  .micro     { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .price-grid { grid-template-columns: 1fr; }
  .stat-grid { gap: 14px; }
  .stat .n   { font-size: clamp(40px,11vw,56px); }
  .grid      { gap: 8px; }
  .card .info h3 { font-size: 18px; }
  .news-card { padding: 28px 14px; }
  .fc-inner  { padding: 32px 14px; }
  .btn       { padding: 13px 18px; font-size: 13px; }
  .hf-cta    { gap: 10px; }
}

/* Cookie consent: compact, brand-aligned and non-blocking where possible. */
.cky-consent-container {
  max-width: 420px !important;
}
.cky-consent-bar {
  border-radius: 12px !important;
  box-shadow: 0 18px 55px rgba(10, 7, 25, .25) !important;
}
.cky-notice {
  padding: 20px !important;
}
.cky-title {
  margin: 0 0 8px !important;
  font-family: var(--sans) !important;
}
.cky-notice-des {
  line-height: 1.55 !important;
}
.cky-notice-btn-wrapper {
  gap: 8px !important;
}
.cky-notice-btn-wrapper .cky-btn {
  min-height: 42px !important;
  margin: 0 !important;
  border-radius: var(--r-btn) !important;
}
@media (max-width: 576px) {
  .cky-consent-container {
    width: calc(100% - 20px) !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
  .cky-notice {
    padding: 16px !important;
  }
  .cky-notice-des {
    max-height: 92px;
    overflow: auto;
  }
  .cky-notice-btn-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }
  .cky-notice-btn-wrapper .cky-btn-accept {
    grid-column: 1 / -1;
    order: -1;
  }
}
/* ── Journal éditorial ─────────────────────────────────────────────────── */
.lmp-journal,
.lmp-single {
  min-height: 65vh;
  background: var(--navy);
  color: var(--cream);
}
.lmp-journal-hero {
  padding: clamp(64px, 9vw, 112px) 0 56px;
  border-bottom: 1px solid rgba(242,183,43,.16);
  background:
    radial-gradient(circle at 82% 18%, rgba(242,183,43,.09), transparent 28%),
    var(--navy);
}
.lmp-journal-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.lmp-journal-hero h1,
.lmp-single-header h1 {
  max-width: 850px;
  margin: 0;
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 7vw, 76px);
  line-height: .98;
  letter-spacing: -.025em;
}
.lmp-journal-hero > .wrap > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.lmp-journal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding-top: 56px;
  padding-bottom: 96px;
}
.lmp-article-card {
  overflow: hidden;
  border: 1px solid rgba(243,238,228,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  transition: transform .25s ease, border-color .25s ease;
}
.lmp-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,183,43,.42);
}
.lmp-article-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #101f33;
}
.lmp-article-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.lmp-article-card:hover .lmp-article-card-media img { transform: scale(1.025); }
.lmp-article-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: linear-gradient(135deg, #101f33, #172c46);
  color: rgba(242,183,43,.55);
  font-size: 56px;
}
.lmp-article-card-body { padding: 28px; }
.lmp-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.lmp-article-card h2 { margin: 14px 0 10px; font-size: clamp(25px, 3vw, 34px); line-height: 1.12; }
.lmp-article-card h2 a { color: var(--cream); text-decoration: none; }
.lmp-article-card-body > p { margin: 0 0 22px; color: var(--muted); line-height: 1.65; }
.lmp-article-link { display: inline-flex; gap: 8px; align-items: center; color: var(--gold); font-weight: 600; text-decoration: none; }
.lmp-article-link i { transition: transform .2s ease; }
.lmp-article-link:hover i { transform: translateX(4px); }
.lmp-journal-pagination { grid-column: 1 / -1; margin-top: 24px; }
.lmp-journal-pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.lmp-journal-pagination .page-numbers { padding: 9px 14px; border: 1px solid rgba(243,238,228,.16); border-radius: 7px; color: var(--cream); text-decoration: none; }
.lmp-journal-pagination .current { border-color: var(--gold); background: var(--gold); color: var(--navy); }
.lmp-journal-empty { grid-column: 1 / -1; padding: 72px 24px; text-align: center; }
.lmp-journal-empty > i { color: var(--gold); font-size: 46px; }
.lmp-journal-empty h2 { margin: 16px 0 8px; font-size: 34px; }
.lmp-journal-empty p { margin: 0 0 26px; color: var(--muted); }

.lmp-single { padding: clamp(64px, 8vw, 104px) 0 96px; }
.lmp-single-header { max-width: 920px; }
.lmp-single-back { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 46px; color: var(--muted); text-decoration: none; }
.lmp-single-back:hover { color: var(--gold); }
.lmp-single-header .lmp-article-meta { margin-top: 24px; }
.lmp-single-cover { overflow: hidden; margin-top: 48px; border-radius: 16px; aspect-ratio: 16 / 8; }
.lmp-single-cover img { width: 100%; height: 100%; object-fit: cover; }
.lmp-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(240px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
  padding-top: 64px;
}
.lmp-single-content { font-size: 17px; line-height: 1.8; }
.lmp-single-content > * { max-width: 68ch; }
.lmp-single-content h2 { margin: 2em 0 .65em; color: var(--cream); font-size: 32px; line-height: 1.18; }
.lmp-single-content h3 { margin: 1.75em 0 .55em; color: var(--cream); font-size: 24px; }
.lmp-single-content p, .lmp-single-content li { color: #c7c9cc; }
.lmp-single-content a { color: var(--gold); }
.lmp-single-content img { margin: 28px 0; border-radius: 12px; }
.lmp-single-content blockquote { margin: 32px 0; padding: 8px 0 8px 24px; border-left: 3px solid var(--gold); color: var(--cream); font-size: 22px; }
.lmp-single-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid rgba(242,183,43,.24);
  border-radius: 14px;
  background: rgba(242,183,43,.055);
}
.lmp-single-aside-label { margin: 0 0 10px; color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.lmp-single-aside h2 { margin: 0 0 10px; color: var(--cream); font-size: 28px; }
.lmp-single-aside > p:not(.lmp-single-aside-label) { margin: 0 0 22px; color: var(--muted); line-height: 1.6; }
.lmp-post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 72px; padding-top: 28px; border-top: 1px solid rgba(243,238,228,.12); }
.lmp-post-navigation > div:last-child { text-align: right; }
.lmp-post-navigation span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.lmp-post-navigation a { color: var(--cream); font-weight: 600; text-decoration: none; }
.lmp-post-navigation a:hover { color: var(--gold); }
@media (max-width: 760px) {
  .lmp-journal-grid, .lmp-single-layout { grid-template-columns: 1fr; }
  .lmp-journal-grid { gap: 18px; padding-top: 32px; padding-bottom: 64px; }
  .lmp-single { padding-top: 46px; }
  .lmp-single-back { margin-bottom: 30px; }
  .lmp-single-layout { padding-top: 40px; }
  .lmp-single-aside { position: static; }
}
/* ==========================================================================
   Collections France
   ========================================================================== */
.lmp-collections-index,
.lmp-collection-page,
.lmp-style-archive {
  background: var(--navy);
  color: var(--cream);
}

.lmp-collections-hero,
.lmp-collection-cover {
  padding: clamp(56px, 8vw, 104px) 0;
  background: var(--navy, #10233f);
  color: #f8f4ea;
}

.lmp-collections-hero-grid,
.lmp-collection-cover-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.lmp-collections-hero h1,
.lmp-collection-cover h1,
.lmp-style-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.08;
}

.lmp-collections-hero p,
.lmp-collection-lead,
.lmp-style-hero p {
  max-width: 58ch;
  margin: 0 0 28px;
  color: rgba(248, 244, 234, .78);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.65;
}

.lmp-collections-hero figure,
.lmp-collection-cover figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(3, 15, 32, .34);
}

.lmp-collections-hero figure {
  transform: rotate(1.2deg);
}

.lmp-collections-hero img,
.lmp-collection-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lmp-collection-kicker {
  margin: 0 !important;
  color: var(--gold, #d8ad58) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lmp-collection-directory,
.lmp-collection-products,
.lmp-style-section {
  padding: clamp(64px, 9vw, 116px) 0;
}

.lmp-section-intro {
  max-width: 720px;
  margin: 0 0 42px;
}

.lmp-section-intro h2,
.lmp-style-layout h2,
.lmp-personalisation-cta h2 {
  margin: 0 0 12px;
  color: var(--cream);
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
}

.lmp-section-intro p,
.lmp-style-layout > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.lmp-collection-mosaic {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-auto-rows: minmax(280px, 34vw);
  gap: 22px;
}

.lmp-collection-tile,
.lmp-home-collection {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  isolation: isolate;
}

.lmp-collection-tile:nth-child(3n + 2),
.lmp-collection-tile:nth-child(3n + 3) {
  min-height: 320px;
}

.lmp-collection-tile img,
.lmp-home-collection img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.lmp-collection-tile::after,
.lmp-home-collection::after {
  content: "";
  position: absolute;
  inset: 22% 0 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent, rgba(5, 18, 35, .88));
}

.lmp-collection-tile:hover img,
.lmp-home-collection:hover img {
  transform: scale(1.035);
}

.lmp-collection-tile-copy,
.lmp-home-collection > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: clamp(22px, 3vw, 36px);
}

.lmp-collection-tile-copy strong,
.lmp-home-collection strong {
  font-family: var(--script);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

.lmp-collection-tile-copy span,
.lmp-home-collection small {
  max-width: 52ch;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.5;
}

.lmp-style-section {
  background: var(--navy-2);
}

.lmp-style-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(36px, 8vw, 110px);
}

.lmp-style-list {
  display: grid;
}

.lmp-style-list a {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
}

.lmp-style-list a:first-child {
  padding-top: 0;
}

.lmp-style-list strong {
  color: var(--gold);
  font-family: var(--script);
  font-weight: 400;
  font-size: 34px;
}

.lmp-style-list span {
  align-self: center;
  color: var(--muted);
  line-height: 1.55;
}

.lmp-back-link {
  display: inline-block;
  color: var(--gold, #d8ad58);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.lmp-back-link::before {
  content: "←";
  margin-right: 8px;
}

.lmp-collection-products .products {
  margin-top: 36px !important;
}

.lmp-personalisation-cta {
  padding: 52px 0;
  background: var(--navy-3);
}

.lmp-personalisation-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lmp-personalisation-cta h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.lmp-personalisation-cta p {
  margin: 0;
  color: var(--muted);
}

.lmp-style-hero {
  padding: 72px 0 64px;
  background: var(--navy, #10233f);
  color: #f8f4ea;
}

.lmp-home-collection-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  grid-template-rows: repeat(2, minmax(290px, 34vw));
  gap: 18px;
  margin-bottom: 36px;
}

.lmp-home-collection:first-child,
.lmp-home-collection:nth-child(6) {
  grid-row: span 2;
}

.lmp-home-collection:nth-child(6) {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.lmp-home-collection strong {
  font-size: clamp(23px, 2.4vw, 34px);
}

.loot-panel-collections {
  min-width: 310px;
}

@media (max-width: 1120px) {
  .loot-menu {
    gap: 16px;
  }
  .lmp-home-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 330px);
  }
  .lmp-home-collection:first-child,
  .lmp-home-collection:nth-child(6) {
    grid-row: auto;
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  .lmp-collections-hero,
  .lmp-collection-cover {
    padding: 48px 0 56px;
  }
  .lmp-collections-hero-grid,
  .lmp-collection-cover-grid,
  .lmp-style-layout {
    grid-template-columns: 1fr;
  }
  .lmp-collections-hero-grid,
  .lmp-collection-cover-grid {
    gap: 34px;
  }
  .lmp-collections-hero figure {
    transform: none;
  }
  .lmp-collection-mosaic,
  .lmp-home-collection-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .lmp-collection-tile,
  .lmp-home-collection,
  .lmp-collection-tile:nth-child(n) {
    min-height: 330px;
  }
  .lmp-style-list a {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .lmp-personalisation-cta .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmp-collection-tile img,
  .lmp-home-collection img {
    transition: none;
  }
}
