/* ─── Palette mystique sombre ─────────────────────────────────── */
:root {
  --bg:          #080611;
  --bg-alt:      #0f0b1e;
  --bg-card:     #13102200;
  --ink:         #ede5d0;
  --ink-soft:    #9a8fa8;
  --gold:        #c9a040;
  --gold-bright: #e8c46a;
  --gold-dim:    #7d6028;
  --violet:      #7c5cbf;
  --violet-deep: #4e3490;
  --border:      #261d3e;
  --border-glow: #3d2d60;
  --radius:      16px;
  --shadow:      0 12px 40px rgba(0,0,0,.7), 0 0 0 1px rgba(124,92,191,.12);
  --glow-gold:   0 0 24px rgba(201,160,64,.25), 0 0 60px rgba(201,160,64,.08);
  --glow-violet: 0 0 24px rgba(124,92,191,.3), 0 0 60px rgba(124,92,191,.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, #1a0d38 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, #0d0a28 0%, transparent 60%);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}

/* Étoiles subtiles en arrière-plan */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 15% 18%, rgba(255,255,255,.18) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 7%,  rgba(255,255,255,.12) 0%, transparent 100%),
    radial-gradient(1px 1px at 67% 23%, rgba(255,255,255,.14) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 11%, rgba(255,255,255,.16) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 55%, rgba(255,255,255,.09) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 68%, rgba(255,255,255,.11) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 82%, rgba(255,255,255,.1)  0%, transparent 100%),
    radial-gradient(1px 1px at 92% 45%, rgba(255,255,255,.08) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5%  72%, rgba(200,160,255,.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 40%, rgba(200,160,255,.15) 0%, transparent 100%);
}

main, header, footer, section, .container { position: relative; z-index: 1; }

h1, h2, h3, .brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  background: rgba(8, 6, 17, .82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  font-size: 1.55rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-shadow: var(--glow-gold);
}

.brand-mark { color: var(--gold); filter: drop-shadow(0 0 8px rgba(201,160,64,.6)); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.main-nav a {
  color: var(--ink-soft);
  transition: color .2s;
}
.main-nav a:hover { color: var(--gold-bright); }

.cart-link { position: relative; }

.cart-badge {
  position: absolute;
  top: -10px;
  right: -18px;
  background: var(--gold);
  color: #0b0914;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(201,160,64,.5);
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 90px 0 80px;
}

.hero-tag {
  display: inline-block;
  background: rgba(124,92,191,.15);
  border: 1px solid rgba(124,92,191,.35);
  color: var(--gold-bright);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  margin: 0 0 22px;
  background: linear-gradient(135deg, #f0e5c0 0%, #c9a040 50%, #e8c46a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 46ch;
  line-height: 1.75;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--glow-violet), 0 24px 60px rgba(0,0,0,.8);
  border: 1px solid var(--border-glow);
  aspect-ratio: 4/5;
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Boutons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: transform .18s, box-shadow .18s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0b0914;
  box-shadow: 0 4px 20px rgba(201,160,64,.3);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(201,160,64,.55); }

.btn-secondary {
  background: transparent;
  border-color: var(--border-glow);
  color: var(--ink-soft);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-glow);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--gold); }

.btn-block { width: 100%; text-align: center; }

.btn-danger { background: #7a1f1f; color: #ffcccc; border-color: #a32f2f; }
.btn-danger:hover { box-shadow: 0 0 20px rgba(180,50,50,.4); }

/* ─── Stats ──────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(201,160,64,.4);
}

.stat-label { color: var(--ink-soft); font-size: 0.88rem; margin-top: 4px; }

/* ─── Sections ───────────────────────────────────────────────── */
.section { padding: 72px 0; }

.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--ink-soft);
  margin-bottom: 44px;
  font-size: 1.0rem;
}

/* ─── Grille produits ────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-violet), 0 20px 50px rgba(0,0,0,.7);
  border-color: var(--border-glow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: filter .3s;
}

.product-card:hover img { filter: brightness(1.08) saturate(1.1); }

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.badge {
  display: inline-block;
  align-self: flex-start;
  background: rgba(124,92,191,.2);
  border: 1px solid rgba(124,92,191,.35);
  color: #c4aff5;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.product-body h3 { margin: 0; font-size: 1.3rem; color: var(--ink); }
.product-desc { color: var(--ink-soft); font-size: 0.9rem; flex: 1; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.price { font-weight: 600; font-size: 1.18rem; color: var(--gold-bright); }

/* ─── Filtres boutique ───────────────────────────────────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}

.filter-pill {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-glow);
  background: rgba(255,255,255,.03);
  color: var(--ink-soft);
  font-weight: 500;
  transition: all .18s;
  cursor: pointer;
}

.filter-pill:hover { border-color: var(--gold); color: var(--gold-bright); }
.filter-pill.active {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  color: #0b0914;
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,160,64,.3);
}

/* ─── Fiche produit ──────────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.product-detail img {
  width: 100%;
  border-radius: 22px;
  box-shadow: var(--glow-violet), 0 24px 60px rgba(0,0,0,.8);
  border: 1px solid var(--border-glow);
  aspect-ratio: 1/1;
  object-fit: cover;
}

.stars { color: var(--gold); letter-spacing: 2px; }

.benefits-list { list-style: none; padding: 0; margin: 0; }
.benefits-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
.benefits-list li::before { content: '\2726  '; color: var(--gold); }

.qty-row { display: flex; align-items: center; gap: 14px; margin: 24px 0; }
.qty-row input[type=number] {
  width: 70px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-glow);
  background: var(--bg-alt);
  color: var(--ink);
  font-size: 1rem;
}

hr.divider { border: none; border-top: 1px solid var(--border); margin: 26px 0; }

/* ─── Panier & commande ──────────────────────────────────────── */
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 32px; }
.cart-table th {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 16px 10px; border-bottom: 1px solid var(--border); color: var(--ink); }
.cart-table img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 1px solid var(--border-glow); }
.cart-item-name { display: flex; align-items: center; gap: 14px; }

.summary-box {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 30px;
  max-width: 420px;
  margin-left: auto;
  box-shadow: var(--glow-violet);
}

.summary-row { display: flex; justify-content: space-between; margin-bottom: 14px; color: var(--ink-soft); }
.summary-total { font-size: 1.35rem; font-weight: 600; color: var(--gold-bright); }

.empty-state {
  text-align: center;
  padding: 100px 20px;
  color: var(--ink-soft);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 6px; }
.field label { font-weight: 500; font-size: 0.88rem; color: var(--ink-soft); letter-spacing: 0.04em; }
.field input, .field select, .field textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-glow);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select, .field textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,92,191,.2);
}
.field select option { background: #130f20; }

/* ─── Paiement Bitcoin ───────────────────────────────────────── */
.payment-box {
  background: linear-gradient(135deg, #14102440 0%, #0d0a1e 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--glow-violet);
}

.payment-box img { border-radius: 12px; margin: 18px auto; display: block; border: 1px solid var(--border-glow); }

.btc-address {
  font-family: monospace;
  background: rgba(0,0,0,.4);
  border: 1px dashed var(--border-glow);
  color: var(--gold-bright);
  padding: 12px 16px;
  border-radius: 10px;
  word-break: break-all;
  display: inline-block;
  margin: 14px 0;
  font-size: 0.88rem;
}

/* ─── Alertes ────────────────────────────────────────────────── */
.alert { padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; }
.alert-success { background: rgba(39,90,32,.25); color: #a0e89a; border: 1px solid rgba(60,120,50,.5); }
.alert-error   { background: rgba(120,30,24,.25); color: #f5a0a0; border: 1px solid rgba(160,50,44,.5); }
.alert-info    { background: rgba(80,50,150,.2);  color: #c4aff5; border: 1px solid rgba(100,70,180,.4); }

/* ─── Confirmation ───────────────────────────────────────────── */
.confirmation-box {
  text-align: center;
  padding: 70px 20px;
  max-width: 640px;
  margin: 0 auto;
}

.confirmation-icon {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(201,160,64,.6));
}

/* ─── Témoignages ────────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .2s, box-shadow .2s;
}
.testimonial-card:hover { border-color: var(--border-glow); box-shadow: var(--glow-violet); }

.testimonial-author { font-weight: 600; margin-top: 14px; color: var(--gold); font-size: 0.9rem; }

/* ─── Philosophie ────────────────────────────────────────────── */
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.philosophy-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  transition: border-color .2s, box-shadow .2s;
}
.philosophy-card:hover { border-color: var(--border-glow); box-shadow: var(--glow-gold); }
.philosophy-card .icon {
  font-size: 2.6rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,160,64,.5));
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: rgba(0,0,0,.6);
  border-top: 1px solid var(--border);
  padding: 52px 0;
  margin-top: 72px;
}

.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 28px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--ink-soft); transition: color .18s; }
.footer-links a:hover { color: var(--gold-bright); }
.site-footer .brand-mark { color: var(--gold); }
.site-footer p { color: var(--ink-soft); max-width: 40ch; margin-top: 8px; font-size: 0.9rem; }

/* ─── Admin ──────────────────────────────────────────────────── */
.admin-shell { display: grid; grid-template-columns: 230px 1fr; min-height: 100vh; }

.admin-sidebar {
  background: #07050f;
  border-right: 1px solid var(--border);
  padding: 36px 20px;
}

.admin-sidebar h3 {
  color: var(--gold-bright);
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 0 12px rgba(201,160,64,.4);
  margin-bottom: 28px;
}

.admin-sidebar a {
  display: block;
  padding: 11px 12px;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: all .18s;
  margin-bottom: 2px;
}

.admin-sidebar a:hover  { color: var(--gold-bright); background: rgba(201,160,64,.06); }
.admin-sidebar a.active { color: var(--gold-bright); background: rgba(201,160,64,.1); border-left: 2px solid var(--gold); }
.admin-sidebar hr { border-color: var(--border); margin: 20px 0; }

.admin-content { padding: 44px; background: var(--bg); }
.admin-content h1, .admin-content h2 { font-family: 'Cormorant Garamond', serif; color: var(--ink); }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(160deg, #13102200 0%, #0f0b1e 100%);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  border: 1px solid var(--border);
}

.admin-table th {
  padding: 14px 16px;
  background: rgba(124,92,191,.1);
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--border-glow);
  text-align: left;
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.92rem;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(124,92,191,.05); }
.admin-table img { width: 48px; height: 48px; object-fit: cover; border-radius: 8px; border: 1px solid var(--border-glow); }

.admin-login-box {
  max-width: 400px;
  margin: 100px auto;
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--glow-violet), 0 24px 60px rgba(0,0,0,.8);
  border: 1px solid var(--border-glow);
}

.admin-login-box h2 { text-align: center; color: var(--gold-bright); margin-bottom: 28px; }

/* ─── Statuts commandes ──────────────────────────────────────── */
.status-pill { padding: 4px 12px; border-radius: 999px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.05em; }
.status-en_attente { background: rgba(180,140,30,.15); color: #e2b84a; border: 1px solid rgba(180,140,30,.3); }
.status-payee      { background: rgba(40,120,60,.15);  color: #7ed98a; border: 1px solid rgba(40,120,60,.3); }
.status-annulee    { background: rgba(150,40,40,.15);  color: #f08080; border: 1px solid rgba(150,40,40,.3); }

.action-row { display: flex; gap: 8px; }
.action-row form { display: inline; }
.btn-small { padding: 8px 14px; font-size: 0.83rem; border-radius: 8px; }

/* ─── Cards dashboard admin ──────────────────────────────────── */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.stat-card .value { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--gold-bright); }
.stat-card .label { color: var(--ink-soft); font-size: 0.86rem; margin-top: 4px; }

/* ─── Nav highlight ──────────────────────────────────────────── */
.nav-highlight { color: var(--gold-bright) !important; font-weight: 600; }
.nav-highlight:hover { color: var(--gold) !important; }

/* ═══════════════════════════════════════════════════════════════
   PAGE RETOURS AFFECTIFS
═══════════════════════════════════════════════════════════════ */

/* Hero RA */
.ra-hero {
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(120,20,40,.35) 0%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 10% 20%, rgba(80,20,100,.3) 0%, transparent 60%);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.ra-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.ra-hero-text h1 {
  font-size: 3.6rem;
  line-height: 1.1;
  margin: 22px 0 22px;
  background: linear-gradient(135deg, #f0e5c0 0%, #e8607a 40%, #c9a040 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ra-hero-text p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; margin-bottom: 14px; max-width: 50ch; }
.ra-hero-sub { font-style: italic; }

.ra-hero-visual { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.ra-flame-ring {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(232,96,122,.5);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 0 40px rgba(200,60,80,.25), 0 0 80px rgba(200,60,80,.1), inset 0 0 30px rgba(200,60,80,.07);
  gap: 6px; padding: 20px;
}

.ra-flame-icon { font-size: 2.8rem; color: #e8607a; filter: drop-shadow(0 0 14px rgba(232,96,122,.7)); line-height: 1; }
.ra-flame-label strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold-bright); line-height: 1.1; }
.ra-flame-label span { font-size: 0.72rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .07em; }

.ra-hero-stats { display: flex; gap: 24px; justify-content: center; }
.ra-hero-stat { text-align: center; }
.ra-hero-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-bright); }
.ra-hero-stat span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; }

/* Bande urgence */
.ra-urgence-band {
  background: linear-gradient(90deg, rgba(120,20,40,.3) 0%, rgba(80,20,100,.25) 50%, rgba(120,20,40,.3) 100%);
  border-top: 1px solid rgba(232,96,122,.2);
  border-bottom: 1px solid rgba(232,96,122,.2);
  padding: 14px 0;
  text-align: center;
  color: #f0a0b0;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* Section vérité */
.ra-truth-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.ra-truth-text h2 {
  font-size: 2.2rem;
  background: linear-gradient(135deg, var(--ink) 0%, #e8607a 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.ra-truth-text p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }

.ra-truth-pillars { display: flex; flex-direction: column; gap: 20px; }
.ra-pillar {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border: 1px solid var(--border);
  border-left: 3px solid rgba(232,96,122,.5);
  border-radius: 12px;
  padding: 20px 22px;
  transition: border-color .2s;
}
.ra-pillar:hover { border-left-color: #e8607a; }
.ra-pillar-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: rgba(232,96,122,.3); display: block; line-height: 1; margin-bottom: 6px; }
.ra-pillar strong { color: var(--ink); font-size: 1rem; display: block; margin-bottom: 6px; }
.ra-pillar p { color: var(--ink-soft); font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* Artefacts RA */
.ra-artefacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.ra-artefact-card {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s, border-color .22s;
}
.ra-artefact-card:hover { border-color: rgba(232,96,122,.4); box-shadow: 0 0 30px rgba(232,96,122,.15), 0 16px 40px rgba(0,0,0,.6); }

.ra-artefact-featured {
  grid-column: 1 / -1;
  border-color: rgba(232,96,122,.35);
  box-shadow: 0 0 30px rgba(232,96,122,.12);
  position: relative;
}

.ra-artefact-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, #9a1f35, #e8607a);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .05em;
  box-shadow: 0 0 16px rgba(232,96,122,.4);
}

.ra-artefact-body { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.ra-artefact-image { aspect-ratio: 1/1; overflow: hidden; }
.ra-artefact-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ra-artefact-info {
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 12px;
}
.ra-artefact-info h3 { font-size: 1.6rem; margin: 0; color: var(--ink); }
.ra-artefact-why { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.7; margin: 0; flex: 1; }
.ra-artefact-why em { color: var(--gold); font-style: normal; }
.ra-artefact-price { font-size: 1.5rem; color: var(--gold-bright); font-family: 'Cormorant Garamond', serif; }

.ra-artefact-card > img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.ra-artefact-small-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.ra-artefact-small-body h3 { font-size: 1.25rem; margin: 0; }

/* Rituels */
.ra-rituels-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(40,15,70,.6) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ra-rituels-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ra-rituel-card {
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, box-shadow .2s;
}
.ra-rituel-card:hover { border-color: rgba(201,160,64,.3); box-shadow: var(--glow-gold); }

.ra-rituel-header { display: flex; align-items: flex-start; gap: 16px; }
.ra-rituel-icon { font-size: 2rem; color: var(--gold); filter: drop-shadow(0 0 8px rgba(201,160,64,.5)); flex-shrink: 0; margin-top: 2px; }
.ra-rituel-label { font-size: 0.72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.ra-rituel-header h3 { font-size: 1.3rem; margin: 0; color: var(--ink); }
.ra-rituel-moment { color: rgba(201,160,64,.7); font-size: 0.85rem; font-style: italic; margin: 0; }

.ra-rituel-steps {
  margin: 0; padding-left: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.ra-rituel-steps li { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.65; padding-left: 4px; }
.ra-rituel-steps strong { color: var(--ink); }
.ra-rituel-steps em { color: #f0c8a0; font-style: italic; }

.ra-rituel-note {
  background: rgba(201,160,64,.06);
  border-left: 3px solid rgba(201,160,64,.4);
  padding: 12px 14px;
  border-radius: 0 8px 8px 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.6;
  margin-top: auto;
}

/* Témoignages RA */
.ra-temoignages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ra-temoignage-card {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .2s;
}
.ra-temoignage-card:hover { border-color: var(--border-glow); }

.ra-temoignage-large {
  grid-column: 1 / -1;
  border-color: rgba(232,96,122,.25);
  background: linear-gradient(135deg, #1e0f1e 0%, #130f22 100%);
}

.ra-temoignage-header { display: flex; align-items: center; gap: 14px; }
.ra-temoignage-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b1a2a, #c9404a);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(200,60,80,.3);
}
.ra-temoignage-name { font-weight: 600; color: var(--ink); font-size: 0.92rem; }
.ra-temoignage-date { color: var(--ink-soft); font-size: 0.78rem; margin-top: 2px; }

.ra-temoignage-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
  border: none;
  padding: 0;
}
.ra-temoignage-text em { color: #f0c8a0; }

/* FAQ RA */
.ra-faq { display: flex; flex-direction: column; gap: 2px; max-width: 820px; margin: 0 auto; }
.ra-faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 8px;
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
}
.ra-faq-q {
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
  border-left: 3px solid rgba(232,96,122,.5);
}
.ra-faq-a {
  padding: 0 22px 18px 25px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}
.ra-faq-a a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* CTA final RA */
.ra-cta-final {
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(120,20,40,.4) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(20,10,35,.8) 100%);
  border-top: 1px solid rgba(232,96,122,.2);
  padding: 80px 0;
  margin-top: 40px;
}

.ra-cta-inner { text-align: center; max-width: 680px; margin: 0 auto; }
.ra-cta-icon {
  display: block;
  font-size: 3rem;
  color: #e8607a;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 16px rgba(232,96,122,.6));
}
.ra-cta-inner h2 {
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--ink) 0%, #e8607a 60%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.ra-cta-inner p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; margin-bottom: 32px; }
.ra-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.ra-cta-garantie { color: var(--ink-soft); font-size: 0.82rem; letter-spacing: .03em; }

/* Responsive RA */
@media (max-width: 860px) {
  .ra-hero-inner, .ra-truth-grid { grid-template-columns: 1fr; }
  .ra-hero-visual { order: -1; }
  .ra-artefacts-grid { grid-template-columns: 1fr; }
  .ra-artefact-body { grid-template-columns: 1fr; }
  .ra-artefact-featured { grid-column: auto; }
  .ra-rituels-grid, .ra-temoignages { grid-template-columns: 1fr; }
  .ra-temoignage-large { grid-column: auto; }
  .ra-hero-text h1 { font-size: 2.6rem; }
}

/* ─── Accroche & Garantie fiche produit ─────────────────────── */
.product-accroche {
  background: linear-gradient(135deg, rgba(124,92,191,.1) 0%, rgba(201,160,64,.07) 100%);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.accroche-icon { font-size: 1.8rem; color: var(--gold); filter: drop-shadow(0 0 8px rgba(201,160,64,.5)); line-height: 1; }
.accroche-title { font-size: 1.08rem; color: var(--ink); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.accroche-text { color: var(--ink-soft); font-size: 0.92rem; margin: 0; line-height: 1.65; }

.garantie-box {
  margin-top: 20px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}

.garantie-items { display: flex; flex-direction: column; gap: 14px; }

.garantie-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.garantie-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.garantie-item div { display: flex; flex-direction: column; gap: 2px; }
.garantie-item strong { color: var(--ink); font-size: 0.92rem; }
.garantie-item span { color: var(--ink-soft); font-size: 0.84rem; }

/* ─── Bande de réassurance ───────────────────────────────────── */
.reassurance-band {
  background: linear-gradient(90deg, #0f0b1e 0%, #130f22 50%, #0f0b1e 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.reassurance-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.reassurance-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reassurance-icon {
  font-size: 1.6rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201,160,64,.45));
  flex-shrink: 0;
}

.reassurance-item div { display: flex; flex-direction: column; gap: 2px; }
.reassurance-item strong { color: var(--ink); font-size: 0.92rem; }
.reassurance-item span { color: var(--ink-soft); font-size: 0.8rem; }

.reassurance-sep {
  width: 1px;
  height: 40px;
  background: var(--border-glow);
  flex-shrink: 0;
}

/* ─── Section garantie homepage ──────────────────────────────── */
.garantie-section { position: relative; }

.garantie-section-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  background: linear-gradient(135deg, #16112a 0%, #0d0a1e 100%);
  border: 1px solid var(--border-glow);
  border-radius: 24px;
  padding: 56px 60px;
  box-shadow: var(--glow-violet);
}

.garantie-big-icon {
  display: block;
  font-size: 2.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(201,160,64,.6));
  margin-bottom: 16px;
}

.garantie-section-text h2 {
  font-size: 2.4rem;
  margin: 0 0 18px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.garantie-section-text p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 52ch;
}

.garantie-section-text strong { color: var(--ink); }

.garantie-detail { font-size: 0.9rem !important; }
.garantie-detail a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

.garantie-badge-ring {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--glow-gold), inset 0 0 30px rgba(201,160,64,.08);
  padding: 16px;
  flex-shrink: 0;
}

.garantie-badge-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 20px rgba(201,160,64,.5);
}

.garantie-badge-sub {
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-top: 6px;
}

/* ─── Footer amélioré ────────────────────────────────────────── */
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-bottom: 10px;
}

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  transition: color .18s;
}
.footer-contact-link:hover { color: var(--gold-bright); }

.contact-icon { color: var(--gold); font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 20px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

/* ─── Page Contact ───────────────────────────────────────────── */
.contact-page { padding: 72px 0; max-width: 900px; margin: 0 auto; }

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-star {
  display: block;
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(201,160,64,.6));
}

.contact-header h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px;
}

.contact-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.contact-card {
  background: linear-gradient(160deg, #16112a 0%, #0f0b1e 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .22s, border-color .22s;
}
.contact-card:hover { box-shadow: var(--glow-violet); border-color: var(--violet); }

.contact-card-icon {
  font-size: 2.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 10px rgba(201,160,64,.5));
  line-height: 1;
}

.session-icon { color: var(--violet); filter: drop-shadow(0 0 10px rgba(124,92,191,.5)); }

.contact-card h2 {
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0;
}

.contact-card-desc {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.email-value {
  display: inline-block;
  color: var(--gold-bright);
  font-size: 0.95rem;
  word-break: break-all;
  transition: color .18s;
}
.email-value:hover { color: var(--gold); }

.contact-btn { align-self: flex-start; margin-top: auto; }

/* Session ID box */
.session-id-box {
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.session-id-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.session-id {
  font-family: monospace;
  font-size: 0.78rem;
  color: var(--gold-bright);
  word-break: break-all;
  line-height: 1.6;
  background: none;
  border: none;
  padding: 0;
}

.copy-btn {
  align-self: flex-start;
  background: rgba(124,92,191,.15);
  border: 1px solid rgba(124,92,191,.35);
  color: #c4aff5;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
}
.copy-btn:hover { background: rgba(124,92,191,.28); border-color: var(--violet); }
.copy-btn.copied { background: rgba(40,120,60,.2); border-color: rgba(60,160,80,.4); color: #7ed98a; }

.contact-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 20px 28px;
  background: rgba(124,92,191,.07);
  border: 1px solid var(--border);
  border-radius: 12px;
  line-height: 1.7;
}

.contact-note-icon { color: var(--gold); margin-right: 6px; }
.contact-note strong { color: var(--ink); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero, .product-detail { grid-template-columns: 1fr; }
  .stats, .product-grid, .testimonial-grid, .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .garantie-section-inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .garantie-badge-ring { margin: 0 auto; }
  .reassurance-inner { justify-content: center; }
  .reassurance-sep { display: none; }
}

@media (max-width: 560px) {
  .stats, .product-grid, .testimonial-grid, .philosophy-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .section-title { font-size: 1.9rem; }
}
