/* ═══════════════════════════════════════════════════════════
   LJOS — styles communs
   ═══════════════════════════════════════════════════════════ */

/* ─── BANDEAU PROMO EN HAUT (toutes pages) ─────────────── */
.promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(90deg, #c9a578 0%, #d4b687 50%, #c9a578 100%);
  color: #2a241d;
  padding: 10px 50px 10px 20px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  z-index: 200; /* Au-dessus de tout (nav = 100) */
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* Quand le bandeau est visible, décaler le nav vers le bas */
body:has(.promo-banner:not(.hidden)) nav {
  top: 44px; /* Hauteur du bandeau desktop */
}
/* Fallback pour navigateurs sans :has() : le body reçoit une classe via JS */
body.promo-banner-active nav {
  top: 44px;
}
/* Padding-top du body pour compenser tout ça (le hero décale) */
body.promo-banner-active {
  padding-top: 44px;
}
.promo-banner-content {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.5;
}
.promo-banner-label {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #2a241d;
  opacity: 0.75;
}
.promo-banner-code {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  padding: 3px 12px;
  background: #2a241d;
  color: #fbf7f0;
  border-radius: 2px;
}
.promo-banner-text em {
  font-style: italic;
}
.promo-banner-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #2a241d;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 10px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
  line-height: 1;
}
.promo-banner-close:hover {
  opacity: 1;
}
.promo-banner.hidden {
  display: none;
}
/* Mode sombre : bandeau reste doré (identité forte) */
body.dark-mode .promo-banner {
  background: linear-gradient(90deg, #b89562 0%, #c9a578 50%, #b89562 100%);
}
/* Responsive mobile */
@media (max-width: 700px) {
  .promo-banner {
    padding: 8px 38px 8px 12px;
    font-size: 0.8rem;
  }
  .promo-banner-content {
    gap: 8px;
  }
  .promo-banner-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }
  .promo-banner-code {
    font-size: 0.75rem;
    padding: 2px 10px;
  }
  .promo-banner-close {
    right: 10px;
    font-size: 1rem;
    padding: 4px 8px;
  }
  /* Décalage mobile plus petit car bandeau plus fin */
  body.promo-banner-active nav {
    top: 38px;
  }
  body.promo-banner-active {
    padding-top: 38px;
  }
}

:root {
  --cream: #f5efe6;
  --cream-deep: #ece3d3;
  --sand: #e6d9c2;
  --desert: #c9a578;
  --desert-deep: #a8814f;
  --bone: #fbf7f0;
  --ink: #2a241d;
  --ink-soft: #5b4f42;
  --shadow: rgba(60, 45, 25, 0.08);
}

body.dark-mode {
  --cream: #1f1a14;
  --cream-deep: #15110c;
  --sand: #3a3128;
  --desert: #d4b687;
  --desert-deep: #e6c89a;
  --bone: #12100c;
  --ink: #f5ecd9;
  --ink-soft: #cfc2ad;
  --shadow: rgba(0, 0, 0, 0.4);
}

body.dark-mode::before {
  opacity: 0.12;
  mix-blend-mode: screen;
}

body.dark-mode .logo img {
  filter: invert(1) brightness(1.15);
}

body.dark-mode .ljos-transition-logo img {
  filter: none;
}

/* Améliorations spécifiques de lisibilité en mode sombre */
body.dark-mode strong { color: var(--ink); }
body.dark-mode em { color: var(--desert-deep); }
body.dark-mode a { color: var(--desert-deep); }
body.dark-mode .lampe-price .old { color: var(--ink-soft); opacity: 0.85; }
body.dark-mode .testimonial-text { color: var(--ink); }
body.dark-mode .testimonial-name { color: var(--ink); }
body.dark-mode .testimonial-meta { color: var(--ink-soft); }
body.dark-mode .product-faq-q { color: var(--ink); }
body.dark-mode .product-faq-a { color: var(--ink-soft); }
body.dark-mode .product-faq-a p { color: var(--ink-soft); }
body.dark-mode .reassurance-text strong { color: var(--ink); }
body.dark-mode .reassurance-text span { color: var(--ink-soft); }
body.dark-mode .footer-brand p,
body.dark-mode .footer-col ul a { color: var(--ink-soft); }
body.dark-mode .footer-col ul a:hover { color: var(--ink); }

/* Le toggle mode */
.theme-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid rgba(42, 36, 29, 0.15);
  color: var(--ink);
  cursor: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 24px var(--shadow);
}

.theme-toggle:hover {
  transform: scale(1.08);
  border-color: var(--desert);
}

body.dark-mode .theme-toggle {
  background: var(--cream);
  border-color: rgba(240, 232, 216, 0.2);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

body.dark-mode .theme-toggle svg {
  transform: rotate(180deg);
}

.theme-toggle .sun { display: block; }
.theme-toggle .moon { display: none; }
body.dark-mode .theme-toggle .sun { display: none; }
body.dark-mode .theme-toggle .moon { display: block; }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  cursor: auto;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

/* grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── CURSEUR CUSTOM ────────────────────────────────────── */
.ljos-cursor-dot,
.ljos-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}

.ljos-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--bone);
  margin-left: -3px;
  margin-top: -3px;
  transition: transform 0.05s linear, width 0.3s, height 0.3s, opacity 0.3s;
}

.ljos-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--bone);
  margin-left: -18px;
  margin-top: -18px;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s;
}

.ljos-cursor-ring.hover {
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  border-color: var(--desert);
}

.ljos-cursor-ring.view {
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  border-color: var(--bone);
}

.ljos-cursor-ring.view::before {
  content: "Voir";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
}

.ljos-cursor-dot.hover { opacity: 0; }

@media (pointer: coarse) {
  .ljos-cursor-dot, .ljos-cursor-ring { display: none; }
}

/* ─── TRANSITION DE PAGE ────────────────────────────────── */
.ljos-transition {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.ljos-transition.exit {
  transform: translateY(-100%);
}

.ljos-transition.enter {
  transform: translateY(0);
}

.ljos-transition.hidden { display: none; }

.ljos-transition-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ljos-transition-logo img {
  height: 220px;
  width: auto;
  display: block;
  opacity: 0;
  position: relative;
  z-index: 2;
  filter: invert(1) brightness(1.2);
  animation: logoFade 1.4s ease forwards;
}

.ljos-transition-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 220, 165, 0.95) 0%, rgba(201, 165, 120, 0.5) 30%, transparent 70%);
  opacity: 0;
  z-index: 1;
  animation: haloPulse 1.6s ease forwards;
  pointer-events: none;
  filter: blur(14px);
}

@keyframes logoFade {
  0%   { opacity: 0; transform: translateY(8px); }
  40%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes haloPulse {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
  35%  { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
  65%  { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
}

/* ─── NAVIGATION ────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 4px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(251, 247, 240, 0.7);
  border-bottom: 1px solid rgba(42, 36, 29, 0.06);
}

.logo {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.4em;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
}

.logo img {
  height: 192px;
  width: auto;
  display: block;
  transition: opacity 0.4s ease;
}

.logo:hover img {
  opacity: 0.7;
}

.logo::after {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-sep {
  width: 1px;
  height: 14px;
  background: rgba(42, 36, 29, 0.18);
  flex-shrink: 0;
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--desert);
  transition: all 0.4s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-cart {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--ink);
  background: none;
  border: none;
  cursor: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cart:hover { color: var(--desert-deep); }

/* Quand le panier est vide : masquer le compteur "00" pour rester sobre */
.nav-cart:not(.has-items) [data-cart-count],
.nav-cart:not(.has-items) span:first-of-type {
  /* on garde la balise mais on cache visuellement les détails parasites */
}

.nav-cart .cart-empty-label { display: none; }
.nav-cart:not(.has-items) .cart-full-label { display: none; }
.nav-cart.has-items .cart-empty-label { display: none; }
.nav-cart:not(.has-items) .cart-empty-label { display: inline; }

/* ─── DRAWER PANIER ─────────────────────────────────────── */
.ljos-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--bone);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(42, 36, 29, 0.08);
  box-shadow: -20px 0 60px rgba(42, 36, 29, 0.1);
}

.ljos-cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 36px;
  border-bottom: 1px solid rgba(42, 36, 29, 0.08);
}

.cart-header h4 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--ink);
}

.cart-close {
  background: none;
  border: none;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: auto;
}

.cart-close:hover { color: var(--ink); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 36px;
}

.cart-empty {
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  padding: 60px 20px;
  font-size: 1.05rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(42, 36, 29, 0.06);
}

.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: var(--cream);
}

.cart-item-info h5 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 4px;
}

.cart-item-info p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 12px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
}

.cart-item-qty button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink-soft);
  background: none;
  cursor: auto;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
}

.cart-item-qty button:hover { background: var(--ink); color: var(--bone); }

.cart-item-price {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.cart-item-remove {
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--ink-soft);
  cursor: auto;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}

.cart-item-remove:hover { color: var(--desert-deep); }

.cart-footer {
  padding: 28px 36px 36px;
  border-top: 1px solid rgba(42, 36, 29, 0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}

.cart-total-label {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cart-total-value {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--ink);
}

.cart-checkout {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: var(--bone);
  text-align: center;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.4s ease;
  cursor: auto;
}

.cart-checkout:hover {
  background: transparent;
  color: var(--ink);
}

/* ─── BOUTONS ───────────────────────────────────────────── */
.btn {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 18px 38px;
  text-decoration: none;
  transition: all 0.4s ease;
  cursor: auto;
  border: none;
  background: none;
  display: inline-block;
}

.btn-primary {
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
}

.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

.btn-text {
  color: var(--ink);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
}

.btn-text:hover {
  color: var(--desert-deep);
  border-color: var(--desert-deep);
}

/* ─── SCROLL REVEALS ────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].revealed { transform: scale(1); }

[data-reveal-delay="1"] { transition-delay: 0.15s; }
[data-reveal-delay="2"] { transition-delay: 0.3s; }
[data-reveal-delay="3"] { transition-delay: 0.45s; }

/* ─── PAGE HEADER ───────────────────────────────────────── */
.page-header {
  padding: 200px 60px 100px;
  text-align: center;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vmin;
  height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 120, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-mark {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--desert-deep);
  margin-bottom: 36px;
  position: relative;
}

.page-title {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--ink);
  position: relative;
  margin-bottom: 32px;
}

.page-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--desert-deep);
  letter-spacing: 0;
}

.page-subtitle {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
  position: relative;
}

/* ─── PAGES LÉGALES ─────────────────────────────────────── */
.legal-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px 120px;
}

.legal-page h2 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 56px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--desert);
}

.legal-page h2:first-of-type { margin-top: 0; }

.legal-page h3 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--desert-deep);
  margin: 32px 0 14px;
}

.legal-page p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 300;
}

.legal-page p strong {
  font-weight: 500;
  color: var(--ink);
}

.legal-page ul, .legal-page ol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
  margin: 14px 0 14px 24px;
  font-weight: 300;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--desert-deep);
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 3px;
}

.legal-page a:hover {
  color: var(--ink);
}

.legal-meta {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 48px;
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(42, 36, 29, 0.08);
}

.legal-todo {
  display: inline-block;
  background: rgba(232, 145, 72, 0.15);
  color: #b86d20;
  padding: 2px 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  border-radius: 2px;
}

/* ─── BANDEAU COOKIES ───────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 540px;
  z-index: 95;
  background: var(--bone);
  border: 1px solid rgba(42, 36, 29, 0.1);
  box-shadow: 0 20px 60px rgba(42, 36, 29, 0.18);
  padding: 28px 32px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

body.dark-mode .cookie-banner {
  background: var(--cream);
  border-color: rgba(240, 232, 216, 0.15);
}

.cookie-banner h6 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-banner h6::before {
  content: "🍪";
  font-size: 1.1rem;
}

.cookie-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.cookie-banner p a {
  color: var(--desert-deep);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  background: none;
  border: 1px solid var(--ink-soft);
  color: var(--ink);
  padding: 12px 22px;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: auto;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 130px;
}

.cookie-actions button:hover {
  border-color: var(--ink);
}

.cookie-actions .cookie-accept {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.cookie-actions .cookie-accept:hover {
  background: transparent;
  color: var(--ink);
}

@media (max-width: 600px) {
  .cookie-banner { padding: 22px 24px; left: 16px; right: 16px; bottom: 16px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions button { width: 100%; }
}

/* ─── LIGHTBOX / ZOOM PHOTO ─────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 8, 0.92);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: lbZoom 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lbZoom {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 36px;
  background: none;
  border: 1px solid rgba(251, 247, 240, 0.4);
  color: var(--bone);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: auto;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: var(--bone);
  color: var(--ink);
}

.lightbox-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, 0.5);
}

/* indique qu'on peut cliquer pour zoomer */
.zoomable { cursor: zoom-in; }
@media (pointer: coarse) { .zoomable { cursor: pointer; } }

/* ─── FAQ COMPACTE PRODUIT ──────────────────────────────── */
.product-faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}

.product-faq-title {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin-bottom: 8px;
}

.product-faq-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  text-align: center;
  margin-bottom: 48px;
}

.product-faq-item {
  border-bottom: 1px solid rgba(42, 36, 29, 0.1);
}

.product-faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  transition: color 0.3s;
}

.product-faq-q:hover { color: var(--desert-deep); }

.product-faq-q .icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--desert-deep);
  transition: transform 0.4s ease;
}

.product-faq-item.open .product-faq-q .icon { transform: rotate(45deg); }

.product-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.product-faq-item.open .product-faq-a {
  max-height: 240px;
  padding: 0 0 24px;
}

/* ─── CROSS-SELL ────────────────────────────────────────── */
.cross-sell {
  padding: 80px 60px;
  background: var(--cream);
  text-align: center;
}

.cross-sell-mark {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--desert-deep);
  margin-bottom: 20px;
}

.cross-sell h3 {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.cross-sell h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--desert-deep);
}

.cross-sell-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  background: var(--bone);
  border: 1px solid rgba(42, 36, 29, 0.1);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.4s ease;
}

.cross-sell-link:hover {
  border-color: var(--desert);
  transform: translateY(-2px);
}

.cross-sell-link img {
  width: 60px;
  height: 75px;
  object-fit: cover;
}

.cross-sell-info {
  text-align: left;
}

.cross-sell-info strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.cross-sell-info span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cross-sell-arrow {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--desert-deep);
}

/* ─── BARRE DE PROGRESSION CHECKOUT ─────────────────────── */
.checkout-progress {
  max-width: 720px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

.checkout-progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50px;
  right: 50px;
  height: 1px;
  background: rgba(42, 36, 29, 0.18);
  z-index: 0;
}

.cp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cp-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bone);
  border: 1px solid rgba(42, 36, 29, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.cp-step.active .cp-step-dot {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}

.cp-step.done .cp-step-dot {
  background: var(--desert);
  color: var(--bone);
  border-color: var(--desert);
}

.cp-step-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.cp-step.active .cp-step-label,
.cp-step.done .cp-step-label {
  color: var(--ink);
}

@media (max-width: 700px) {
  .checkout-progress { padding: 0; }
  .cp-step-label { font-size: 0.55rem; letter-spacing: 0.15em; }
}

/* badges paiement sécurisé */
.checkout-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 36, 29, 0.08);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--desert-deep);
}

/* ─── TÉMOIGNAGES ───────────────────────────────────────── */
.testimonials {
  padding: 140px 60px;
  background: var(--bone);
  text-align: center;
}

.testimonials-mark {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--desert-deep);
  margin-bottom: 28px;
}

.testimonials-title {
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 80px;
  letter-spacing: 0.02em;
}

.testimonials-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--desert-deep);
}

.testimonials-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  background: var(--cream);
  padding: 44px 36px;
  text-align: left;
  position: relative;
  border: 1px solid rgba(42, 36, 29, 0.06);
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--desert);
}

.testimonial-quote-mark {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--desert);
  margin-bottom: 16px;
  height: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--desert-deep);
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 28px;
}

.testimonial-text em {
  font-style: normal;
  color: var(--desert-deep);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 36, 29, 0.1);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.4;
}

.testimonial-meta {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 300;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonial { padding: 32px 28px; }
}

/* ─── BANDEAU DE RÉASSURANCE ────────────────────────────── */
.reassurance {
  background: var(--cream);
  border-top: 1px solid rgba(42, 36, 29, 0.06);
  border-bottom: 1px solid rgba(42, 36, 29, 0.06);
  padding: 36px 60px;
}

.reassurance-grid {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
  justify-content: center;
}

.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 8px;
  justify-content: center;
}

.reassurance-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--desert-deep);
  margin-top: 2px;
}

.reassurance-icon svg {
  width: 100%;
  height: 100%;
}

.reassurance-text {
  display: flex;
  flex-direction: column;
}

.reassurance-text strong {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 4px;
}

.reassurance-text span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .reassurance { padding: 28px 24px; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ─── FOOTER ────────────────────────────────────────────── */
footer {
  padding: 80px 60px 40px;
  background: var(--bone);
  border-top: 1px solid rgba(42, 36, 29, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h5 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  color: var(--ink);
  margin-bottom: 24px;
}

.footer-brand p {
  color: var(--ink-soft);
  max-width: 320px;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-col h6 {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--desert-deep);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid rgba(42, 36, 29, 0.08);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── MENU BURGER MOBILE ────────────────────────────────── */

/* Bouton hamburger — caché en desktop par défaut */
.nav-burger {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: auto;
  z-index: 100;
  padding: 0;
}

.nav-burger span {
  display: block;
  position: absolute;
  left: 6px;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.nav-burger span:nth-child(1) { top: 13px; }
.nav-burger span:nth-child(2) { top: 18px; }
.nav-burger span:nth-child(3) { top: 23px; }

/* État "ouvert" — transformation en croix */
.nav-burger.open span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.nav-burger.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

/* Panneau du menu mobile (plein écran) */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bone);
  z-index: 95;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 100px 0 40px;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
}

/* Halo doré décoratif derrière le menu */
.mobile-menu::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vmin;
  height: 80vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 120, 0.16) 0%, transparent 70%);
  pointer-events: none;
  animation: mobileMenuHalo 7s ease-in-out infinite;
  z-index: 0;
}

@keyframes mobileMenuHalo {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.55; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
}

.mobile-menu-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 40px;
  margin: auto 0;
}

.mobile-menu-section {
  margin-bottom: 36px;
}

.mobile-menu-section:last-of-type {
  margin-bottom: 24px;
}

.mobile-menu-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--desert-deep);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-label::before,
.mobile-menu-label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--desert-deep);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 8px 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-menu.open li {
  opacity: 1;
  transform: translateY(0);
}

/* Délai en cascade pour les liens — couvre jusqu'à 10 items */
.mobile-menu.open li:nth-child(1)  { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(2)  { transition-delay: 0.20s; }
.mobile-menu.open li:nth-child(3)  { transition-delay: 0.25s; }
.mobile-menu.open li:nth-child(4)  { transition-delay: 0.30s; }
.mobile-menu.open li:nth-child(5)  { transition-delay: 0.35s; }
.mobile-menu.open li:nth-child(6)  { transition-delay: 0.40s; }
.mobile-menu.open li:nth-child(7)  { transition-delay: 0.45s; }
.mobile-menu.open li:nth-child(8)  { transition-delay: 0.50s; }
.mobile-menu.open li:nth-child(9)  { transition-delay: 0.55s; }
.mobile-menu.open li:nth-child(10) { transition-delay: 0.60s; }

.mobile-menu a {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-menu a.active {
  color: var(--desert-deep);
}

.mobile-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1px;
  background: var(--desert);
}

/* Section "Légal" : liens plus petits, plus discrets */
.mobile-menu-legal a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  padding: 6px 0;
}

.mobile-menu-legal a.active { color: var(--desert-deep); }

.mobile-menu-footer {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 300;
}

.mobile-menu-footer a {
  color: var(--desert-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  font-weight: 300;
}

/* Mode sombre */
body.dark-mode .mobile-menu { background: var(--bone); }
body.dark-mode .nav-burger span { background: var(--ink); }

/* Quand le menu est ouvert : bloquer le scroll de la page */
body.menu-open { overflow: hidden; }

/* ─── Sur appareils tactiles : restaurer le curseur natif partout ─── */
@media (pointer: coarse) {
  *, *::before, *::after { cursor: auto !important; }
  a, button, [role="button"] { cursor: pointer !important; }
  input, textarea, select { cursor: text !important; }
  .ljos-cursor-dot, .ljos-cursor-ring { display: none !important; }
}

/* ─── RESPONSIVE COMMUN ─────────────────────────────────── */
@media (max-width: 1380px) {
  .nav-links { gap: 24px; }
  .nav-group { gap: 24px; }
  .nav-links a { font-size: 0.66rem; letter-spacing: 0.22em; }
}

@media (max-width: 1150px) {
  /* sur écran moyen : on cache le 2e groupe (Histoire/Design/Contact restent accessibles via footer) */
  .nav-sep, .nav-group:last-of-type { display: none; }
}

@media (max-width: 1150px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  nav {
    padding: 12px 16px;
    background: rgba(251, 247, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(42, 36, 29, 0.05);
  }

  body.dark-mode nav {
    background: rgba(18, 16, 12, 0.92);
    border-bottom-color: rgba(240, 232, 216, 0.05);
  }

  /* Logo plus compact sur mobile */
  .logo img { height: 56px; }

  .nav-links { display: none; }
  .nav-burger { display: block; }

  /* Bouton panier compact : on cache le texte long, on garde juste le compteur */
  .nav-cart {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    padding: 8px 10px;
  }
  .nav-cart .cart-empty-label,
  .nav-cart .cart-full-label { display: none; }
  .nav-cart::before {
    content: "⌀";
    margin-right: 6px;
    font-size: 0.95rem;
    vertical-align: middle;
  }
  .nav-cart.has-items::after {
    content: attr(data-count);
  }
  /* On affiche juste le compteur en chiffre */
  .nav-cart [data-cart-count] {
    display: inline;
    font-size: 0.7rem;
  }
  .nav-cart.has-items [data-cart-count] {
    color: var(--desert-deep);
    font-weight: 500;
  }

  /* Espacement entre burger et panier */
  .nav-burger { margin-right: 4px; }

  .page-header { padding: 140px 24px 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  footer { padding: 60px 24px 30px; }
  .ljos-cart-drawer { width: 100%; }

  /* Toggle thème : un peu plus discret en mobile */
  .theme-toggle { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

/* iPhone SE et très petits écrans */
@media (max-width: 380px) {
  nav { padding: 10px 12px; }
  .logo img { height: 48px; }
  .nav-cart { font-size: 0.58rem; padding: 6px 8px; }
}
