/* ===== SECUPARK — Design e-commerce ===== */
:root {
  --bg: #f4f7f4;
  --surface: #ffffff;
  --ink: #14181f;
  --muted: #5c6672;
  --line: #e4e7ec;
  --brand: #47704c;          /* vert foncé officiel */
  --brand-dark: #2f4a33;
  --brand-light: #00ab5c;    /* vert vif */
  --accent: #f7d548;         /* jaune marque (boutons CTA) */
  --accent-ink: #2f4a33;     /* texte sur CTA */
  --yellow: #f7d548;         /* jaune marque */
  --radius: 13px;
  --shadow: 0 6px 24px rgba(20, 24, 31, .08);
  --maxw: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Poppins', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 48px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; font-weight: 500; font-size: 14.5px; }
.main-nav > a { color: var(--ink); padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav > a:hover { color: var(--brand); border-color: var(--brand); }
.nav-cats { position: relative; }
.nav-cats > span { cursor: pointer; padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-cats:hover > span { color: var(--brand); border-color: var(--brand); }
.nav-cats-drop {
  position: absolute; top: 100%; left: 0; background: var(--surface);
  border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow);
  min-width: 210px; padding: 8px; display: none; flex-direction: column; gap: 2px;
}
.nav-cats:hover .nav-cats-drop { display: flex; }
.nav-cats-drop a { padding: 8px 12px; border-radius: 8px; font-size: 14px; }
.nav-cats-drop a:hover { background: #f1f2f5; color: var(--brand); }
.header-actions { display: flex; align-items: center; gap: 14px; }
.btn-account { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); cursor: pointer; }
.btn-account:hover { border-color: var(--brand); color: var(--brand); }
.cart-btn {
  position: relative; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: #fff; border: none; cursor: pointer;
}
.cart-btn:hover { background: var(--brand); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--brand); color: #fff; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; display: none; align-items: center; justify-content: center;
}

/* ===== Hero ===== */
.hero {
  background: radial-gradient(at 100% 0%, rgba(0, 170, 93, .17) 0%, rgb(21, 27, 48) 80%);
  color: #fff;
  padding: 90px 0 80px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero-copy { text-align: left; }
.hero-kicker {
  display: inline-block; background: rgba(255, 235, 60, .14); color: var(--yellow);
  font-size: 15px; font-weight: 500; letter-spacing: .2px; margin-bottom: 14px;
}
.hero h1 { font-family: 'Inter', sans-serif; font-size: clamp(32px, 4.6vw, 60px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.hero h1 span { color: #fff; }
.hero p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 0 28px; font-size: 16.5px; }
.hero p strong { color: var(--accent); }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-cta {
  display: inline-block; background: #00aa5d; color: #fff;
  border-radius: 20px; padding: 20px 40px; font-weight: 700;
  font-family: 'Inter', sans-serif; font-size: 16.5px; font-weight: 700;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.hero-cta:hover { transform: translateY(-2px); background: #00914f; box-shadow: 0 8px 26px rgba(0, 170, 93, .45); }
.hero-cta-ghost {
  display: inline-block; padding: 15px 26px; border-radius: 13px;
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 15.5px; font-weight: 600; transition: background .15s, border-color .15s;
}
.hero-cta-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--yellow); color: var(--yellow); }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-trust-item { font-size: 13.5px; color: #c3bce0; display: inline-flex; align-items: center; gap: 6px; }
.hero-trust-item strong { color: #fff; font-weight: 600; }
.hero-visual { position: relative; }
.hero-product { position: relative; display: block; border-radius: 20px; overflow: hidden; border: 2px solid rgba(255,255,255,.14); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.hero-product img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; transition: transform .4s ease; }
.hero-product:hover img { transform: scale(1.03); }
.hero-product-badge {
  position: absolute; top: 16px; left: 16px; background: var(--yellow); color: #020101;
  font-weight: 800; font-size: 14.5px; padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,.3); font-family: 'Inter', sans-serif;
}
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 8px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 500; }

/* ===== Section produits ===== */
.section { padding: 56px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.section-head h2 { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 700; }
.section-head a { color: var(--brand); font-weight: 600; font-size: 14.5px; }
.grid-products { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.card-product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card-product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-product-img { aspect-ratio: 1/1; overflow: hidden; background: #f1f2f5; position: relative; }
.card-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card-product:hover .card-product-img img { transform: scale(1.05); }
.card-badge {
  position: absolute; top: 12px; left: 12px; background: var(--brand); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.card-product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-product-cat { font-size: 11.5px; text-transform: uppercase; letter-spacing: .7px; color: var(--muted); font-weight: 600; }
.card-product-title { font-weight: 600; font-size: 15px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 41px; }
.card-product-title:hover { color: var(--brand); }
.card-product-price { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.price { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18px; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 13.5px; }
.btn-add {
  margin-top: 12px; width: 100%; padding: 11px; border: none; border-radius: 10px;
  background: var(--accent); color: var(--accent-ink); font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background .15s ease, transform .15s;
}
.btn-add:hover { background: #3eea55; transform: translateY(-1px); }

/* ===== Fiche produit ===== */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; padding: 48px 0; }
.product-gallery { position: sticky; top: 96px; }
.gallery-main { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.gallery-main img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumbs img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; border: 2px solid transparent; cursor: pointer; }
.gallery-thumbs img.active { border-color: var(--brand); }
.product-info h1 { font-family: 'Inter', sans-serif; font-size: clamp(22px, 3vw, 30px); line-height: 1.2; margin-bottom: 10px; }
.product-cat { color: var(--muted); font-size: 13.5px; margin-bottom: 16px; }
.product-cat a { color: var(--brand); font-weight: 600; }
.product-price-row { display: flex; align-items: center; gap: 14px; margin: 18px 0; }
.product-price-row .price { font-size: 30px; }
.product-price-row .price-old { font-size: 17px; }
.stock-badge { font-size: 13px; font-weight: 600; color: #0c6b1f; background: #d8fadc; padding: 5px 12px; border-radius: 999px; }
.product-desc { color: var(--muted); margin-bottom: 24px; }
.buy-row { display: flex; gap: 14px; align-items: stretch; margin-bottom: 18px; }
.qty-selector { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.qty-selector button { width: 42px; height: 48px; border: none; background: none; font-size: 18px; cursor: pointer; color: var(--ink); }
.qty-selector span { min-width: 36px; text-align: center; font-weight: 600; }
.btn-buy {
  flex: 1; border: none; border-radius: 10px; background: var(--accent); color: var(--accent-ink);
  font-size: 15.5px; font-weight: 700; cursor: pointer; transition: background .15s;
}
.btn-buy:hover { background: #3eea55; }
.btn-buy:active { transform: scale(.99); }
.pay-icons { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 12.5px; }
.pay-icons span { border: 1px solid var(--line); background: var(--surface); padding: 4px 10px; border-radius: 6px; font-weight: 600; font-size: 11.5px; }

/* ===== Offre flash ===== */
.flash-deal {
  background: linear-gradient(135deg, #2a1145, #5E2BCC); color: #fff;
  border-radius: var(--radius); padding: 16px 18px; margin: 14px 0 6px;
}
.flash-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.flash-title { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px; color: var(--yellow); }
.flash-timer { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #d9d2ec; }
.timer-boxes { display: flex; align-items: center; gap: 4px; }
.timer-box {
  background: #020101; color: var(--accent); font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 17px; width: 26px; height: 30px;
  display: grid; place-items: center; border-radius: 6px;
}
.timer-colon { font-weight: 800; color: var(--yellow); }
.flash-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
.flash-price { font-family: 'Inter', sans-serif; font-size: 30px; font-weight: 800; color: var(--accent); }
.flash-save {
  background: rgba(71, 253, 97, .18); border: 1px solid rgba(71, 253, 97, .4);
  color: var(--accent); font-size: 12.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
}
.promo-tag {
  display: inline-block; background: var(--brand); color: #fff; font-size: 10.5px;
  font-weight: 700; padding: 1px 6px; border-radius: 999px; margin-left: 4px; vertical-align: 2px;
}

/* ===== Bloc confiance paiement ===== */
.pay-block {
  margin-top: 20px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 14px 16px;
}
.pay-block-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.pay-logos { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pay-logo {
  height: 26px; padding: 0 10px; border-radius: 5px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; font-size: 10.5px; font-weight: 800; letter-spacing: .3px;
  background: #fff; color: #2c333d;
}
.pay-logo.visa { color: #1a1f71; font-style: italic; }
.pay-logo.mc { color: #eb001b; }
.pay-logo.amex { color: #006fcf; }
.pay-logo.applepay { background: #020101; color: #fff; }
.pay-logo.gpay { background: #fff; color: #4285f4; }
.pay-logo.klarna { background: #ffb3c7; color: #000; }
.pay-logo.bancontact { color: #005b9f; }
.pay-logo.paypal { color: #003087; }
.pay-secure-line {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px;
  font-size: 12px; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 10px;
}
.product-trust-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px;
}
.trust-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 12px 10px; text-align: center; font-size: 12px; color: var(--muted);
}
.trust-item strong { display: block; color: var(--ink); font-size: 13px; margin: 3px 0 2px; }
@media (max-width: 600px) {
  .product-trust-bar { grid-template-columns: 1fr; }
}
.product-details { margin-top: 34px; border-top: 1px solid var(--line); padding-top: 26px; }
.product-details h3 { font-family: 'Inter', sans-serif; margin-bottom: 12px; }
.product-details ul { padding-left: 20px; display: grid; gap: 6px; color: #2c333d; }
.product-details li { margin-bottom: 4px; }
.product-details p { margin-bottom: 10px; color: #2c333d; }

/* ===== Vidéos démo produit ===== */
.product-videos { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 34px; }
.product-videos h2 { font-family: 'Inter', sans-serif; font-size: 24px; margin-bottom: 20px; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line); background: #020101;
  box-shadow: var(--shadow);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 700px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ===== Avis clients ===== */
.reviews-block { margin-top: 44px; border-top: 1px solid var(--line); padding-top: 34px; }
.reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.reviews-head h2 { font-family: 'Inter', sans-serif; font-size: 24px; }
.reviews-score { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 8px 18px; }
.reviews-stars { color: #f5a623; letter-spacing: 2px; font-size: 16px; }
.reviews-score strong { font-size: 17px; font-family: 'Inter', sans-serif; }
.reviews-count { color: var(--muted); font-size: 13px; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-stars { color: #f5a623; letter-spacing: 2px; font-size: 14px; }
.review-date { color: var(--muted); font-size: 12px; }
.review-title { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.review-text { color: #3d4552; font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-light), var(--brand));
  color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.review-author strong { display: block; font-size: 13.5px; }
.review-country { display: block; font-size: 12px; color: var(--muted); }
.review-verified { margin-left: auto; font-size: 11.5px; color: #0c6b1f; background: #d8fadc; padding: 3px 10px; border-radius: 999px; font-weight: 600; }
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===== Blog ===== */
.grid-blog { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.card-blog { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .18s, box-shadow .18s; }
.card-blog:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-blog-img { aspect-ratio: 16/9; overflow: hidden; background: #eee; }
.card-blog-img img { width: 100%; height: 100%; object-fit: cover; }
.card-blog-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-blog-date { font-size: 12px; color: var(--muted); }
.card-blog-title { font-weight: 600; font-size: 16px; margin: 6px 0 8px; line-height: 1.35; }
.card-blog-title:hover { color: var(--brand); }
.card-blog-excerpt {
  color: var(--muted); font-size: 13.5px; line-height: 1.55; margin: 0 0 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-blog-more { color: var(--brand); font-weight: 700; font-size: 13px; margin-top: auto; }
.card-blog { display: flex; flex-direction: column; }
.article-body { padding: 48px 0; max-width: 760px; margin: 0 auto; }.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 0 22px; }
.article-body h1 { font-family: 'Inter', sans-serif; font-size: clamp(24px, 4vw, 34px); margin-bottom: 10px; }
.article-meta { color: var(--muted); font-size: 13.5px; margin-bottom: 24px; }
.article-body img { border-radius: var(--radius); margin: 18px 0; }
.article-body p { margin-bottom: 16px; color: #2c333d; font-size: 16px; }
.article-body h2 { font-family: 'Inter', sans-serif; margin: 26px 0 12px; font-size: 22px; }
.article-body h3 { font-family: 'Inter', sans-serif; margin: 20px 0 10px; font-size: 18px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 16px; }
.article-body li { margin-bottom: 6px; }

/* ===== Bannière produit dans l'article ===== */
.article-banner {
  display: flex; align-items: center; gap: 24px; margin: 28px 0;
  background: linear-gradient(135deg, #2a1145 0%, #5E2BCC 60%, #7730F3 100%);
  border-radius: 18px; padding: 26px 28px; color: #fff;
  border: 1px solid rgba(255,255,255,.12); box-shadow: 0 18px 40px rgba(94,43,204,.28);
}
.article-banner-left { flex: 1; }
.article-banner-tag {
  display: inline-block; background: var(--accent); color: #020101; font-weight: 800;
  font-size: 11.5px; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px;
  letter-spacing: .4px; text-transform: uppercase;
}
.article-banner h3 { font-family: 'Inter', sans-serif; font-size: 19px; margin: 0 0 8px; color: #fff; line-height: 1.35; }
.article-banner p { color: rgba(255,255,255,.85); font-size: 14.5px; margin: 0 0 16px; }
.article-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-banner {
  background: var(--accent); color: #020101; font-weight: 800; padding: 11px 22px;
  border-radius: 12px; font-size: 14.5px; transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 8px 20px rgba(71,253,97,.3);
}
.btn-banner:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(71,253,97,.4); }
.btn-banner-ghost {
  border: 1.5px solid rgba(255,255,255,.4); color: #fff; font-weight: 600;
  padding: 11px 20px; border-radius: 12px; font-size: 14px; transition: border-color .15s ease, color .15s ease;
}
.btn-banner-ghost:hover { border-color: var(--accent); color: var(--accent); }
.article-banner-right img { width: 130px; height: 130px; object-fit: cover; border-radius: 14px; margin: 0; border: 2px solid rgba(255,255,255,.2); }
.article-banner-emoji { font-size: 64px; line-height: 1; }

/* ===== Sidebar articles ===== */
.article-side { padding-top: 48px; display: flex; flex-direction: column; gap: 22px; }
.side-block {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: 0 6px 18px rgba(2,1,1,.05);
}
.side-block-accent { background: linear-gradient(160deg, #fff 0%, #f4eeff 100%); border-color: #e4d8ff; }
.side-title { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; margin: 0 0 14px; }
.side-product {
  display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); align-items: center;
}
.side-product:last-of-type { border-bottom: none; }
.side-product:hover .side-product-name { color: var(--brand); }
.side-product img { width: 52px; height: 52px; object-fit: cover; border-radius: 10px; flex-shrink: 0; background: #f1f2f5; }
.side-product-emoji { width: 52px; height: 52px; border-radius: 10px; background: #f1f2f5; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.side-product-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.side-product-name { font-size: 13px; font-weight: 600; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.side-product-price { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; color: var(--brand); }
.side-product-price .price-old { font-size: 11.5px; margin-left: 6px; }
.side-cta {
  display: block; text-align: center; background: #020101; color: #fff; font-weight: 700;
  padding: 11px; border-radius: 11px; margin-top: 12px; font-size: 13.5px; transition: background .15s ease;
}
.side-cta:hover { background: var(--brand); }
.side-block p { font-size: 13.5px; color: #4a5361; margin: 0 0 10px; line-height: 1.55; }
.side-link { color: var(--brand); font-weight: 700; font-size: 13.5px; }
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-side { padding-top: 8px; }
  .article-banner { flex-direction: column; text-align: center; }
  .article-banner-actions { justify-content: center; }
  .article-banner-right img { width: 110px; height: 110px; }
}

/* ===== Exit intent ===== */
.exit-overlay {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
  background: rgba(2,1,1,.72); backdrop-filter: blur(4px); opacity: 0; pointer-events: none;
  transition: opacity .3s ease; padding: 20px;
}
.exit-overlay.show { opacity: 1; pointer-events: auto; }
.exit-modal {
  position: relative; width: min(880px, 100%); background: linear-gradient(150deg, #fff 0%, #f6f0ff 100%);
  border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px rgba(2,1,1,.5);
  border: 1px solid rgba(94,43,204,.25); transform: translateY(24px) scale(.97); transition: transform .35s cubic-bezier(.2,.9,.3,1.2);
}
.exit-overlay.show .exit-modal { transform: translateY(0) scale(1); }
.exit-close {
  position: absolute; top: 14px; right: 14px; z-index: 5; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(2,1,1,.08); color: #020101; font-size: 15px; cursor: pointer; transition: background .15s ease, transform .15s ease;
}
.exit-close:hover { background: rgba(2,1,1,.16); transform: rotate(90deg); }
.exit-modal-body { display: grid; grid-template-columns: 300px 1fr; min-height: 420px; }
.exit-visual { position: relative; background: linear-gradient(160deg, #2a1145 0%, #5E2BCC 100%); display: flex; align-items: center; justify-content: center; padding: 30px; }
.exit-visual img { width: 100%; max-width: 240px; border-radius: 18px; animation: exitFloat 3.2s ease-in-out infinite; }
@keyframes exitFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
.exit-sticker {
  position: absolute; top: 24px; left: 24px; background: var(--accent); color: #020101;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 26px; padding: 8px 16px;
  border-radius: 14px; transform: rotate(-8deg); box-shadow: 0 10px 24px rgba(71,253,97,.4);
  border: 3px solid #fff;
}
.exit-content { padding: 44px 40px; display: flex; flex-direction: column; justify-content: center; }
.exit-kicker {
  display: inline-block; align-self: flex-start; background: #ffeb3c; color: #020101; font-weight: 800;
  font-size: 11.5px; letter-spacing: 1px; padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.exit-content h2 { font-family: 'Inter', sans-serif; font-size: clamp(20px, 2.6vw, 27px); margin: 0 0 10px; line-height: 1.25; }
.exit-content p { color: #3d4552; font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; }
.exit-timer {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.exit-timer span {
  background: #020101; color: var(--accent); font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 26px; padding: 6px 12px; border-radius: 10px; min-width: 44px; text-align: center;
}
.exit-timer em { font-style: normal; font-weight: 800; font-size: 24px; color: var(--brand); }
.exit-code {
  display: flex; align-items: center; gap: 10px; background: #fff; border: 2px dashed var(--brand);
  border-radius: 12px; padding: 10px 14px; margin-bottom: 18px; max-width: 300px;
}
.exit-code span { font-size: 12px; color: var(--muted); font-weight: 600; }
.exit-code strong { font-family: 'Inter', sans-serif; font-size: 18px; letter-spacing: 2px; color: var(--brand); }
.exit-code button { border: none; background: #f1f2f5; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; font-size: 14px; margin-left: auto; }
.exit-code button:hover { background: #e4e6ea; }
.exit-actions { display: flex; flex-direction: column; gap: 10px; }
.exit-cta {
  background: var(--accent); color: #020101; text-align: center; font-weight: 800; font-size: 16px;
  padding: 15px 24px; border-radius: 13px; box-shadow: 0 12px 28px rgba(71,253,97,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.exit-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(71,253,97,.45); }
.exit-ghost { border: none; background: none; color: var(--muted); font-size: 13px; cursor: pointer; padding: 6px; text-decoration: underline; }
.exit-ghost:hover { color: #020101; }
.exit-fineprint { font-size: 12px !important; color: var(--muted) !important; margin: 12px 0 0 !important; }
@media (max-width: 700px) {
  .exit-modal-body { grid-template-columns: 1fr; }
  .exit-visual { padding: 20px; min-height: auto; }
  .exit-visual img { max-width: 160px; }
  .exit-content { padding: 28px 24px 30px; }
  .exit-sticker { top: 14px; left: 14px; font-size: 20px; }
}

/* ===== Pages ===== */
.page-wrap { padding: 52px 0; max-width: 820px; margin: 0 auto; }
.page-wrap h1 { font-family: 'Inter', sans-serif; font-size: clamp(26px, 4vw, 36px); margin-bottom: 8px; }
.page-wrap h2 { font-family: 'Inter', sans-serif; font-size: 21px; margin: 28px 0 12px; }
.page-wrap h3 { font-size: 17px; margin: 20px 0 10px; }
.page-wrap p { margin-bottom: 14px; color: #2c333d; }
.page-wrap ul, .page-wrap ol { padding-left: 22px; margin-bottom: 14px; }
.page-wrap li { margin-bottom: 6px; color: #2c333d; }
.page-wrap a { color: var(--brand); text-decoration: underline; }
.page-intro { color: var(--muted); font-size: 17px; margin-bottom: 30px; }

/* ===== Catégories ===== */
.grid-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-cat {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; display: flex; flex-direction: column; gap: 4px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  animation: catIn .5s ease both;
}
@keyframes catIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.card-cat:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-light); }
.card-cat-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(135deg, #f4eeff, #e9dfff); border: 1px solid #e0d2ff; margin-bottom: 8px;
  animation: catFloat 2.6s ease-in-out infinite;
}
.card-cat:hover .card-cat-icon { animation: catBounce .6s ease infinite; background: linear-gradient(135deg, var(--brand-light), var(--brand)); }
@keyframes catFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes catBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-8px) scale(1.12); } }
.card-cat-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16.5px; color: var(--brand-dark); }
.card-cat-count { color: var(--muted); font-size: 13px; }
.card-cat-arrow {
  position: absolute; top: 22px; right: 22px; color: var(--brand); font-weight: 700; font-size: 18px;
  opacity: 0; transform: translateX(-8px); transition: opacity .2s ease, transform .2s ease;
}
.card-cat:hover .card-cat-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) { .grid-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-cats { grid-template-columns: 1fr; } }

/* ===== Section réseaux sociaux ===== */
.section-social { padding: 0 0 8px; }
.social-banner {
  position: relative; border-radius: 22px; padding: 40px 38px; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, #1a0b33 0%, #2a1145 45%, #5E2BCC 100%);
  border: 1px solid rgba(255,255,255,.1); box-shadow: 0 24px 60px rgba(42,17,69,.35);
}
.social-banner::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(71,253,97,.18) 0%, transparent 70%);
}
.social-banner::after {
  content: ''; position: absolute; bottom: -100px; left: 30%; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,235,60,.12) 0%, transparent 70%);
}
.social-kicker {
  display: inline-block; background: var(--accent); color: #020101; font-weight: 800; font-size: 12px;
  letter-spacing: 1px; padding: 6px 16px; border-radius: 999px; margin-bottom: 14px;
}
.social-banner h2 { font-family: 'Inter', sans-serif; font-size: clamp(22px, 3vw, 30px); margin: 0 0 10px; color: #fff; }
.social-banner-copy > p { color: rgba(255,255,255,.82); font-size: 15px; max-width: 620px; line-height: 1.6; margin: 0 0 22px; }
.social-follow-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 26px; }
.social-follow-btn {
  display: flex; align-items: center; gap: 10px; padding: 13px 14px; border-radius: 12px;
  font-weight: 700; font-size: 13.5px; color: #fff; border: 1px solid rgba(255,255,255,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-follow-btn svg { flex-shrink: 0; }
.social-follow-btn:hover { transform: translateY(-3px) scale(1.02); }
.social-follow-btn.yt { background: rgba(255,0,0,.85); }
.social-follow-btn.yt:hover { box-shadow: 0 12px 26px rgba(255,0,0,.4); }
.social-follow-btn.tt { background: rgba(25,25,25,.9); }
.social-follow-btn.tt:hover { box-shadow: 0 12px 26px rgba(0,0,0,.5); }
.social-follow-btn.fb { background: rgba(24,119,242,.9); }
.social-follow-btn.fb:hover { box-shadow: 0 12px 26px rgba(24,119,242,.45); }
.social-follow-btn.ig { background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF); }
.social-follow-btn.ig:hover { box-shadow: 0 12px 26px rgba(221,42,123,.45); }
.social-banner-proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.social-proof-item {
  display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 14px 16px;
  backdrop-filter: blur(6px);
}
.social-proof-item > span { font-size: 24px; }
.social-proof-item strong { display: block; font-size: 14.5px; color: #fff; }
.social-proof-item small { color: rgba(255,255,255,.65); font-size: 12px; }
@media (max-width: 900px) {
  .social-follow-row { grid-template-columns: repeat(2, 1fr); }
  .social-banner-proof { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .social-banner { padding: 28px 22px; }
  .social-follow-row, .social-banner-proof { grid-template-columns: 1fr; }
}
.cat-hero { background: var(--surface); border-bottom: 1px solid var(--line); padding: 40px 0; }
.cat-hero h1 { font-family: 'Inter', sans-serif; font-size: 30px; }
.cat-hero p { color: var(--muted); margin-top: 6px; }
.cat-seo {
  margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--line);
}
.cat-seo h2 {
  font-family: 'Inter', sans-serif; font-size: clamp(22px, 3vw, 28px);
  text-align: center; margin-bottom: 14px;
}
.cat-seo-intro {
  max-width: 780px; margin: 0 auto 30px; text-align: center;
  color: var(--muted); font-size: 16px; line-height: 1.7;
}
.cat-seo-intro-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 12px; background: linear-gradient(135deg, var(--brand-light), var(--brand));
  font-size: 20px; vertical-align: middle; margin-right: 8px; box-shadow: 0 4px 12px rgba(94,43,204,.25);
}
.cat-seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-seo-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; position: relative; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.cat-seo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand-light); }
.cat-seo-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--brand-light), var(--accent)); border-radius: 0 0 4px 4px;
}
.cat-seo-card-icon {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 14px; font-size: 22px; margin-bottom: 12px;
  background: linear-gradient(135deg, #f4eeff, #e9dfff); border: 1px solid #e0d2ff;
  box-shadow: 0 4px 10px rgba(94,43,204,.12);
}
.cat-seo-card h3 { font-family: 'Inter', sans-serif; font-size: 16.5px; margin-bottom: 10px; color: var(--brand-dark); }
.cat-seo-card p { color: #3d4552; font-size: 14.5px; line-height: 1.65; }
.cat-seo-cta {
  margin-top: 30px; background: linear-gradient(135deg, #2a1145, var(--brand));
  border-radius: var(--radius); padding: 26px 30px; color: #fff;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cat-seo-cta strong { font-family: 'Inter', sans-serif; font-size: 17px; }
.cat-seo-cta span { color: #d9d2ec; font-size: 14px; }
.cat-seo-btn {
  margin-left: auto; background: var(--accent); color: var(--accent-ink);
  padding: 11px 26px; border-radius: 10px; font-weight: 700; font-size: 14.5px; transition: transform .15s;
}
.cat-seo-btn:hover { transform: translateY(-2px); }
@media (max-width: 900px) {
  .cat-seo-grid { grid-template-columns: 1fr; }
  .cat-seo-btn { margin-left: 0; }
}

/* ===== Panier page ===== */
.cart-page-promo {
  display: flex; align-items: center; gap: 12px; margin: 14px 0;
  background: #ecfdf5; border: 1px solid #86efac; border-radius: var(--radius);
  padding: 12px 16px;
}
.cart-page-promo strong { font-size: 14.5px; display: block; }
.cart-page-promo span:first-child { font-size: 22px; }
.cart-page-promo div span { color: var(--muted); font-size: 13px; }

/* ===== Articles en rapport (produit + catégorie) ===== */
.related-articles-block { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.related-articles-block h2 { font-family: 'Inter', sans-serif; font-size: 22px; margin-bottom: 6px; }
.related-articles-intro { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.related-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-article-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.related-article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-light); }
.related-article-img { aspect-ratio: 16/9; overflow: hidden; background: #eee; }
.related-article-img img { width: 100%; height: 100%; object-fit: cover; }
.related-article-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; gap: 5px; }
.related-article-date { font-size: 11.5px; color: var(--muted); }
.related-article-title { font-weight: 700; font-size: 14.5px; line-height: 1.35; color: var(--brand-dark); }
.related-article-card:hover .related-article-title { color: var(--brand); }
.related-article-excerpt {
  color: var(--muted); font-size: 12.5px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.related-article-more { color: var(--brand); font-weight: 700; font-size: 12.5px; margin-top: auto; }
@media (max-width: 900px) { .related-articles-grid { grid-template-columns: 1fr; } }
@media (max-width: 1100px) and (min-width: 901px) { .related-articles-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Footer ===== */
.site-footer { background: #020101; color: #b8aee0; margin-top: 60px; }
.footer-reassurance { background: #0d0a14; border-bottom: 1px solid #1c1526; }
.reassurance-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 22px 24px; }
.reassurance-item { display: flex; align-items: center; gap: 10px; }
.reassurance-icon { font-size: 20px; flex-shrink: 0; }
.reassurance-item strong { display: block; color: #fff; font-size: 13px; }
.reassurance-item span { display: block; font-size: 11.5px; color: #8f83b8; }
.footer-newsletter { background: linear-gradient(135deg, #2a1145, #5E2BCC); }
.newsletter-inner { display: flex; align-items: center; gap: 26px; padding: 28px 24px; flex-wrap: wrap; }
.newsletter-copy { flex: 1; min-width: 240px; }
.newsletter-copy h3 { color: #fff; font-family: 'Inter', sans-serif; font-size: 18px; margin-bottom: 4px; }
.newsletter-copy p { color: #d9d2ec; font-size: 13.5px; }
.newsletter-form { display: flex; gap: 10px; flex: 1; min-width: 280px; max-width: 460px; }
.newsletter-form input {
  flex: 1; padding: 12px 16px; border-radius: 10px; border: none;
  font-size: 14px; font-family: inherit; background: #fff;
}
.newsletter-form button {
  padding: 12px 22px; border: none; border-radius: 10px; cursor: pointer;
  background: var(--accent); color: var(--accent-ink); font-weight: 700;
  font-size: 14px; font-family: 'Poppins', sans-serif; transition: transform .15s;
}
.newsletter-form button:hover { transform: translateY(-1px); }
.newsletter-note { display: none; width: 100%; color: var(--accent); font-size: 13.5px; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding: 52px 24px 34px; }
.site-footer h4 { color: #fff; font-size: 14.5px; margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.site-footer a { display: block; padding: 4px 0; font-size: 14px; }
.site-footer a:hover { color: var(--accent); }
.footer-tag { margin-top: 14px; font-size: 13.5px; line-height: 1.6; max-width: 300px; }
.footer-logo .footer-logo-img { height: 44px; width: auto; background: #fff; border-radius: 8px; padding: 4px 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: #fff; border: 1px solid #262040; transition: transform .15s, box-shadow .15s;
}
.footer-social a:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(71,253,97,.25); }
.footer-social .social-youtube:hover { border-color: #FF0000; box-shadow: 0 8px 18px rgba(255,0,0,.3); }
.footer-social .social-tiktok:hover { border-color: #010101; box-shadow: 0 8px 18px rgba(0,0,0,.35); }
.footer-social .social-facebook:hover { border-color: #1877F2; box-shadow: 0 8px 18px rgba(24,119,242,.3); }
.footer-social .social-instagram:hover { border-color: #DD2A7B; box-shadow: 0 8px 18px rgba(221,42,123,.3); }
.footer-payments {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid #1c1526; padding: 20px 24px;
}
.footer-pay-label { font-size: 12.5px; color: #8f83b8; }
.footer-pay-logos { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pay-secure { margin-left: auto; font-size: 12.5px; color: #8f83b8; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid #1c1526; padding: 18px 24px; font-size: 12.5px; color: #7b828d; flex-wrap: wrap; gap: 8px; }

/* ===== Panier (drawer) ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(15, 18, 24, .5); opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 90; }
.cart-overlay.show { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--surface); z-index: 100; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .25s ease; box-shadow: -10px 0 40px rgba(0,0,0,.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.cart-drawer-head h2 { font-family: 'Inter', sans-serif; font-size: 18px; }
.cart-close { border: none; background: none; font-size: 18px; cursor: pointer; color: var(--muted); width: 34px; height: 34px; border-radius: 8px; }
.cart-close:hover { background: #f1f2f5; color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { color: var(--muted); text-align: center; margin-top: 40px; }
.cart-item { display: flex; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-weight: 600; font-size: 13.5px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-price { color: var(--muted); font-size: 12.5px; margin: 3px 0 6px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button { width: 26px; height: 26px; border: 1px solid var(--line); background: var(--surface); border-radius: 6px; cursor: pointer; font-size: 14px; line-height: 1; }
.cart-item-qty button:hover { background: #f1f2f5; }
.cart-item-qty span { min-width: 20px; text-align: center; font-weight: 600; font-size: 13.5px; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-right strong { font-size: 14px; }
.cart-item-remove { border: none; background: none; color: var(--muted); cursor: pointer; font-size: 13px; }
.cart-item-remove:hover { color: var(--brand); }
.cart-drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.cart-total-row.small { font-weight: 400; color: var(--muted); font-size: 13px; }
.btn-checkout {
  width: 100%; margin-top: 12px; padding: 14px; border: none; border-radius: 10px;
  background: var(--brand); color: #fff; font-size: 15.5px; font-weight: 700; cursor: pointer;
}
.btn-checkout:hover { background: var(--brand-dark); }
.btn-checkout:disabled { background: #c9ccd2; cursor: not-allowed; }
.cart-secure { text-align: center; font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ===== Page panier (plein écran) ===== */
.cart-page { max-width: 820px; margin: 0 auto; padding: 52px 24px; }
.cart-page h1 { font-family: 'Inter', sans-serif; margin-bottom: 24px; }
.cart-page-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 18px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 12px; }
.cart-page-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; }
.cart-page-total { text-align: right; margin: 24px 0; font-size: 19px; font-weight: 700; }
.btn-checkout-lg { background: var(--brand); color: #fff; border: none; padding: 15px 34px; font-size: 16px; font-weight: 700; border-radius: 10px; cursor: pointer; }
.btn-checkout-lg:hover { background: var(--brand-dark); }

/* ===== Notification de vente ===== */
.sale-toast {
  position: fixed; bottom: 22px; left: 22px; z-index: 120;
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.18); padding: 14px 16px; max-width: 340px;
  transform: translateX(-120%); transition: transform .4s cubic-bezier(.2,.9,.3,1.2); cursor: default;
}
.sale-toast.show { transform: translateX(0); }
.sale-toast-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  display: grid; place-items: center; font-size: 19px;
}
.sale-toast-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.sale-toast-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.sale-toast-country { font-size: 11.5px; color: var(--muted); }
.sale-toast-product { font-size: 12.5px; color: var(--brand); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sale-toast-time { font-size: 11px; color: var(--muted); }
.sale-toast-close {
  border: none; background: none; color: var(--muted); cursor: pointer;
  font-size: 13px; padding: 4px; align-self: flex-start; margin-left: 4px;
}
.sale-toast-close:hover { color: var(--ink); }
@media (max-width: 600px) {
  .sale-toast { bottom: 14px; left: 14px; right: 14px; max-width: none; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 48px 0; text-align: center; }
  .hero-copy { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-cta-row, .hero-trust { justify-content: center; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .product-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { gap: 14px; }
  .nav-cats { display: none; }
}
@media (max-width: 600px) {
  .main-nav a:nth-child(2), .main-nav a:nth-child(4) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 14px; }
  .logo-img { height: 38px; }
  .reassurance-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { min-width: 100%; flex-direction: column; }
  .footer-pay-secure { margin-left: 0; }
}

/* ===== SECUPARK — Sections photo à fort contraste ===== */
.photo-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
}
.photo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,25,17,.82) 0%, rgba(15,25,17,.62) 45%, rgba(15,25,17,.85) 100%);
  z-index: 1;
}
.photo-section > .container { position: relative; z-index: 2; }
.photo-section .section-kicker {
  display: inline-block; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  font-size: 13px; color: var(--accent); margin-bottom: 10px;
}
.photo-section h1, .photo-section h2 {
  color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.photo-section p { color: rgba(255,255,255,.94); text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.photo-section .hero-cta { box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.photo-section .hero-cta-ghost {
  color: #fff; border-color: rgba(255,255,255,.65);
}
.photo-section .hero-cta-ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }

/* Hero photo */
.hero-photo { padding: 96px 0 90px; }
.hero-photo .hero-grid { align-items: center; gap: 48px; }
.hero-photo .hero-product {
  display: block; border-radius: 18px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.18);
}
.hero-photo .hero-product img { width: 100%; height: auto; display: block; }

/* Bloc leader / engagement */
.section-leader-photo { padding: 88px 0; text-align: center; }
.section-leader-photo .section-leader-copy { max-width: 760px; margin: 0 auto 34px; }
.section-leader-photo h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.2; margin-bottom: 16px; }

/* Section CTA photo (Gérer à distance) */
.cta-photo { padding: 110px 0; text-align: center; }
.cta-photo h2 { font-size: clamp(26px, 3.6vw, 42px); max-width: 780px; margin: 0 auto 16px; line-height: 1.18; }
.cta-photo p { max-width: 620px; margin: 0 auto 26px; font-size: 16.5px; }
.cta-photo .hero-cta { font-size: 16px; padding: 16px 40px; }

/* Section pourquoi (split photo + texte) */
.why-section { padding: 84px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-visual { border-radius: 18px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.why-visual img { width: 100%; height: auto; display: block; }
.why-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.why-block h5 { font-family: 'Inter', sans-serif; font-size: 16.5px; color: var(--brand-dark); margin-bottom: 8px; }
.why-block p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-blocks { grid-template-columns: 1fr; }
  .hero-photo .hero-grid { grid-template-columns: 1fr; }
}

/* Témoignages */
.testimonials-section {
  padding: 84px 0;
  background-color: #151b30;
  background-image: url('/images/secupark/bg/bg-blue-pattern.jpg');
  background-size: cover;
  background-position: center;
}
.testimonials-section .section-head h2 { color: #fff; }
.testimonials-section .section-head p { color: rgba(255,255,255,.85); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.testimonial-card .t-stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { margin: 14px 0; color: var(--ink); font-size: 14.5px; line-height: 1.6; }
.testimonial-card .t-author { font-weight: 700; font-size: 14px; color: var(--brand-dark); }
.testimonial-card .t-meta { color: var(--muted); font-size: 12.5px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Coup d'œil */
.snapshot-section { padding: 100px 0; text-align: center; }
.snapshot-section h2 { font-size: clamp(26px, 3.4vw, 40px); max-width: 720px; margin: 0 auto 14px; line-height: 1.2; }
.snapshot-section p { max-width: 600px; margin: 0 auto 10px; font-size: 16.5px; }
.snapshot-section h3 { color: #fff; font-size: 17px; font-weight: 600; margin: 26px auto 22px; max-width: 640px; }

/* Articles avantages/inconvénients */
.seo-articles { padding: 40px 0 84px; }
.seo-articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 30px; }
.seo-article {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.seo-article h3 { font-family: 'Inter', sans-serif; font-size: 17px; margin: 18px 0 10px; color: var(--brand-dark); }
.seo-article ul { margin: 0 0 0 18px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.seo-article li { margin-bottom: 6px; }
.seo-article .seo-article-lead { color: var(--ink); font-size: 14.5px; line-height: 1.65; }
@media (max-width: 900px) { .seo-articles-grid { grid-template-columns: 1fr; } }

/* FAQ accordéon */
.faq-section { padding: 30px 0 84px; }
.faq-list { max-width: 860px; margin: 30px auto 0; }
.faq-item {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--brand); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.faq-item .faq-body p { margin-bottom: 10px; }

/* Bloc vert (3e bloc confiance) */
.card-feature.feature-green { background: #00aa5d; color: #fff; border-color: #00aa5d; }
.card-feature.feature-green h4 { color: #fff; }
.card-feature.feature-green p { color: rgba(255,255,255,.95); }
.card-feature.feature-green .feature-icon { background: rgba(255,255,255,.22); }

/* ===== Accueil — variantes fidèles au site actuel ===== */
.hero-center { max-width: 860px; margin: 0 auto; text-align: center; }
.hero-center .hero-kicker { display: block; }
.hero-center .hero-cta-row { justify-content: center; margin-bottom: 0; }
.hero-center h1 { font-size: clamp(36px, 5.2vw, 72px); }

.section-leader-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 52px; align-items: center; }
.section-leader-visual img { width: 100%; border-radius: 18px; box-shadow: 0 18px 50px rgba(0,0,0,.18); display: block; }
.section-leader-copy .section-kicker { color: var(--brand); }
.section-leader-copy p { color: var(--muted); margin: 14px 0 26px; font-size: 15.5px; }
@media (max-width: 900px) { .section-leader-grid { grid-template-columns: 1fr; } }

.remote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.remote-copy h2 { text-align: left; }
.remote-video video { width: 100%; border-radius: 18px; box-shadow: 0 20px 55px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2); display: block; }
@media (max-width: 900px) { .remote-grid { grid-template-columns: 1fr; } .remote-copy { text-align: center; } .remote-copy h2 { text-align: center; } }

.snapshot-light { padding: 84px 0; }
.snapshot-light .section-kicker { display: block; margin-bottom: 10px; }
.snapshot-light h2 { margin-bottom: 12px; }

.seo-list { list-style: none; counter-reset: seo; margin: 0 0 0 0; }
.seo-list li { counter-increment: seo; position: relative; padding-left: 34px; margin-bottom: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.seo-list li::before { content: counter(seo); position: absolute; left: 0; top: 1px; width: 24px; height: 24px; border-radius: 50%; background: #00aa5d; color: #fff; font-size: 12.5px; font-weight: 700; display: grid; place-items: center; }
.seo-list li strong { color: var(--ink); }

.section-alt { background: var(--bg); }
