/* ============================================================
   CURIOSA — Cabinet de Curiosités | styles.css
   Mobile-first · Palette Parchemin/Or/Encre
   ============================================================ */

:root {
  --ink:       #0D0B07;
  --sepia:     #1C1508;
  --gold:      #C8960C;
  --gold-lt:   #E8D094;
  --parch:     #F5EDD5;
  --parch2:    #EBE0C3;
  --parch3:    #DDD0B0;
  --copper:    #7A3B0A;
  --text:      #2A1F0A;
  --text2:     #5C4A2A;
  --text3:     #8A7050;
  --green:     #1A4A2A;
  --border:    rgba(200,150,12,0.25);
  --shadow:    rgba(0,0,0,0.3);
  --radius:    8px;
  --r-lg:      16px;
  --font-serif:'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--parch);
  color: var(--text);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Topbar ── */
.topbar {
  background: var(--sepia);
  color: var(--gold-lt);
  font-size: .78rem;
  text-align: center;
  padding: .55rem 1rem;
  letter-spacing: .03em;
}
.topbar a { color: var(--gold); font-weight: 600; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,9,3,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 64px;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  white-space: nowrap;
}
.logo em { color: var(--parch); font-style: normal; }

.nav-list {
  display: none;
  gap: 1.5rem;
  align-items: center;
}
@media(min-width:768px){ .nav-list{ display:flex; } }
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--parch2);
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); text-decoration: none; }

.header-actions { display: flex; align-items: center; gap: .75rem; }
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--parch);
  cursor: pointer;
  padding: .25rem;
}
.cart-btn svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--gold);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none;
  padding: .25rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--parch2);
  border-radius: 2px;
  transition: .2s;
}
@media(min-width:768px){ .hamburger{ display:none; } }

/* ── Mobile menu ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 90vw);
  height: 100dvh;
  background: var(--sepia);
  border-left: 2px solid var(--border);
  z-index: 200;
  padding: 4rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: right .3s ease;
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { color: var(--parch); font-size: 1.05rem; font-weight: 500; }
.mobile-menu a:hover { color: var(--gold); text-decoration: none; }
.mobile-menu__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--parch2); font-size: 1.5rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(160deg, #0D0B07 0%, #1C1508 55%, #2A1A05 100%);
  min-height: 75vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 59px,
    rgba(200,150,12,.035) 59px, rgba(200,150,12,.035) 60px
  ), repeating-linear-gradient(
    90deg,
    transparent, transparent 59px,
    rgba(200,150,12,.02) 59px, rgba(200,150,12,.02) 60px
  );
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 4rem;
}
@media(min-width:768px){
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(200,150,12,.15);
  border: 1px solid var(--border);
  color: var(--gold-lt);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero-badge svg { fill: var(--gold); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--parch);
  margin-bottom: 1.25rem;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--parch3);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: .2s;
  text-align: center;
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); text-decoration: none; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--parch);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(245,237,213,.3);
  transition: .2s;
  text-align: center;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.hero-visual {
  display: flex; align-items: center; justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-badge-over {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(12,9,3,.88);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  color: var(--parch);
}
.hero-badge-over strong { color: var(--gold); font-size: 1.1rem; }
.hero-badge-over span { font-size: .78rem; color: var(--parch3); display: block; }

/* ── Trust bar ── */
.trust-bar {
  background: var(--sepia);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem;
  color: var(--parch3);
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── Section generic ── */
.section { padding: 4.5rem 0; }
.section--dark {
  background: var(--sepia);
  color: var(--parch);
}
.section--parch {
  background: var(--parch2);
}
.section-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 3rem;
}
.section--dark .section-sub { color: var(--parch3); }
.text-center { text-align: center; }

/* ── Product grid ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.15);
}
.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--parch2);
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card__img img { transform: scale(1.05); }
.product-card__body {
  padding: 1.25rem;
  display: flex; flex-direction: column; flex: 1;
}
.product-card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .35rem;
}
.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}
.product-card__story {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.product-card__price-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
}
.price-main { font-size: 1.3rem; font-weight: 700; color: var(--text); }
.price-cross {
  font-size: .9rem;
  text-decoration: line-through;
  color: var(--text3);
}
.price-badge {
  font-size: .72rem;
  font-weight: 700;
  background: #FEF3C7;
  color: #92400E;
  padding: .2rem .5rem;
  border-radius: 999px;
}
.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: .75rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: .9rem;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  border: none;
  transition: background .2s;
  cursor: pointer;
}
.btn-card:hover { background: var(--gold-lt); }

/* ── Hero Product page ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 3rem 0;
}
@media(min-width:768px){
  .product-detail { grid-template-columns: 1fr 1fr; align-items: start; }
}
.product-detail__gallery {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--parch2);
}
.product-detail__gallery img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-detail__badge-img {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 999px;
}
.product-detail__info {}
.product-detail__tag {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--copper); margin-bottom: .5rem;
}
.product-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.product-detail__story {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.75;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}
.product-detail__price {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.5rem;
}
.product-detail__price .price-main { font-size: 2rem; }
.product-features {
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 2rem;
}
.product-feature {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .92rem; color: var(--text2);
}
.product-feature svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.btn-addcart {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700; font-size: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius); border: none;
  margin-bottom: .75rem;
  transition: background .2s;
  cursor: pointer;
}
.btn-addcart:hover { background: var(--gold-lt); }
.btn-secondary-full {
  width: 100%;
  display: block; text-align: center;
  background: transparent;
  color: var(--text);
  font-weight: 600; font-size: .95rem;
  padding: .85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: .2s;
}
.btn-secondary-full:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }
.delivery-note {
  display: flex; align-items: center; gap: .5rem;
  font-size: .83rem; color: var(--text3);
  margin-top: 1rem;
}
.delivery-note svg { color: var(--green); }

/* ── FAQ accordion ── */
.faq { margin-top: 3rem; }
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0;
  font-size: .95rem; font-weight: 600;
  color: var(--text); text-align: left;
  cursor: pointer;
}
.faq-question svg { transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 1rem;
  font-size: .9rem; color: var(--text2); line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

/* ── Bundle section ── */
.bundle-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bundle-card {
  background: rgba(200,150,12,.06);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
}
.bundle-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: .75rem;
}
.bundle-card .bundle-items {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.bundle-card .bundle-price {
  font-size: 1.6rem; font-weight: 700; color: var(--text);
}
.bundle-card .bundle-save {
  font-size: .8rem; color: var(--copper); font-weight: 600; margin-bottom: 1rem;
}

/* ── About section / story ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media(min-width:768px){
  .story-grid { grid-template-columns: 1fr 1fr; }
}
.story-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text { max-width: 520px; }
.story-text p {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.story-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}

/* ── Email capture ── */
.capture {
  background: linear-gradient(135deg, #1C1508 0%, #2A1F0A 100%);
  padding: 4rem 0;
  text-align: center;
}
.capture h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--parch);
  margin-bottom: .75rem;
}
.capture p {
  color: var(--parch3);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.capture-form {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: .75rem;
  max-width: 400px;
  margin: 0 auto;
}
@media(min-width:500px){
  .capture-form { flex-direction: row; }
}
/* Consentement RGPD sur sa propre ligne dans les formulaires flex */
.capture-form .capture-consent,
.vip-strip__form .capture-consent,
.prod-cta__form .capture-consent { flex-basis: 100%; width: 100%; margin-top: 0; }
.capture-form input {
  flex: 1;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: var(--parch);
  font-size: .95rem;
  outline: none;
}
.capture-form input::placeholder { color: var(--text3); }
.capture-form input:focus { border-color: var(--gold); }
.capture-msg {
  margin-top: 1rem;
  color: var(--gold-lt);
  font-size: .88rem;
  display: none;
}

/* ── Panier ── */
.cart-section { padding: 3rem 0; min-height: 60vh; }
.cart-empty {
  text-align: center;
  padding: 5rem 0;
  color: var(--text2);
}
.cart-empty h2 { font-family: var(--font-serif); font-size: 1.6rem; margin-bottom: 1rem; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; padding: .75rem 1rem;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text3); border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 1rem; vertical-align: middle; }
.cart-table tr { border-bottom: 1px solid rgba(0,0,0,.05); }
.cart-item-name { font-weight: 600; font-size: .95rem; color: var(--text); }
.cart-item-price { font-weight: 700; }
.cart-qty { display: flex; align-items: center; gap: .5rem; }
.cart-qty button {
  width: 28px; height: 28px;
  border-radius: 50%; border: 1px solid var(--border);
  background: none; font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cart-qty span { min-width: 24px; text-align: center; }
.cart-remove { color: var(--text3); background: none; border: none; font-size: 1.2rem; cursor: pointer; }
.cart-total { text-align: right; padding: 2rem 0; }
.cart-total h3 { font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 1.5rem; }
.checkout-stub {
  background: var(--parch2);
  border-radius: var(--r-lg);
  padding: 2rem;
  max-width: 480px;
  margin-left: auto;
  border: 1px solid var(--border);
}
.checkout-stub h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--text2); }
.form-group input {
  width: 100%; padding: .75rem 1rem;
  border-radius: var(--radius); border: 1px solid var(--border);
  font-size: .95rem; background: #fff; color: var(--text);
  outline: none;
}
.form-group input:focus { border-color: var(--gold); }
.btn-checkout {
  width: 100%; background: var(--gold);
  color: var(--ink); font-weight: 700; font-size: 1rem;
  padding: 1rem; border: none; border-radius: var(--radius);
  cursor: pointer; transition: background .2s; margin-top: .5rem;
}
.btn-checkout:hover { background: var(--gold-lt); }
.checkout-note { font-size: .78rem; color: var(--text3); text-align: center; margin-top: .75rem; }

/* ── Order bump : "Complétez votre cabinet" (panier) ── */
.order-bump {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0 0 1.25rem;
  text-align: left;
}
.order-bump__label {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  cursor: pointer;
}
.order-bump__label input[type=checkbox] {
  margin-top: .3rem;
  width: 19px; height: 19px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}
.order-bump__img {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.order-bump__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.order-bump__text { font-size: .86rem; color: var(--text2); line-height: 1.5; }
.order-bump__text strong { color: var(--text); }
.order-bump__price { display: block; margin-top: .3rem; font-weight: 700; color: var(--gold); }
.order-bump__save { font-weight: 400; color: var(--text3); }
.order-bump__note { display: block; margin-top: .35rem; font-size: .76rem; color: var(--text3); font-weight: 400; }

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--sepia);
  color: var(--parch);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1.25rem;
  font-size: .9rem; font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  z-index: 300;
  opacity: 0; transform: translateY(12px);
  transition: .3s;
  pointer-events: none;
  max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── Legal / Info pages ── */
.page-hero {
  background: var(--sepia);
  padding: 3rem 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--parch);
}
.page-hero p { color: var(--parch3); margin-top: .5rem; }
.legal-content { max-width: 780px; margin: 0 auto; padding: 3rem 1.25rem; }
.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem; margin: 2rem 0 .75rem;
  color: var(--text);
}
.legal-content p, .legal-content li {
  font-size: .95rem; color: var(--text2); line-height: 1.75; margin-bottom: .5rem;
}
.legal-content ul { padding-left: 1.25rem; list-style: disc; }

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: .82rem; color: var(--text3);
  padding: 1rem 0;
  display: flex; gap: .4rem; align-items: center;
}
.breadcrumb a { color: var(--text3); }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: var(--parch3);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { display: block; margin-bottom: .75rem; }
.footer-brand p {
  font-size: .85rem; line-height: 1.6;
  color: var(--text3); max-width: 220px;
}
.footer-col h4 {
  font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: .88rem;
  color: var(--text3); margin-bottom: .5rem;
}
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-social { display: flex; gap: .75rem; margin-top: .5rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(200,150,12,.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  font-size: .85rem; font-weight: 700;
}
.footer-social a:hover { background: var(--gold); color: var(--ink); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(200,150,12,.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .75rem;
  font-size: .78rem;
  color: var(--text3);
}
.footer-disclaimer {
  font-size: .75rem;
  color: var(--text3);
  opacity: .7;
  margin-top: .75rem;
  line-height: 1.5;
}

/* ── Utilitaires ── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.d-flex { display: flex; }
.gap-1 { gap: .5rem; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ── Overlay mobile menu ── */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 150;
  display: none;
}
.overlay.show { display: block; }

/* ── VIP strip (capture haut de page) ── */
.vip-strip {
  background: linear-gradient(135deg, #2A1F0A 0%, #1C1508 100%);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.vip-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.vip-strip__text { color: var(--parch3); font-size: .92rem; flex: 1 1 300px; }
.vip-strip__text strong { color: var(--gold-lt); }
.vip-strip__action { flex: 1 1 320px; }
.vip-strip__form { display: flex; flex-wrap: wrap; gap: .6rem; }
.vip-strip__form input[type=email] {
  flex: 1 1 180px;
  min-height: 44px;
  padding: .7rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: var(--parch);
  font-size: .95rem;
  outline: none;
}
.vip-strip__form input[type=email]::placeholder { color: var(--text3); }
.vip-strip__form input[type=email]:focus { border-color: var(--gold); }
.vip-strip__form .btn-primary { min-height: 44px; padding: .7rem 1.5rem; }

/* ── Messages Web3Forms ── */
.w3-msg { display: none; }
.vip-strip__msg { color: var(--gold-lt); font-size: .9rem; margin-top: .5rem; }

/* ── Consentement RGPD ── */
.capture-consent {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text3);
  margin-top: .9rem;
  text-align: left;
  line-height: 1.5;
}
.capture .capture-consent { color: var(--parch3); max-width: 440px; margin-left: auto; margin-right: auto; }
.capture-consent input[type=checkbox] { margin-top: .2rem; flex-shrink: 0; width: 16px; height: 16px; }

/* ── Lien alternatif YouTube sous capture ── */
.capture-alt { font-size: .88rem; color: var(--parch3); margin-top: 1.25rem; }
.capture-alt a { color: var(--gold); font-weight: 600; }

/* ── Prix conseillé (remplace prix barré non documenté) ── */
.price-rec { font-size: .85rem; color: var(--text3); }

/* ── Bloc CTA pages produit (VIP + YouTube) ── */
.prod-cta { padding: 3.5rem 0; background: var(--parch2); }
.prod-cta__box {
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1C1508 0%, #2A1F0A 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.prod-cta__box h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--parch);
  margin-bottom: .75rem;
}
.prod-cta__box > p { color: var(--parch3); font-size: .95rem; margin-bottom: 1.5rem; }
.prod-cta__box > p strong { color: var(--gold-lt); }
.prod-cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  max-width: 420px;
  margin: 0 auto;
}
.prod-cta__form input[type=email] {
  flex: 1 1 180px;
  min-height: 44px;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: var(--parch);
  font-size: .95rem;
  outline: none;
}
.prod-cta__form input[type=email]::placeholder { color: var(--text3); }
.prod-cta__form input[type=email]:focus { border-color: var(--gold); }
.prod-cta__form .btn-primary { min-height: 44px; }
.prod-cta__msg { color: var(--gold-lt); font-size: .92rem; margin-top: .75rem; }
.prod-cta__box .capture-consent { color: var(--parch3); max-width: 420px; margin-left: auto; margin-right: auto; }
.prod-cta__alt { font-size: .9rem; color: var(--parch3); margin-top: 1.25rem; }
.prod-cta__alt a { color: var(--gold); font-weight: 600; }

/* ── Panier vide — CTAs ── */
.cart-empty__ctas {
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.cart-empty__vip {
  max-width: 440px;
  margin: 0 auto;
  padding: 1.75rem;
  background: linear-gradient(135deg, #1C1508 0%, #2A1F0A 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--parch3);
}
.cart-empty__vip .capture-form { display: flex; flex-wrap: wrap; gap: .6rem; }
.cart-empty__vip input[type=email] {
  flex: 1 1 180px; min-height: 44px;
  padding: .7rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08); color: var(--parch);
  font-size: .95rem; outline: none;
}
.cart-empty__vip input[type=email]::placeholder { color: var(--text3); }
.cart-empty__vip .btn-primary { min-height: 44px; }

/* ── Touch targets ── */
@media(max-width:767px){
  .footer-social a { width: 44px; height: 44px; }
}
