/* CALENDIA — thème de la boutique */

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  src: url("../fonts/inter/inter-var.woff2") format("woff2");
  font-display: swap;
}

:root {
  --ink: #111111;
  --ink-soft: #444444;
  --line: #ebebeb;
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --accent: #d0473e;
  --accent-soft: #fbeceb;
  --brand: #2db8bc;
  --gold: #e8ab00;
  --green: #17803d;
  --radius: 14px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
/* les attributs width/height servent au ratio, pas a figer la hauteur */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Announcement bar (carrousel) */
.announce {
  position: relative;
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 9px 12px;
  overflow: hidden;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.announce.is-carousel { padding: 0; }
.ann-viewport { overflow: hidden; }
.ann-track { display: flex; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.ann-item {
  flex: 0 0 100%; padding: 9px 38px; font-weight: 600; letter-spacing: 0.08em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ann-nav {
  position: absolute; top: 0; bottom: 0; width: 36px; border: none; background: none;
  color: #fff; opacity: 0.6; display: flex; align-items: center; justify-content: center; padding: 0;
}
.ann-nav:hover { opacity: 1; }
.ann-prev { left: 0; }
.ann-next { right: 0; }
@media (max-width: 420px) {
  .ann-item { padding: 9px 32px; font-size: 11.5px; letter-spacing: 0.06em; }
}

/* Header */
header.site {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.header-row .icon-btn {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.header-row .side { display: flex; gap: 20px; align-items: center; width: 90px; }
.header-row .side.right { justify-content: flex-end; }
.logo-mark {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  line-height: 1; text-align: center;
}
.lm-name {
  font-family: "Playfair Display", Didot, "Bodoni MT", Georgia, "Times New Roman", serif;
  font-size: 22px; font-weight: 500; letter-spacing: 0.11em; text-indent: 0.11em;
  color: var(--ink);
}
.lm-sub {
  font-size: 7.5px; font-weight: 700; letter-spacing: 0.19em; text-indent: 0.19em;
  color: var(--ink); white-space: nowrap;
}
@media (max-width: 420px) {
  .lm-name { font-size: 19px; letter-spacing: 0.09em; text-indent: 0.09em; }
  .lm-sub { font-size: 6.5px; letter-spacing: 0.15em; text-indent: 0.15em; }
}

/* Trust row under logo (home) */
.trust-strip {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 12px 22px; text-align: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-soft);
}
.trust-strip b { color: var(--ink); letter-spacing: 0.03em; }
.trust-strip .tp-stars { display: inline-flex; gap: 2px; }
.trust-strip .tp-stars svg { width: 17px; height: 17px; }
.stars { color: var(--gold); letter-spacing: 2px; }

/* ---------- Accueil ---------- */
.home-hero { background: #04121f; aspect-ratio: 21/9; overflow: hidden; }
.home-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; display: block; }
@media (max-width: 900px) { .home-hero { aspect-ratio: 4/3; } }
@media (max-width: 560px) { .home-hero { aspect-ratio: 1/1; }
  .home-hero img { object-position: center; } }

.home-products { padding: 0 0 10px; }

/* Section heading */
.section-title { text-align: center; font-size: 25px; font-weight: 600; margin: 40px 0 22px; }

/* Grille produits */
.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
}
@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 12px; } }

.pcard { display: flex; flex-direction: column; }
.pc-media {
  position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 4px;
  background: var(--bg-soft);
}
.pc-link { display: block; width: 100%; height: 100%; }
.pc-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .4s ease, transform .6s ease;
}
.pc-media .pc-hover { opacity: 0; }
.pc-media:hover .pc-hover { opacity: 1; }
.pc-media:hover .pc-main { opacity: 0; }
.pc-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: 4px; letter-spacing: 0.02em;
}
.pc-actions {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(6px); transition: opacity .25s ease, transform .25s ease;
}
.pc-media:hover .pc-actions { opacity: 1; transform: none; }
.pc-act {
  width: 34px; height: 34px; border-radius: 50%; border: none; background: #fff;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12); transition: background .18s ease, color .18s ease;
}
.pc-act:hover { background: var(--ink); color: #fff; }
@media (hover: none) {
  .pc-actions { opacity: 1; transform: none; }
  .pc-media .pc-hover { display: none; }
}

.pc-body { padding: 13px 2px 0; }
.pc-title {
  display: block; font-size: 14px; font-weight: 500; line-height: 1.35;
  margin-bottom: 7px; color: var(--ink);
}
.pc-title:hover { text-decoration: underline; text-underline-offset: 3px; }
.pc-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.pc-now { color: var(--accent); font-weight: 600; font-size: 15px; }
.pc-compare { color: #a0a0a6; font-size: 13px; }

/* Trust badges band */
.badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: var(--maxw); margin: 44px auto 6px; padding: 30px 24px; border-top: 1px solid var(--line);
}
.badges-dots { display: none; justify-content: center; gap: 8px; margin: 4px 0 26px; }
.badges-dots button {
  width: 7px; height: 7px; padding: 0; border: none; border-radius: 50%;
  background: #d3d3d8; transition: background .2s ease, width .2s ease;
}
.badges-dots button.on { background: var(--ink); width: 20px; border-radius: 99px; }

@media (max-width: 720px) {
  .badges {
    display: flex; grid-template-columns: none; gap: 0; text-align: center;
    overflow-x: auto; scroll-snap-type: x mandatory; padding: 30px 0 8px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .badges::-webkit-scrollbar { display: none; }
  .badges .item { flex: 0 0 100%; scroll-snap-align: center; padding: 0 32px; }
  .badges-dots { display: flex; }
}
.badges .item h3 { font-size: 15px; margin: 10px 0 6px; font-weight: 600; }
.badges .item p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.badges .item svg { color: var(--ink); }

/* ---------- Footer sombre ---------- */
footer.site {
  background: #121212;
  color: #e9e9ea;
  padding: 42px 0 26px;
  font-size: 14px;
}
.foot-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 46px; }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 0; } }

.foot-col h4 {
  font-size: 15px; font-weight: 600; margin: 0 0 18px; color: #fff; letter-spacing: 0.01em;
}
.foot-col p { margin: 0 0 14px; color: #b9b9bd; line-height: 1.6; }
.foot-col a { color: #b9b9bd; }
.foot-col a:hover { color: #fff; }
.foot-links { display: flex; flex-direction: column; gap: 12px; }

.foot-social { display: flex; gap: 12px; margin-top: 22px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid #4a4a4e;
  display: flex; align-items: center; justify-content: center; color: #e9e9ea;
  transition: background .18s ease, border-color .18s ease;
}
.foot-social a:hover { background: #fff; border-color: #fff; color: #121212; }

/* colonnes repliables sur mobile */
.foot-col + .foot-col { border-top: 1px solid #2c2c30; padding-top: 22px; margin-top: 22px; }
@media (min-width: 861px) { .foot-col + .foot-col { border-top: none; padding-top: 0; margin-top: 0; } }

.news-toggle {
  width: 100%; background: none; border: none; color: #fff; padding: 0 0 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-size: 15px; font-weight: 600; font-family: inherit; text-align: left;
}
.news-toggle .sign { font-size: 20px; font-weight: 400; line-height: 1; }
.news-body { display: none; }
.news.open .news-body { display: block; }
.news.open .news-toggle .sign::before { content: "−"; }
.news .news-toggle .sign::before { content: "+"; }
.news-form { display: flex; gap: 10px; flex-wrap: wrap; }
.news-form input {
  flex: 1; min-width: 190px; background: #1d1d20; border: 1px solid #3a3a3f; color: #fff;
  border-radius: 8px; padding: 13px 14px; font-family: inherit; font-size: 14px;
}
.news-form input::placeholder { color: #7d7d84; }
.news-form input:focus { outline: none; border-color: #fff; }
.news-form button {
  background: #fff; color: #121212; border: none; border-radius: 8px;
  padding: 13px 22px; font-weight: 600; font-size: 13.5px; letter-spacing: 0.03em;
}
.news-note { color: #8b8b91; font-size: 12px; margin: 10px 0 0; }
.news-ok { color: #6bd39a; font-size: 13px; font-weight: 600; margin: 10px 0 0; }

.foot-bottom {
  border-top: 1px solid #2c2c30; margin-top: 38px; padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: #8b8b91; font-size: 12.5px;
}
.foot-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-bottom a { color: #8b8b91; }
.foot-bottom a:hover { color: #fff; }

/* ---------- Product page ---------- */
.pp {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  max-width: var(--maxw); margin: 22px auto 0; padding: 0 24px;
}
@media (max-width: 680px) { .pp { grid-template-columns: 1fr; gap: 22px; } }

.gallery {
  display: flex; gap: 12px; min-width: 0; align-items: flex-start;
  position: sticky; top: 104px; align-self: start;
}
@media (max-width: 680px) { .gallery { position: static; } }
.thumbs { display: flex; flex-direction: column; gap: 10px; width: 76px; flex-shrink: 0; }
.thumbs img {
  border-radius: 10px; border: 1.5px solid var(--line); cursor: pointer;
  aspect-ratio: 1/1; object-fit: cover; width: 100%;
}
.thumbs img.active { border-color: var(--ink); }
.main-image { flex: 1; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); aspect-ratio: 1/1; }
.main-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) {
  .gallery { flex-direction: column-reverse; }
  .thumbs {
    flex-direction: row; width: 100%; max-width: 100%; overflow-x: auto;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .thumbs::-webkit-scrollbar { display: none; }
  .thumbs img { width: 62px; height: 62px; flex-shrink: 0; }
}

.pp-info .rating {
  display: flex; align-items: center; gap: 8px; margin-bottom: 11px;
  font-size: 13px; color: var(--ink); white-space: nowrap;
}
.pp-info .rating .avatars { display: flex; align-items: center; flex-shrink: 0; }
.pp-info .rating .avatars img { height: 26px; width: auto; }
.pp-info .rating .rtxt { font-weight: 400; overflow: hidden; text-overflow: ellipsis; }
.pp-info .rating .rtxt b { font-weight: 600; }
@media (max-width: 420px) {
  .pp-info .rating { font-size: 12px; gap: 7px; }
  .pp-info .rating .avatars img { height: 22px; }
}
.pp-info h1 { font-size: 25px; margin: 0 0 13px; font-weight: 600; line-height: 1.28; letter-spacing: -0.01em; }
.price-block { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price-block .now { color: var(--accent); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; }
.price-block .was { color: #9a9a9a; text-decoration: line-through; font-size: 14px; font-weight: 400; }

.gift-box {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px dashed #cfcfd4; border-radius: 12px;
  padding: 12px 15px; margin-bottom: 19px; background: #fff;
}
.gift-box img {
  width: 52px; height: 52px; object-fit: contain; border-radius: 10px;
  background: var(--bg-soft); padding: 4px; flex-shrink: 0;
}
.gift-box .txt { flex: 1; min-width: 0; }
.gift-box .gname { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
.gift-box .gsub { display: block; font-size: 13px; color: var(--ink-soft); line-height: 1.4; }
.gift-box .gsub b { color: var(--ink); font-weight: 600; }
.gift-box .gright { text-align: right; flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 7px; }
.gift-box .gwas { color: #9a9a9a; text-decoration: line-through; font-size: 13.5px; font-weight: 400; }
.gift-box .tag {
  background: #d8f5e3; color: #0f7a3d; font-size: 12.5px; font-weight: 600;
  padding: 5px 13px; border-radius: 99px;
}
@media (max-width: 560px) {
  .gift-box { gap: 9px; padding: 8px 10px; margin-bottom: 15px; }
  .gift-box img { width: 40px; height: 40px; padding: 3px; border-radius: 8px; }
  .gift-box .gname {
    font-size: 12.5px; margin-bottom: 1px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .gift-box .gsub { font-size: 11px; line-height: 1.3; }
  .gift-box .gright { gap: 4px; }
  .gift-box .gwas { font-size: 11.5px; }
  .gift-box .tag { font-size: 10.5px; padding: 3px 9px; }
}

.feature-list { margin: 0 0 20px; display: flex; flex-direction: column; gap: 13px; }
.feature-list li { display: flex; gap: 11px; font-size: 14.5px; line-height: 1.45; align-items: flex-start; }
.feature-list .chk {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feature-list .chk svg { color: #fff; }
.feature-list b { font-weight: 600; }

.urgency {
  background: #fdf5dd; color: #1c1c1c; text-align: center;
  border-radius: 8px; padding: 11px 12px; font-size: 13.5px; font-weight: 500; margin-bottom: 17px;
}
.urgency span.clock { font-variant-numeric: tabular-nums; }

/* ---- Bundle / buy box ---- */
.buybox { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.bopt {
  position: relative; border: 1px solid #ddd; border-radius: 10px; cursor: pointer;
  background: #fff; margin-top: 12px;
}
.bopt.selected { border: 2px solid var(--ink); }
.bopt .guarantee {
  position: absolute; bottom: 100%; right: -1px; background: var(--ink); color: #fff;
  font-size: 11.5px; font-weight: 500; padding: 3px 12px; border-radius: 5px 5px 0 0; line-height: 1.6;
}
.bopt.selected .guarantee { right: -2px; }
.bopt .bopt-main { display: flex; align-items: flex-start; gap: 12px; padding: 18px 16px 14px; }
.bopt .radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #bdbdbd; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.bopt.selected .radio { border-color: var(--ink); }
.bopt.selected .radio::after { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); }
.bopt .bopt-body { flex: 1; min-width: 0; }
.bopt .title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.bopt .label { font-weight: 600; font-size: 19px; letter-spacing: -0.01em; }
.bopt .save-tag { background: var(--accent-soft); color: var(--accent); font-size: 11.5px; font-weight: 600; padding: 4px 9px; border-radius: 6px; }
.bopt .prices { text-align: right; flex-shrink: 0; }
.bopt .prices .now { display: block; color: var(--accent); font-weight: 600; font-size: 18px; }
.bopt .prices .was { display: block; color: #9a9a9a; text-decoration: line-through; font-size: 13.5px; font-weight: 400; margin-top: 2px; }
.bopt .variant-row { margin-top: 12px; display: none; }
.bopt.selected .variant-row { display: block; }
.bopt .variant-row .vlabel { font-size: 13px; color: var(--ink-soft); font-weight: 400; margin-bottom: 7px; }
.bopt .variant-pick { display: flex; align-items: center; gap: 10px; }
.bopt .variant-pick img { width: 44px; height: 34px; object-fit: cover; border-radius: 6px; border: 1px solid var(--line); }
.bopt .variant-pick select {
  border: 1px solid #ccc; border-radius: 6px; padding: 7px 10px; font-family: inherit; font-size: 14px; background: #fff;
}
.bopt .gift-bar {
  display: flex; align-items: center; gap: 10px; padding: 9px 14px;
  background: #b4b4b4; color: #fff; font-size: 13px; font-weight: 600;
  border-radius: 0 0 8px 8px;
}
.bopt.selected .gift-bar { background: var(--ink); }
.bopt .gift-bar img { width: 26px; height: 26px; object-fit: cover; border-radius: 4px; }
.bopt .gift-bar .gname { flex: 1; }
.bopt .gift-bar .gprice { text-decoration: line-through; opacity: 0.85; font-weight: 400; }

.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 8px; }
.qty-stepper button { background: none; border: none; width: 34px; height: 36px; font-size: 16px; }
.qty-stepper span { width: 30px; text-align: center; font-weight: 600; }

.add-cart {
  width: 100%; background: var(--ink); color: #fff; border: none; border-radius: 999px;
  padding: 18px; font-size: 15px; font-weight: 600; letter-spacing: 0.05em;
}
.add-cart:active { transform: scale(0.99); }
.secure-note { text-align: center; font-size: 13px; font-weight: 500; margin: 16px 0 10px; }

.pay-icons { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.pay-icons .payment-icon { width: 38px; height: 24px; }

/* ---- Accordions ---- */
.accordions { border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc-head {
  width: 100%; background: none; border: none; text-align: left; padding: 17px 2px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 14.5px; font-weight: 600; color: var(--ink);
}
.acc-head .sign { font-size: 20px; font-weight: 400; line-height: 1; color: var(--ink-soft); }
.acc.open .acc-head .sign::before { content: "−"; }
.acc .acc-head .sign::before { content: "+"; }
.acc-body { display: none; padding: 0 2px 20px; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }
.acc.open .acc-body { display: block; }
.acc-body ul { display: flex; flex-direction: column; gap: 7px; }
.acc-body ul li { padding-left: 16px; position: relative; }
.acc-body ul li::before { content: "•"; position: absolute; left: 2px; }
.acc-body p { margin: 0 0 10px; }
.acc-body b { color: var(--ink); }

/* ---- Press marquee ---- */
.press { padding: 26px 0 24px; background: var(--bg-soft); overflow: hidden; margin-top: 34px; }
.press h4 { text-align: center; font-size: 13px; letter-spacing: 0.14em; font-weight: 600; margin: 0 0 22px; }
.press-track { display: flex; width: max-content; animation: press-scroll 32s linear infinite; will-change: transform; }
.press-track:hover { animation-play-state: paused; }
.press-track .row { display: flex; align-items: center; gap: 64px; padding-right: 64px; }
.press-track img { height: 30px; width: auto; object-fit: contain; }
@keyframes press-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .press-track .row { gap: 40px; padding-right: 40px; } .press-track img { height: 24px; } }

/* ---- UGC / social proof ---- */
.ugc { text-align: center; padding: 44px 24px 34px; }
.ugc h2 { font-size: clamp(26px, 4.1vw, 40px); font-weight: 600; margin: 0 0 10px; letter-spacing: -0.02em; }
.ugc h2 .thin { font-weight: 400; }
.ugc .sub { font-size: 15px; font-weight: 500; margin: 0 0 28px; }
.ugc-viewport { position: relative; max-width: var(--maxw); margin: 0 auto; }
.ugc-row {
  display: flex; gap: 16px; justify-content: center; overflow-x: auto;
  padding: 4px 24px 8px; scroll-snap-type: x mandatory;
}
.ugc-card {
  position: relative; flex: 0 0 auto; width: 208px; border-radius: 12px; overflow: hidden;
  background: #000; scroll-snap-align: center;
}
.ugc-card img,
.ugc-card video { width: 100%; height: 368px; object-fit: cover; display: block; }
.ugc-card .handle {
  position: absolute; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.82); color: #fff;
  font-size: 13px; padding: 9px 6px; font-weight: 500;
}
.ugc-card .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.92); color: var(--ink);
  display: flex; align-items: center; justify-content: center; padding-left: 3px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28); transition: transform .18s ease, opacity .18s ease;
}
.ugc-card .play:hover { transform: translate(-50%, -50%) scale(1.08); }
.ugc-card.playing .play { opacity: 0; pointer-events: none; }
.ugc-card .sound {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: rgba(0,0,0,0.55); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.ugc-card .sound:hover { background: rgba(0,0,0,0.78); }
.ugc-card .sound.muted { opacity: 0.75; }

.ugc-nav button {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.96); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 14px rgba(0,0,0,0.16); transition: transform .15s ease;
}
.ugc-nav button:hover { transform: translateY(-50%) scale(1.07); }
.ugc-nav .ugc-prev { left: 8px; }
.ugc-nav .ugc-next { right: 8px; }
@media (max-width: 760px) { .ugc-nav button { display: none; } }

@media (max-width: 600px) {
  .ugc-card { width: 176px; }
  .ugc-card img, .ugc-card video { height: 312px; }
}

/* ---- Page contact ---- */
.contact-hero { text-align: center; padding: 42px 24px 28px; }
.contact-hero h1 { font-size: clamp(28px, 4.2vw, 42px); font-weight: 600; margin: 0 0 10px; letter-spacing: -0.02em; }
.contact-hero p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

.contact-wrap {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 40px;
  max-width: 1040px; margin: 0 auto 40px; padding: 0 24px; align-items: start;
}
@media (max-width: 820px) { .contact-wrap { grid-template-columns: 1fr; gap: 28px; } }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .contact-form .cf-row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 500; }
.contact-form label small { color: var(--ink-soft); font-weight: 400; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line); border-radius: 10px; padding: 13px 14px;
  font-family: inherit; font-size: 14.5px; color: var(--ink); background: #fff; width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--ink); }
.contact-form textarea { resize: vertical; }
.cf-send {
  background: var(--ink); color: #fff; border: none; border-radius: 99px;
  padding: 17px; font-size: 15px; font-weight: 600; letter-spacing: 0.04em; margin-top: 4px;
}
.cf-send:disabled { background: var(--green); }
.cf-note { text-align: center; font-size: 12.5px; color: var(--ink-soft); margin: 0; }
.cf-ok {
  background: #eefaf2; color: var(--green); border: 1px solid #b6e0c6;
  border-radius: 10px; padding: 13px 16px; font-size: 14px; font-weight: 600; text-align: center;
}

.contact-side { display: flex; flex-direction: column; gap: 14px; }
.cs-card { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: var(--bg-soft); }
.cs-card h3 { margin: 0 0 8px; font-size: 14.5px; font-weight: 600; }
.cs-card p { margin: 0 0 6px; font-size: 13.5px; line-height: 1.55; color: var(--ink-soft); }
.cs-card p:last-child { margin-bottom: 0; }
.cs-card b { color: var(--ink); }

/* ---- FAQ ---- */
.faq-section { max-width: 720px; margin: 16px auto 52px; padding: 0 40px; }
.faq-section h2 {
  text-align: center; font-size: clamp(26px, 3.6vw, 36px); font-weight: 600;
  margin: 0 0 24px; letter-spacing: -0.02em;
}
.faq-section .acc-head { font-size: 15px; padding: 19px 4px; gap: 24px; }
.faq-section .acc-body { padding: 0 4px 22px; }
.faq-section .acc-body p { margin: 0; }

/* ---- Trustpilot stars ---- */
.tp-stars { display: inline-flex; gap: 2px; vertical-align: middle; }
.tp-stars svg { width: 22px; height: 22px; }
.tp-stars.sm svg { width: 17px; height: 17px; }

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 10px; font-size: 14px;
  opacity: 0; pointer-events: none; transition: all .25s ease; z-index: 200;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* Detail sections */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
  max-width: var(--maxw); margin: 34px auto; padding: 0 24px;
}
/* en colonne, l'image est deja tres aeree : on resserre l'espacement */
@media (max-width: 800px) {
  .split-section { margin: 6px auto 14px; gap: 8px; }
  .split-section + .split-section { margin-top: 0; }
  .split-section img { border-radius: 10px; }
}
.split-section.rev { direction: rtl; }
.split-section.rev > * { direction: ltr; }
.split-section img {
  border-radius: var(--radius); width: 100%; height: auto; object-fit: cover;
}
.split-section h2 { font-size: 23px; font-weight: 600; margin: 0 0 13px; }
.split-section p { color: var(--ink-soft); line-height: 1.65; font-size: 15px; margin: 0 0 12px; }
.split-section.is-centered > div { text-align: center; padding: 0 10px; }
.split-section.is-centered h2 { margin-bottom: 16px; }
.split-section.is-centered p { color: var(--ink); }
.split-section.is-centered img { aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 800px) { .split-section.is-centered > div { text-align: left; padding: 0; } }

@media (max-width: 800px) { .split-section, .split-section.rev { grid-template-columns: 1fr; direction: ltr; } }

.social-band { text-align: center; padding: 34px 24px 0; }
.social-band .count { font-size: 17px; font-weight: 500; }
.social-band .rate { margin: 6px 0 0; font-size: 16px; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 8px; }

.reviews-title { text-align: center; font-size: clamp(27px, 3.9vw, 38px); font-weight: 600; margin: 15px 0 30px; letter-spacing: -0.02em; }
.reviews {
  display: flex; gap: 20px; max-width: var(--maxw); margin: 0 auto; padding: 0 24px 42px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 24px;
}
.reviews, .ugc-row { scrollbar-width: none; -ms-overflow-style: none; }
.reviews::-webkit-scrollbar, .ugc-row::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 auto; width: 232px; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; display: flex; flex-direction: column; scroll-snap-align: start; background: #fff;
}
/* les photos produit sont carrees : un bandeau 178px n'en montrait qu'une tranche */
.review-card > img,
.review-card > picture > img {
  width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover;
  background: var(--bg-soft);
}
.review-card .rc-body { padding: 16px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.review-card p { font-size: 14px; line-height: 1.5; color: var(--ink); margin: 0 0 16px; flex: 1; }
.review-card .rc-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.review-card .verified { background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink); font-size: 11.5px; font-weight: 500; padding: 3px 8px; border-radius: 4px; }
.review-card .who { font-size: 13.5px; font-weight: 600; }
@media (max-width: 600px) { .review-card { width: 78vw; } }

.mini-badges { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-soft); margin: 18px 0 6px; }
.mini-badges span { display: flex; align-items: center; gap: 6px; }

/* petit badge "spoiler" dans l'intitulé d'accordéon */
.acc-spoiler {
  background: var(--bg-soft); color: var(--ink-soft); border-radius: 5px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; margin-left: 9px; vertical-align: 2px;
}
.acc-body ul li b { color: var(--ink); }

/* ---- Fiche calendrier : bandeau live, note, tags, stock ---- */
.live-strip { height: 21px; overflow: hidden; margin-bottom: 13px; }
.live-track { display: flex; flex-direction: column; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.live-item {
  height: 21px; margin: 0; display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--ink-soft); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.live-item svg { color: var(--ink); flex-shrink: 0; }
.live-item b { color: var(--ink); font-weight: 600; }
@media (prefers-reduced-motion: reduce) { .live-track { transition: none; } }

.rating-line { display: flex; align-items: center; gap: 9px; margin: 0 0 12px; flex-wrap: wrap; }
.rating-line .rtxt { font-size: 13.5px; color: var(--ink); }
.rating-line .rtxt b { font-weight: 700; }
.rating-line .sep { color: #c9c9cf; margin: 0 2px; }

.ptags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 17px; }
.ptag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 6px; background: var(--bg-soft); color: var(--ink-soft);
  white-space: nowrap;
}
.ptag.hot { background: var(--green); color: #fff; }

.value-line {
  margin: 0 0 17px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-soft);
  display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap;
}
.value-line b { color: var(--ink); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }

.stock-wrap {
  margin: -4px 0 16px; padding: 13px 15px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 0 0 10px 10px; border-top: none;
}
.stock-bar {
  height: 7px; border-radius: 99px; background: var(--bg-soft); overflow: hidden;
  border: 1px solid var(--line);
}
.stock-bar i {
  display: block; height: 100%; border-radius: 99px;
  background: linear-gradient(90deg, #e8664f, var(--accent));
}
.stock-note { margin: 8px 0 0; font-size: 12.5px; color: var(--ink-soft); text-align: center; }
.stock-note b { color: var(--accent); font-weight: 600; }

/* ---- Fenêtre de livraison ---- */
.ship-eta {
  display: flex; align-items: flex-start; gap: 12px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft);
  padding: 13px 15px; margin-bottom: 16px;
}
.ship-eta > svg { color: var(--ink); flex-shrink: 0; margin-top: 1px; }
.se-txt { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.se-main { font-size: 13.5px; line-height: 1.4; color: var(--ink-soft); }
.se-main b { color: var(--ink); font-weight: 600; }
.se-sub { font-size: 12px; line-height: 1.45; color: var(--ink-soft); }

/* focus visible au clavier */
.thumbs img:focus-visible,
.acc-head:focus-visible,
.add-cart:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---- Offres : vrais boutons radio + prix unitaire ---- */
.bopt-radio {
  position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; pointer-events: none;
}
.bopt-radio:focus-visible + .radio { outline: 2px solid var(--ink); outline-offset: 3px; }
.bopt .unit { display: block; margin-top: 6px; font-size: 13px; color: var(--ink-soft); }
.bopt .unit b { color: var(--ink); font-weight: 600; }

/* prix repris dans le bouton d'ajout */
.add-cart { display: flex; align-items: center; justify-content: center; gap: 10px; }
.ac-price { font-weight: 700; }
.ac-price:not(:empty)::before {
  content: "·"; margin-right: 10px; opacity: 0.45; font-weight: 400;
}

/* ---- Barre d'achat collante (mobile) ---- */
.buy-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.07);
  transform: translateY(110%); transition: transform .25s ease;
}
.buy-bar.on { transform: none; }
.buy-bar img { width: 42px; height: 42px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
.buy-bar .bb-txt { flex: 1; min-width: 0; line-height: 1.25; }
.buy-bar .bb-name {
  display: block; font-size: 12.5px; color: var(--ink-soft);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.buy-bar .bb-price { display: block; font-size: 16px; font-weight: 700; color: var(--accent); }
.buy-bar button {
  flex-shrink: 0; background: var(--ink); color: #fff; border: none; border-radius: 99px;
  padding: 14px 22px; font-family: inherit; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.04em;
}
@media (max-width: 860px) { .buy-bar { display: flex; } }
@media (prefers-reduced-motion: reduce) { .buy-bar { transition: none; } }

/* ---- Aperçu de la sélection : cartes à révéler ---- */
.lineup { padding: 40px 0 10px; }
.lp-head { max-width: var(--maxw); margin: 0 auto 20px; padding: 0 24px; }
.lp-head h2 { font-size: clamp(21px, 3.2vw, 28px); font-weight: 700; margin: 0 0 5px; letter-spacing: -0.02em; }
.lp-head p { margin: 0; font-size: 12px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-soft); }

.lp-row {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 24px 14px; scroll-padding: 24px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.lp-row::-webkit-scrollbar { display: none; }

.lp-card {
  position: relative; flex: 0 0 auto; width: 236px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff;
  overflow: hidden; scroll-snap-align: start;
}
.lp-face { display: flex; flex-direction: column; height: 100%; padding: 12px 14px 16px; }
.lp-shot { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: contain; border-radius: 8px; background: var(--bg-soft); }
.lp-brand { font-size: 14.5px; font-weight: 700; margin: 13px 0 3px; letter-spacing: -0.01em; }
.lp-name { margin: 0 0 9px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.35; }
.lp-format { align-self: flex-start; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); background: var(--bg-soft); border-radius: 5px; padding: 4px 8px; margin-bottom: 9px; }
.lp-rating { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--ink-soft); margin-bottom: 9px; }
.lp-stars { display: inline-flex; gap: 1px; }
.lp-star { width: 13px; height: 13px; color: #d7d7dc; display: block; }
.lp-star svg { width: 13px; height: 13px; display: block; }
.lp-star.on { color: var(--ink); }
.lp-star.half { color: var(--ink); clip-path: inset(0 50% 0 0); }
.lp-desc { margin: 0 0 13px; font-size: 12.5px; line-height: 1.5; color: var(--ink-soft); flex: 1; }
.lp-more, .lp-stock {
  display: block; text-align: center; border-radius: 8px; padding: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
}
.lp-more { border: 1.5px solid var(--ink); color: var(--ink); margin-bottom: 8px; }
.lp-stock { border: 1.5px solid var(--line); color: #a3a3a9; }

/* cache irisé */
.lp-cover {
  position: absolute; inset: 0; border: none; padding: 0; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  background: #efe7f6; transition: opacity .35s ease, transform .35s ease;
}
.lp-shine {
  position: absolute; inset: -30%;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,214,235,0.95), transparent 46%),
    radial-gradient(circle at 78% 26%, rgba(206,231,255,0.95), transparent 44%),
    radial-gradient(circle at 32% 76%, rgba(215,205,255,0.95), transparent 46%),
    radial-gradient(circle at 74% 84%, rgba(255,232,206,0.9), transparent 44%),
    linear-gradient(150deg, #f6e7f4, #e3ecfb 45%, #efe4fa);
}
.lp-shine::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image:
    radial-gradient(rgba(255,255,255,0.95) 0.7px, transparent 0.8px),
    radial-gradient(rgba(255,255,255,0.7) 0.6px, transparent 0.7px);
  background-size: 9px 9px, 14px 14px;
  background-position: 0 0, 5px 7px;
}
.lp-hint {
  position: relative; z-index: 1; text-align: center; line-height: 1.25;
  font-family: Georgia, "Times New Roman", serif; font-size: 25px; color: #2f2b33;
}
.lp-hint em { display: block; font-size: 27px; }
.lp-card.open .lp-cover { opacity: 0; transform: scale(1.03); pointer-events: none; }
.lp-cover:focus-visible { outline: 2px solid var(--ink); outline-offset: -4px; }
@media (prefers-reduced-motion: reduce) { .lp-cover { transition: none; } }

@media (max-width: 560px) {
  .lp-row { padding: 6px 12px 14px; scroll-padding: 12px; gap: 12px; }
  .lp-head { padding: 0 12px; }
  .lp-card { width: 212px; }
}

/* avis sans photo : la carte se resserre sur le texte */
.review-card.sans-photo .rc-body { padding: 18px 16px 16px; }

/* ---- Page collection ---- */
.collection-head { max-width: var(--maxw); margin: 0 auto; padding: 34px 24px 22px; }
.collection-head h1 {
  font-size: clamp(26px, 4vw, 38px); font-weight: 600; margin: 0 0 8px; letter-spacing: -0.02em;
}
.collection-head p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
@media (max-width: 560px) { .collection-head { padding: 24px 12px 16px; } }


/* ---- bandeau a reveler : pastille de marque quand il n'y a pas de packshot */
.lp-mono {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1/1; border-radius: 8px;
  background: var(--lp-a, var(--bg-soft));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px; letter-spacing: 0.04em; color: var(--lp-encre, #2f2b33);
}
.lp-mono span { opacity: 0.62; }

.lp-more { cursor: pointer; background: none; font: inherit; font-weight: 600; font-size: 12.5px; width: 100%; }
.lp-more:hover { background: var(--ink); color: #fff; }

/* ---- couleurs du cache, propres a chaque calendrier */
.lineup .lp-shine {
  background:
    radial-gradient(circle at 22% 18%, var(--lp-a), transparent 46%),
    radial-gradient(circle at 78% 26%, var(--lp-b), transparent 44%),
    radial-gradient(circle at 32% 76%, var(--lp-c), transparent 46%),
    radial-gradient(circle at 74% 84%, var(--lp-d), transparent 44%),
    var(--lp-fond);
}
.lineup { --lp-a: rgba(255,214,235,0.95); --lp-b: rgba(206,231,255,0.95);
          --lp-c: rgba(215,205,255,0.95); --lp-d: rgba(255,232,206,0.9);
          --lp-fond: linear-gradient(150deg, #f6e7f4, #e3ecfb 45%, #efe4fa);
          --lp-encre: #2f2b33; }
.lp-plouise  { --lp-a: rgba(255,209,228,0.95); --lp-b: rgba(250,226,190,0.95);
               --lp-c: rgba(245,190,215,0.95); --lp-d: rgba(255,240,220,0.9);
               --lp-fond: linear-gradient(150deg, #fbe4ef, #f7ddc8 55%, #f9e2ee); }
.lp-lancome  { --lp-a: rgba(255,205,225,0.95); --lp-b: rgba(247,224,182,0.95);
               --lp-c: rgba(252,222,236,0.95); --lp-d: rgba(255,238,214,0.9);
               --lp-fond: linear-gradient(150deg, #fbe0ec, #f6e5cd 50%, #fae6f0); }
.lp-vogue    { --lp-a: rgba(238,220,192,0.95); --lp-b: rgba(222,200,170,0.95);
               --lp-c: rgba(246,235,216,0.95); --lp-d: rgba(214,196,172,0.9);
               --lp-fond: linear-gradient(150deg, #f3e7d4, #e6d3b8 50%, #f1e4d0);
               --lp-encre: #4a3d2c; }
.lp-benefit  { --lp-a: rgba(255,200,222,0.95); --lp-b: rgba(255,206,196,0.95);
               --lp-c: rgba(255,182,205,0.95); --lp-d: rgba(255,230,214,0.9);
               --lp-fond: linear-gradient(150deg, #ffdcea, #ffd3c6 55%, #ffe0ec); }
.lp-rituals  { --lp-a: rgba(219,231,214,0.95); --lp-b: rgba(243,230,203,0.95);
               --lp-c: rgba(228,238,229,0.95); --lp-d: rgba(248,240,222,0.9);
               --lp-fond: linear-gradient(150deg, #e9f0e6, #f4e9d3 55%, #edf2ea);
               --lp-encre: #33452f; }
.lp-spacenk  { --lp-a: rgba(232,228,234,0.95); --lp-b: rgba(246,222,230,0.95);
               --lp-c: rgba(216,214,222,0.95); --lp-d: rgba(240,236,240,0.9);
               --lp-fond: linear-gradient(150deg, #eeeaef, #e2dee6 50%, #f3e7ec);
               --lp-encre: #35313a; }
.lp-cult     { --lp-a: rgba(255,205,214,0.95); --lp-b: rgba(205,236,232,0.95);
               --lp-c: rgba(232,214,255,0.95); --lp-d: rgba(255,236,196,0.9);
               --lp-fond: linear-gradient(150deg, #fde3e8, #dff1ee 48%, #efe3fb); }
.lp-charlotte{ --lp-a: rgba(250,198,192,0.95); --lp-b: rgba(246,226,189,0.95);
               --lp-c: rgba(240,178,172,0.95); --lp-d: rgba(255,236,208,0.9);
               --lp-fond: linear-gradient(150deg, #f9dcd6, #f4e3c2 52%, #f8dfd8);
               --lp-encre: #4d2b28; }
.lp-dior     { --lp-a: rgba(246,238,220,0.95); --lp-b: rgba(238,226,196,0.95);
               --lp-c: rgba(252,248,238,0.95); --lp-d: rgba(232,216,180,0.9);
               --lp-fond: linear-gradient(150deg, #f8f3e7, #efe3c8 52%, #faf6ec);
               --lp-encre: #4a422e; }

/* ---- fiche detaillee ouverte par "Voir le detail" */
.lpm-fond.lineup { padding: 20px; }
.lpm-fond {
  position: fixed; inset: 0; z-index: 120; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(24,22,28,0.55);
}
.lpm-fond[hidden] { display: none; }
.lpm-boite {
  position: relative; width: 100%; max-width: 380px; max-height: 88vh;
  overflow-y: auto; background: #fff; border-radius: 14px; padding: 22px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.lpm-fermer {
  position: absolute; top: 10px; right: 10px; width: 32px; height: 32px;
  border: none; border-radius: 50%; background: var(--bg-soft); cursor: pointer;
  font-size: 19px; line-height: 1; color: var(--ink);
}
.lpm-visuel { width: 132px; height: 132px; margin: 4px auto 16px; }
.lpm-visuel img, .lpm-visuel .lp-mono { width: 100%; height: 100%; border-radius: 10px; object-fit: contain; }
.lpm-marque { font-size: 19px; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.01em; }
.lpm-produit { margin: 0 0 12px; font-size: 14.5px; color: var(--ink-soft); }
.lpm-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 14px; }
.lpm-note { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-soft); }
.lpm-detail { margin: 0 0 16px; font-size: 13.5px; line-height: 1.6; color: var(--ink); }
.lpm-boite .lp-stock { border: 1.5px solid var(--line); }

@media (max-width: 560px) { .lpm-boite { padding: 18px; } }

.lp-redbull  { --lp-a: rgba(255,196,196,0.95); --lp-b: rgba(196,214,247,0.95);
               --lp-c: rgba(250,214,180,0.95); --lp-d: rgba(214,228,255,0.9);
               --lp-fond: linear-gradient(150deg, #ffdedb, #d9e4f7 52%, #ffe7d6); }
.lp-ysl      { --lp-a: rgba(246,232,196,0.95); --lp-b: rgba(232,212,168,0.95);
               --lp-c: rgba(252,246,230,0.95); --lp-d: rgba(226,204,152,0.9);
               --lp-fond: linear-gradient(150deg, #f9f2e0, #ecdcb4 52%, #fbf6e8);
               --lp-encre: #4a3f26; }


/* ---- pages legales : colonne de lecture sobre */
.legal { max-width: 760px; margin: 0 auto; padding: 44px 24px 60px; }
.legal h1 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 6px; }
.legal-maj { margin: 0 0 32px; font-size: 12.5px; color: var(--ink-soft); }
.legal h2 { font-size: 17px; font-weight: 700; margin: 32px 0 10px; letter-spacing: -0.01em; }
.legal p, .legal li { font-size: 14.5px; line-height: 1.68; color: var(--ink); }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal .todo {
  background: #fff3cd; color: #6b4e00; border-radius: 4px;
  padding: 1px 6px; font-weight: 600; font-size: 13px;
}
@media (max-width: 560px) { .legal { padding: 30px 16px 44px; } }


/* ---- page 404 */
.erreur-404 { text-align: center; padding-top: 70px; }
.e404-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.e404-cta, .e404-alt {
  display: inline-block; padding: 13px 24px; border-radius: 9px;
  font-size: 13.5px; font-weight: 600; text-decoration: none;
}
.legal .e404-cta { background: var(--ink); color: #fff; text-decoration: none; }
.legal .e404-alt { border: 1.5px solid var(--line); color: var(--ink); text-decoration: none; }
.legal .e404-cta:hover { opacity: 0.88; }


/* ---- pas de ballottement horizontal sur mobile
   Les bandeaux .lp-row et .thumbs defilent lateralement. Sans ces regles,
   arriver en bout de course propage le geste a la page entiere, voire
   declenche le retour arriere du navigateur. */
html {
  overflow-x: clip;                 /* clip plutot que hidden : ne casse pas position:sticky */
}
body {
  overflow-x: clip;
  overscroll-behavior-x: none;      /* le glissement ne sort jamais de la page */
}
.lp-row, .thumbs, .ann-track {
  overscroll-behavior-x: contain;   /* le geste reste dans le bandeau */
}
