/* ============================================
   MAISON MIRENZA — Shared styles
   ============================================ */

:root {
  --bg: #000000;
  --bg-soft: #0a0908;
  --fg: #E4E2DE;
  --accent: #D6CDB6;
  --accent-dim: rgba(214, 205, 182, 0.5);
  --line: rgba(214, 205, 182, 0.18);
  --gold: #d8b676;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Vidéos de fond décoratives : jamais de contrôles natifs (PiP, plein écran) au survol */
video {
  pointer-events: none;
}
video::-webkit-media-controls,
video::-webkit-media-controls-panel,
video::-webkit-media-controls-play-button,
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a, button, input, select, textarea {
  cursor: none;
  font-family: inherit;
  color: inherit;
}

button { background: transparent; border: none; }

/* ============ CUSTOM CURSOR ============ */
html, body, a, button, input, select, textarea { cursor: none; }

.cursor-dot {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  width: 38px; height: 38px;
  background: url('assets/EMOJI LOGO.png') center/contain no-repeat;
  transition: opacity 0.2s;
  filter: drop-shadow(0 2px 6px rgba(196,160,80,0.35));
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border: 1px solid rgba(196,160,80,0.25);
  opacity: 0.5;
  transition: width 0.25s, height 0.25s, opacity 0.25s, border-color 0.25s;
}
.cursor-ring.hover {
  width: 72px; height: 72px;
  opacity: 0.8;
  border-color: rgba(196,160,80,0.55);
}

@media (hover: none) {
  html, body, a, button, input, select, textarea { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============ NAVIGATION ============ */
/* Offset pour les ancres avec navbar fixe */
#hero, #editions, #lune, #soleil, #contact {
  scroll-margin-top: 80px;
}
#histoire, #engagement {
  scroll-margin-top: 0;
}

nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 56px 24px 24px;
  background: #000;
}
nav.site-nav.solid {
  background: #000;
  border-bottom: 1px solid var(--line);
}
.logo {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--fg);
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo .ampersand {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin: 0 2px;
  text-transform: none;
}
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
  justify-self: center;
  margin-left: 60px;
  white-space: nowrap;
}
.nav-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
  padding: 8px 0;
}
.nav-links a::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--accent);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.4s cubic-bezier(.2,.8,.3,1);
  pointer-events: none;
  padding: 8px 0;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a:hover::before {
  clip-path: inset(0% 0 0 0);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.35s ease, left 0.35s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }
.nav-links a.active { opacity: 1; color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.nav-right .city { opacity: 0.65; }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px;
  color: var(--fg);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.cart-btn:hover { color: var(--accent); }
.cart-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.cart-count {
  position: absolute;
  top: -2px; right: -10px;
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count.empty { display: none; }

/* ============ BUTTON ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: transparent;
  color: var(--fg);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.45s, transform 0.35s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
.btn span, .btn .arrow { position: relative; z-index: 1; transition: color 0.45s, transform 0.45s; }
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::before { opacity: 1; }
.btn:hover span, .btn:hover .arrow { color: #000; }
.btn:hover .arrow { transform: translateX(8px); }
.btn:active { transform: translateY(0); }
.btn:focus, .btn:focus-visible { outline: none; }
.btn.btn-solid { background: var(--accent); color: #000; }
.btn.btn-solid::before { background: #000; }
.btn.btn-solid:hover span, .btn.btn-solid:hover .arrow { color: var(--accent); }

/* ============ INTERACTIVE ANIMATIONS ============ */

/* Cart button pulse quand items */
@keyframes cartPulse {
  0%, 100% { transform: scale(1); }
  40%       { transform: scale(1.18); }
  60%       { transform: scale(0.92); }
}
.cart-count.pulse { animation: cartPulse 0.45s cubic-bezier(.2,.7,.3,1); }

/* Search icon */
.search-btn {
  transition: color 0.3s, transform 0.4s;
}
.search-btn:hover {
  color: var(--accent);
  transform: scale(1.15) rotate(-8deg);
}

/* Account icon */
.account-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.85;
  transition: color 0.3s, transform 0.3s, opacity 0.3s;
}
.account-btn:hover {
  color: var(--accent);
  opacity: 1;
  transform: translateY(-1px);
}
.account-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

/* Cart btn hover */
.cart-btn {
  transition: color 0.3s, transform 0.3s;
}
.cart-btn:hover {
  color: var(--accent);
  transform: translateY(-1px);
}


/* Footer links */
.footer-col a {
  position: relative;
  display: inline-block;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
}
.footer-col a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(4px);
}


/* Back to top hover */
.back-to-top {
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s, box-shadow 0.3s;
}
.back-to-top:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(203,199,183,0.2);
  transform: translateY(-3px);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }

/* Scroll-down arrow glow */
.scroll-down:hover, .scroll-hint:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(203,199,183,0.5));
}

/* Cookie buttons */
.cookie-btn {
  transition: all 0.3s, transform 0.25s;
}
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-btn.primary:hover { transform: translateY(-2px) scale(1.03); }

/* Add to cart button */
.add-cart-btn {
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
}
.add-cart-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(203,199,183,0.25) !important;
}

/* Qty selector buttons */
.qty-selector button {
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.qty-selector button:hover { transform: scale(1.15); }

/* FAQ questions */
.faq-q {
  transition: color 0.3s, letter-spacing 0.3s;
}
.faq-q:hover { letter-spacing: 0.02em; }

/* Announce bar link */
.announce-item a {
  transition: color 0.3s, letter-spacing 0.3s;
}
.announce-item a:hover {
  color: var(--fg);
  letter-spacing: 0.06em;
}

/* ============ SHARED PAGE FRAMING ============ */
.page-header {
  padding: 180px 8vw 80px;
  text-align: center;
  position: relative;
}
.page-header .eyebrow {
  font-size: 12px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.page-header .eyebrow::before, .page-header .eyebrow::after {
  content: '';
  width: 56px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.page-header h1 {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.page-header h1 .italic { font-style: italic; color: var(--accent); }
.page-header .lead {
  font-size: 20px;
  font-style: italic;
  color: var(--fg);
  opacity: 0.75;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 200;
  background: rgba(10, 9, 8, 0.98);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 720px;
  width: calc(100% - 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg);
  opacity: 0.85;
  flex: 1;
}
.cookie-banner p a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-dim);
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
  transition: all 0.3s;
  white-space: nowrap;
}
.cookie-btn:hover { border-color: var(--accent); color: var(--accent); }
.cookie-btn.primary { background: var(--accent); color: #000; border-color: var(--accent); }
.cookie-btn.primary:hover { background: var(--fg); border-color: var(--fg); }

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: 440px;
  max-width: 100vw;
  z-index: 301;
  background: #0a0908;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  padding: 72px 32px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
}
.cart-header h3 .count {
  font-style: normal;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.2em;
  margin-left: 10px;
}
.cart-close {
  font-size: 24px;
  color: var(--accent);
  padding: 4px 8px;
  line-height: 1;
  transition: transform 0.3s;
}
.cart-close:hover { transform: rotate(90deg); color: var(--fg); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.cart-item {
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
}
.cart-item .thumb {
  width: 88px; height: 110px;
  background: #1a1612;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--accent);
  opacity: 0.7;
}
.cart-item .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cart-item .info { padding-top: 4px; }
.cart-item .info .name {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 4px;
}
.cart-item .info .variant {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 14px;
  white-space: nowrap;
}
.cart-item .qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.cart-item .qty button {
  width: 26px; height: 26px;
  color: var(--accent);
  font-size: 14px;
  transition: color 0.2s;
}
.cart-item .qty button:hover { color: var(--fg); }
.cart-item .qty span {
  min-width: 24px;
  text-align: center;
  font-size: 14px;
}
.cart-item .price {
  text-align: right;
  font-size: 16px;
  color: var(--fg);
}
.cart-item .remove {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.3s, color 0.3s;
}
.cart-item .remove:hover { opacity: 1; color: var(--fg); }

.cart-empty {
  padding: 80px 32px;
  text-align: center;
  color: var(--accent);
  opacity: 0.8;
}
.cart-empty p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 28px;
}

.cart-footer {
  border-top: 1px solid var(--line);
  padding: 24px 32px 32px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.cart-total .label {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}
.cart-total .amount {
  font-size: 28px;
  color: var(--fg);
}
.cart-shipping {
  font-size: 12px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 8px;
}
.cart-sample-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 22px;
  border: 1px solid rgba(203,199,183,0.3);
  border-radius: 6px;
  background: rgba(203,199,183,0.06);
  font-size: 12px;
  color: var(--fg);
}
.cart-sample-note svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
}
.submit-btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 32px;
  background: var(--accent);
  color: #000;
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.submit-btn:hover { background: var(--fg); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: wait; }
.cart-checkout-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #000;
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s, transform 0.3s;
}
.cart-checkout-btn:hover { background: var(--fg); transform: translateY(-1px); }
.cart-checkout-btn:disabled, .add-cart-btn:disabled {
  opacity: 0.4; cursor: not-allowed; pointer-events: none;
}
.cart-checkout-btn:disabled:hover, .add-cart-btn:disabled:hover { background: var(--accent); transform: none; }
.cart-checkout-btn.is-loading { cursor: wait; }
.cart-checkout-btn.is-loading > span:not(.btn-wave) { opacity: 0; }
.btn-wave {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.cart-checkout-btn.is-loading .btn-wave { display: flex; }
.btn-wave span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #000;
  animation: btn-wave-pulse 1.1s ease-in-out infinite;
}
.btn-wave span:nth-child(2) { animation-delay: 0.12s; }
.btn-wave span:nth-child(3) { animation-delay: 0.24s; }
.btn-wave span:nth-child(4) { animation-delay: 0.36s; }
@keyframes btn-wave-pulse {
  0%, 60%, 100% { transform: translateY(0) scale(0.65); opacity: 0.4; }
  30% { transform: translateY(-5px) scale(1.2); opacity: 1; }
}
.cart-continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.65;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cart-continue:hover { opacity: 1; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  min-height: auto;
  padding: 60px 8vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000;
}
.trust-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: transform 0.35s;
}
.trust-item:hover {
  transform: translateY(-4px);
}
.trust-item svg {
  width: 32px; height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.2;
  transition: stroke 0.35s, filter 0.35s;
}
.trust-item:hover svg {
  stroke: var(--fg);
  filter: drop-shadow(0 0 6px rgba(203,199,183,0.4));
}
.trust-item .title {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg);
}
.trust-item .sub {
  font-size: 13px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.75;
}

/* ============ FOOTER (full) ============ */
footer.site-footer {
  background: #000;
  padding: 96px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-top {
  text-align: center;
  padding: 0 8vw 64px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
}
.footer-top .logo-big {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.footer-top .logo-big .ampersand {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  text-transform: none;
}
.footer-top .tagline {
  font-size: 18px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8vw 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.85;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--fg);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-col p {
  font-size: 14px;
  color: var(--fg);
  opacity: 0.7;
  line-height: 1.7;
  font-style: italic;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(228,226,222,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  opacity: 0.85;
  transition: border-color 0.3s, color 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 1;
  background: rgba(203,199,183,0.08);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 17px; height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 8vw 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom .copyright {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.55;
}
.footer-payments {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-payments .pay {
  width: 38px; height: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.8;
  font-weight: 600;
  background: rgba(255,255,255,0.02);
}

/* ============ FORM (contact/newsletter) ============ */
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.field label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.75;
  margin-bottom: 10px;
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 16px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; }

/* ============ FAQ ACCORDION ============ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-size: 20px;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--accent); }
.faq-q .ico {
  width: 18px; height: 18px;
  position: relative;
  flex-shrink: 0;
  margin-left: 24px;
}
.faq-q .ico::before, .faq-q .ico::after {
  content: '';
  position: absolute;
  background: var(--accent);
  top: 50%; left: 0;
  width: 100%; height: 1px;
  transform: translateY(-50%);
  transition: transform 0.4s;
}
.faq-q .ico::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.open .faq-q .ico::after { transform: translateY(-50%) rotate(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(.2,.7,.3,1);
}
.faq-a-inner {
  padding: 0 0 32px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg);
  opacity: 0.78;
  font-style: italic;
  max-width: 720px;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(.2,.7,.3,1), transform 1.1s cubic-bezier(.2,.7,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--accent);
  color: #000;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
  z-index: 400;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ CHECKOUT SOON ============ */
.checkout-soon-msg {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s;
  padding: 24px;
}
.checkout-soon-msg.show { opacity: 1; }
.checkout-soon-inner {
  background: #0a0908;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 52px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.45s cubic-bezier(.2,.7,.3,1);
}
.checkout-soon-msg.show .checkout-soon-inner { transform: translateY(0); }
.checkout-soon-icon {
  font-size: 22px;
  color: var(--accent);
  opacity: 0.7;
  margin-bottom: 24px;
  letter-spacing: 0.3em;
}
.checkout-soon-title {
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 16px;
  font-family: 'EB Garamond', serif;
}
.checkout-soon-sub {
  font-size: 16px;
  font-style: italic;
  color: var(--fg);
  opacity: 0.7;
  line-height: 1.65;
  margin-bottom: 36px;
  font-family: 'EB Garamond', serif;
}
.checkout-soon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'EB Garamond', serif;
  transition: background 0.3s, transform 0.3s;
  margin-bottom: 18px;
}
.checkout-soon-btn:hover { background: var(--fg); transform: translateY(-2px); }
.checkout-soon-close {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.4;
  cursor: none;
  font-family: 'EB Garamond', serif;
  transition: opacity 0.3s;
}
.checkout-soon-close:hover { opacity: 0.8; }
.checkout-soon-form {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.checkout-soon-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.checkout-soon-form input[type="email"]::placeholder { color: rgba(228,226,222,0.35); }
.checkout-soon-form button[type="submit"] {
  background: var(--fg);
  color: #0a0908;
  border: none;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: inherit;
  cursor: none;
  white-space: nowrap;
  transition: background 0.3s;
}
.checkout-soon-form button[type="submit"]:hover { background: var(--accent); }
.checkout-soon-confirm {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-style: italic;
  font-family: 'EB Garamond', serif;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ============ HAMBURGER MENU ============ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px 4px;
  cursor: none;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--fg);
  transition: transform 0.35s, opacity 0.35s, width 0.35s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 16px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.3s;
  font-family: 'EB Garamond', serif;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.20s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.26s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .menu-divider {
  width: 40px; height: 1px;
  background: var(--accent);
  opacity: 0.3;
  margin: 16px 0;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 28px;
  z-index: 150;
  width: 44px; height: 44px;
  border: 1px solid rgba(203,199,183,0.3);
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  cursor: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s, border-color 0.3s;
  pointer-events: none;
}
.back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { border-color: var(--accent); color: var(--fg); }
.back-to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  nav.site-nav { padding: 12px 20px; }
  .nav-links, .nav-right .city { display: none; }
  .hamburger { display: flex; }
  .nav-right { gap: 14px; }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    bottom: 12px;
    padding: 18px 20px;
  }
  .cookie-actions { justify-content: center; }

  .cart-drawer { width: 100vw; }
  .cart-header { padding-top: 52px; }
  .cart-item { grid-template-columns: 72px 1fr auto; gap: 12px; padding: 18px 20px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .trust-strip { padding: 48px 6vw; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; padding: 0 6vw 40px; }
  .footer-top { padding: 0 6vw 48px; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer-payments { justify-content: center; }

  .page-header { padding: 120px 6vw 48px; }
  .page-header h1 { font-size: clamp(36px, 8vw, 60px); }

  .checkout-soon-inner { padding: 40px 28px; }
}

@media (min-width: 769px) {
  /* Garantir le curseur custom sur desktop */
  html, body, a, button, input, select, textarea { cursor: none !important; }
  .cursor-dot, .cursor-ring { display: block !important; }
}

@media (max-width: 768px) {
  /* Nav mobile : logo et hamburger sur la même ligne, centres alignés */
  nav.site-nav { display: flex; flex-direction: row; align-items: center; justify-content: space-between; }
  nav.site-nav .nav-right { padding-top: 0 !important; }
  nav.site-nav .logo img { height: 40px !important; width: auto !important; }

  /* Buttons — touch targets minimum 48px */
  .btn { padding: 16px 28px; min-height: 48px; font-size: 12px; }

  /* Cart drawer */
  .cart-header { padding: 20px 18px 14px; }
  .cart-footer { padding: 18px 18px 28px; }

  /* Footer */
  .footer-top { padding: 0 5vw 40px; }
  .footer-top .logo-big { font-size: 24px; }
  .footer-top .tagline { font-size: 16px; margin-bottom: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 0 5vw 40px; }
  .footer-bottom { padding: 20px 5vw 0; }

  /* Trust strip */
  .trust-strip { padding: 40px 5vw; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px 16px; }

  /* Page header */
  .page-header { padding: 100px 5vw 40px; }
  .page-header h1 { font-size: clamp(30px, 9vw, 50px); }
  .page-header .lead { font-size: 17px; }

  /* Cookie */
  .cookie-banner { padding: 16px 16px; gap: 12px; }
}

@media (max-width: 500px) {
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cart-item { grid-template-columns: 60px 1fr; }
  .cart-item > div:last-child { grid-column: 2; }
}

/* ============ PAGE TRANSITION ============ */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #000;
  opacity: 0;
}
.page-transition.go {
  pointer-events: all;
  animation: pt-out 0.3s cubic-bezier(.4,0,1,1) forwards;
}
@keyframes pt-out {
  from { opacity: 0; }
  to   { opacity: 1; }
}

