/* ============================================================
   HARLEM STREET — Dark Street Graffiti Bold
   Le Tampon, La Réunion 974
   ============================================================ */

:root {
  /* Palette officielle */
  --black:          #0A0A0A;
  --brown-darkest:  #1F1410;
  --brown:          #442C1C;
  --brown-deepest:  #050505;
  --magenta:        #DF1FFF;
  --magenta-dark:   #B814D3;
  --yellow:         #FCC505;
  --yellow-dark:    #c79213;
  --cream:          #FAF7F0;
  --cream-70:       rgba(250, 247, 240, 0.70);
  --cream-65:       rgba(250, 247, 240, 0.65);
  --cream-50:       rgba(250, 247, 240, 0.50);
  --cream-40:       rgba(250, 247, 240, 0.40);
  --cream-10:       rgba(250, 247, 240, 0.10);

  /* Tweakable */
  --radius:         24px;
  --glow:           1;     /* 0 – 1.6 multiplier */
  --halftone:       1;     /* 0 – 1.6 multiplier */

  --header-h:       72px;

  --font-display: "Barlow Condensed", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- SVG safety (prevents un-sized inline SVGs blowing up) ---------- */
svg { max-width: 100%; height: auto; }
/* Icon-context SVGs default to a sane cap so a missing width/height
   attribute can never render an SVG at its 300×150 intrinsic size. */
.icon, [class*="icon-"],
.badge svg, .check svg, .verified svg,
.avis-verified svg, .avis-gbadge svg, .avis-meta-logo,
.review-card svg, .trust-bar svg, .social-ico svg {
  width: auto;
  max-height: 32px;
  max-width: 32px;
}

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.5px;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--yellow);
  font-size: 15px;
}

/* ---------- Textures ---------- */
.halftone {
  position: relative;
}
.halftone::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(252, 197, 5, calc(0.07 * var(--halftone))) 1px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
  z-index: 0;
}
.halftone > * { position: relative; z-index: 1; }

/* ---------- Buttons (always pill) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}
.btn-magenta {
  background: var(--magenta);
  color: #fff;
}
.btn-magenta:hover {
  background: var(--magenta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(223, 31, 255, 0.35);
}
.btn-yellow-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-yellow-outline:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 197, 5, 0.25);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--brown);
}
.btn-yellow:hover {
  background: #ffd633;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(252, 197, 5, 0.3);
}
.btn-black {
  background: var(--black);
  color: var(--cream);
}
.btn-black:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.5); }
.btn-white {
  background: var(--cream);
  color: var(--black);
}
.btn-white:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,0.35); }
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-white-outline:hover { transform: translateY(-2px); background: #fff; color: var(--magenta-dark); }
.btn-sm { padding: 11px 22px; font-size: 13px; }

/* ---------- Layout ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.5px;
  font-size: clamp(40px, 6vw, 76px);
  margin: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--black);
  border-bottom: 1px solid rgba(252, 197, 5, 0.2);
  transition: box-shadow .25s ease;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); }
.header-inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 6px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto 0 18px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--yellow);
  transition: width .25s ease;
}
.nav-link:hover { color: var(--yellow); }
.nav-link:hover::after { width: 100%; }
.nav-short { display: none; }
@media (min-width: 861px) and (max-width: 1024px) {
  .nav { gap: 22px; }
  .nav-full { display: none; }
  .nav-short { display: inline; }
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.pill-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(250,247,240,0.3);
  border-radius: 999px;
  padding: 9px 16px;
  background: transparent;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease;
}
.pill-ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.pill-ghost .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); }

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger-btn span { width: 26px; height: 3px; background: var(--yellow); border-radius: 2px; transition: .25s; }

/* mobile fullscreen menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-close { font-size: 34px; color: var(--yellow); line-height: 1; }
.mobile-links { display: flex; flex-direction: column; gap: 10px; margin-top: 50px; }
.mobile-links a {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: -0.5px;
  color: var(--cream);
}
.mobile-links a:active { color: var(--yellow); }
.mobile-menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 32px 60px;
  overflow: hidden;
  background: var(--black);
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(closest-side at 82% 14%, rgba(223, 31, 255, calc(0.18 * var(--glow))) 0%, transparent 42%),
    radial-gradient(closest-side at 14% 88%, rgba(252, 197, 5, calc(0.12 * var(--glow))) 0%, transparent 52%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.slogan-pill {
  display: inline-block;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 15px;
  padding: 11px 24px;
  border-radius: 999px;
  transform: rotate(-1.5deg);
  box-shadow: 4px 4px 0 var(--yellow);
  margin-bottom: 36px;
  white-space: nowrap;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(72px, 13vw, 132px);
  line-height: 0.82;
  letter-spacing: -2px;
  margin: 0 0 28px;
}
.hero-title .l1 { color: var(--yellow); display: block; }
.hero-title .l2 { color: var(--magenta); display: block; }
/* title style variants */
.titlestyle-cream .hero-title .l1 { color: var(--cream); }
.titlestyle-outline .hero-title .l1,
.titlestyle-outline .hero-title .l2 {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--magenta);
}
.titlestyle-outline .hero-title .l1 { -webkit-text-stroke-color: var(--yellow); }

.hero-sub {
  color: var(--cream-70);
  font-size: 20px;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.45;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cream-40);
  transition: .25s;
  cursor: pointer;
}
.hero-dots .dot.active { background: var(--magenta); width: 28px; border-radius: 999px; }
.hero-playpause {
  color: var(--cream-50);
  font-size: 13px;
  border: 1px solid var(--cream-10);
  border-radius: 999px;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-right: 6px;
}
.hero-playpause:hover { color: var(--yellow); border-color: var(--yellow); }

/* ============================================================
   MENU — patchwork cards
   ============================================================ */
.menu-sec { background: var(--brown-darkest); }
.title-cream { color: var(--cream); }
.title-yellow { color: var(--yellow); }

.burger-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.burger-grid.layout-feature {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
.bcard {
  position: relative;
  border-radius: var(--radius);
  padding: 26px 24px 30px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.bcard:hover { transform: translateY(-8px); }
.bcard.c-yellow { background: linear-gradient(160deg, var(--yellow), var(--yellow-dark)); color: var(--brown); }
.bcard.c-yellow:hover { box-shadow: 0 0 0 2px var(--yellow), 0 22px 44px rgba(252,197,5,0.22); }
.bcard.c-magenta { background: linear-gradient(160deg, var(--magenta), var(--magenta-dark)); color: #fff; }
.bcard.c-magenta:hover { box-shadow: 0 0 0 2px var(--magenta), 0 22px 44px rgba(223,31,255,0.28); }
.bcard.c-black { background: var(--black); border: 1px solid rgba(252,197,5,0.15); color: var(--cream); }
.bcard.c-black:hover { box-shadow: 0 0 0 2px rgba(252,197,5,0.4), 0 22px 44px rgba(0,0,0,0.5); }
.bcard.c-cream { background: var(--cream); color: var(--brown); }
.bcard.c-cream:hover { box-shadow: 0 0 0 2px var(--cream), 0 22px 44px rgba(0,0,0,0.4); }

.bcard-photo {
  aspect-ratio: 4 / 5;
  flex: none;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,0.10) 0 10px, rgba(0,0,0,0.04) 10px 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bcard.c-black .bcard-photo, .bcard.c-magenta .bcard-photo {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 10px, rgba(255,255,255,0.02) 10px 20px);
}
.bcard-photo .ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: center;
  padding: 0 12px;
}
.bcard-name {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
}
.bcard-tag { font-size: 14px; opacity: 0.78; font-style: italic; margin: 0 0 16px; }
.bcard .btn { align-self: flex-start; margin-top: auto; }

.menu-foot { display: flex; gap: 16px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }

/* ============================================================
   REJOINS LE GAME
   ============================================================ */
.game-sec { background: var(--black); }
.game-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.game-card {
  position: relative;
  border-radius: 28px;
  padding: 60px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.game-card.club { background: var(--magenta); color: #fff; }
.game-card.livr { background: var(--brown); color: var(--cream); }
.deco-circle { position: absolute; border-radius: 50%; pointer-events: none; }
.club .deco-circle.a { width: 280px; height: 280px; background: rgba(255,255,255,0.10); top: -90px; right: -70px; }
.club .deco-circle.b { width: 170px; height: 170px; background: rgba(255,255,255,0.08); bottom: -50px; left: -40px; }
.livr .deco-circle.a { width: 260px; height: 260px; background: rgba(252,197,5,0.15); top: -80px; right: -60px; }
.livr .deco-circle.b { width: 150px; height: 150px; background: rgba(252,197,5,0.12); bottom: -40px; left: -30px; }
.game-card > * { position: relative; z-index: 1; }

/* ---- Street Club card: image bg + magenta overlay (layered) ---- */
.game-card.club > * { z-index: 3; }                 /* content sits on top */
.game-card.club > .club-bg-img { z-index: 0; object-position: center var(--club-img-pos, bottom); border-radius: inherit; }
.game-card.club > .deco-circle { z-index: 1; }      /* circles between image + overlay */
.game-card.club > .club-overlay { z-index: 2; }
.club-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(223, 31, 255, 0.80) 0%, rgba(184, 20, 211, 0.90) 100%);
  opacity: var(--club-overlay, 0.85);
  pointer-events: none;
}

/* ---- Livraison card: image bg + brown overlay (mirror of club) ----
   Same technique as the club (opaque-ish image + tinted gradient on top,
   no mix-blend-mode). Because the delivery photo is already in brown tones,
   the brown tint barely shifts it — so the image is dimmed and the brown
   layer reinforced until it reads as discreetly as the magenta club image. */
.game-card.livr > * { z-index: 3; }                 /* content sits on top */
.game-card.livr > .club-bg-img { z-index: 0; object-position: center; border-radius: inherit; opacity: 0.5; }
.game-card.livr > .deco-circle { z-index: 1; }      /* circles between image + overlay */
.game-card.livr > .livr-overlay { z-index: 2; }
.livr-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(68, 44, 28, 0.85) 0%, rgba(68, 44, 28, 0.93) 100%);
  opacity: 0.88;
  pointer-events: none;
}
.club.no-circles .deco-circle { display: none; }
.game-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(46px, 5vw, 66px);
  line-height: 0.92;
  letter-spacing: -1px;
  margin: 0 0 22px;
}
.game-sub { font-size: 19px; margin: 0 0 32px; max-width: 360px; }
.club .game-sub { color: rgba(255,255,255,0.92); }
.livr .game-sub { color: var(--cream-70); }
.game-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.badge-soon {
  position: absolute;
  top: 28px; right: 28px;
  background: var(--yellow);
  color: var(--brown);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  z-index: 2;
}

/* ============================================================
   NOTRE HISTOIRE
   ============================================================ */
.story-sec { background: var(--brown-darkest); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -1px;
  margin: 16px 0 30px;
  color: var(--cream);
}
.story-title .hl { color: var(--magenta); }
.story-grid p { color: var(--cream-70); font-size: 17px; margin: 0 0 18px; max-width: 480px; }
.story-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  background: var(--brown);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.story-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(252,197,5,0.14) 1.4px, transparent 1.6px);
  background-size: 18px 18px;
}
.story-photo .ph-label {
  position: relative;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--cream-50);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--brown-deepest); padding: 80px 0 32px; position: relative; }
.footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(223,31,255,0.05) 1px, transparent 1.3px);
  background-size: 20px 20px;
  pointer-events: none;
}
.footer .wrap { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand .logo img { height: 60px; border-radius: 8px; }
.footer-brand p { color: var(--cream-50); font-size: 14px; max-width: 260px; line-height: 1.5; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.social-ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--cream-40);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: .2s;
}
.social-ico:hover { background: var(--magenta); border-color: var(--magenta); color: #fff; }
.social-ico svg { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  color: var(--yellow);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li {
  color: var(--cream-70);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--cream-10);
  text-align: center;
  color: var(--cream-40);
  font-size: 13px;
  line-height: 1.7;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.anim-slide.reveal { transform: translateX(-40px); }
.anim-slide.reveal.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .burger-grid, .burger-grid.layout-feature { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .logo img { height: 38px; }
  .footer-brand .logo img { height: 52px; }
  .nav, .header-actions .pill-ghost, .header-actions .desktop-cta { display: none; }
  .burger-btn { display: flex; }
  .header-actions { margin-left: auto; }
  .header-actions .mobile-cta { display: inline-flex; }
  .game-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .story-photo { order: -1; }
  .section { padding: 72px 0; }
  .game-card { padding: 44px 32px; min-height: auto; }
}
@media (min-width: 861px) {
  .header-actions .mobile-cta { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .burger-grid, .burger-grid.layout-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .hero-ctas .btn { width: 100%; }
  .hero { padding: 56px 20px 70px; }
}

/* ============================================================
   SHARED — compact page hero
   ============================================================ */
.hero-compact {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 32px 56px;
  overflow: hidden;
  background: var(--black);
}
.hero-compact .hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-compact > .hc-inner { position: relative; z-index: 2; max-width: 820px; }

/* ---- Menu hero (Les Bangers): photo bg + brown overlay (same technique as Livraison) ---- */
.hero-menu .hero-bg-img {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("produits/menu-hero.png");
  background-size: cover;
  background-position: center;
}
.hero-menu .hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--brown);
  opacity: 0.65;
}
@media (max-width: 768px) {
  .hero-menu .hero-bg-img { background-image: url("produits/menu-hero-mobile.png"); }
}
/* soft drop shadow so the title reads cleanly over the photo */
.hero-menu .hc-inner .eyebrow,
.hero-menu .page-title,
.hero-menu .lead {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}
.page-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(48px, 7.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -1.5px;
  margin: 12px 0 24px;
  color: var(--cream);
}
.page-title .hl { color: var(--magenta); }
.page-title .hly { color: var(--yellow); }
.hero-compact .lead { color: var(--cream-70); font-size: 19px; margin: 0; }

/* ============================================================
   NOS BURGERS — filters + product grid
   ============================================================ */
.filters {
  background: var(--brown-darkest);
  padding: 22px 24px;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  border-bottom: 1px solid rgba(252,197,5,0.12);
}
.filters-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tab {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  color: var(--cream);
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s;
}
.tab:hover { border-color: var(--yellow); color: var(--yellow); }
.tab.active { background: var(--yellow); color: var(--brown); }
.tab.active:hover { color: var(--brown); }

.product-sec { background: var(--black); padding: 70px 0 96px; }
.cat-block { margin-bottom: 64px; }
.cat-block:last-child { margin-bottom: 0; }
.cat-head {
  display: flex; align-items: center; gap: 18px;
  margin: 0 0 28px;
}
.cat-rule {
  width: 34px; height: 5px; flex-shrink: 0;
  background: var(--yellow); border-radius: 999px;
}
.cat-title {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 40px); line-height: 0.95; letter-spacing: -0.5px;
  color: var(--cream); margin: 0;
}
.cat-count {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--brown); background: var(--cream-65, #d8cbb8);
  min-width: 30px; height: 30px; padding: 0 9px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; margin-left: 2px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--brown);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 0 0 2px rgba(252,197,5,0.35), 0 22px 44px rgba(0,0,0,0.5); }

/* ---- Légende formule + badge "+3€" (burgers & waffles) ---- */
.formule-note {
  display: flex; align-items: center; gap: 9px;
  margin: 0 0 32px; padding: 12px 18px;
  width: fit-content; max-width: 100%;
  background: rgba(252,197,5,0.10);
  border: 1px solid rgba(252,197,5,0.30);
  border-radius: 999px;
  color: var(--cream); font-size: 14.5px; line-height: 1.4;
}
.product-card { position: relative; }
.formule-badge {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.3px;
  background: var(--yellow); color: var(--black);
  border: none; cursor: pointer;
  padding: 6px 10px 6px 9px; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.38);
}
.formule-badge:hover { filter: brightness(1.04); }
.formule-ico { font-size: 12px; line-height: 1; }
.formule-tip {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 232px; max-width: 70vw;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500; font-size: 12.5px; letter-spacing: 0; line-height: 1.45;
  text-transform: none; text-align: left;
  color: var(--cream); background: var(--brown-darkest);
  padding: 11px 13px; border-radius: 12px;
  border: 1px solid rgba(252,197,5,0.35);
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease; z-index: 6;
}
.formule-badge:hover .formule-tip,
.formule-badge:focus-visible .formule-tip,
.formule-badge.open .formule-tip { opacity: 1; transform: translateY(0); }
.product-photo {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, rgba(0,0,0,0.22) 0 11px, rgba(0,0,0,0.10) 11px 22px);
}
.product-photo .ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--cream-50); text-align: center; padding: 0 12px;
}
.product-tagbadge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-display); font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; font-size: 11px;
  background: rgba(10,10,10,0.7); color: var(--yellow);
  padding: 6px 12px; border-radius: 999px;
}
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-name {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.2px; font-size: 23px; color: var(--cream); margin: 0 0 8px;
}
.product-desc { font-size: 14px; color: var(--cream-65); margin: 0 0 20px; line-height: 1.5; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.price-badge {
  font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: 0.5px;
  background: var(--magenta); color: #fff; padding: 8px 16px; border-radius: 999px; white-space: nowrap;
}

/* magenta CTA banner */
.cta-banner { background: var(--magenta); padding: 72px 32px; text-align: center; }
.cta-banner .cta-phone { display: block; margin-top: 18px; color: #fff; font-weight: 700; font-size: 20px; letter-spacing: 0.5px; text-decoration: none; }
.cta-banner .cta-phone:hover { text-decoration: underline; }
.cta-banner h2 {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 5vw, 56px); line-height: 0.95; letter-spacing: -1px;
  color: #fff; margin: 0 0 28px;
}

/* ============================================================
   NOS RESTOS — map + resto card + hours
   ============================================================ */
.restos-sec { background: var(--black); padding: 64px 0 96px; }
.map-box {
  position: relative;
  height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
  background:
    linear-gradient(0deg, rgba(10,10,10,0.4), rgba(10,10,10,0.4)),
    repeating-linear-gradient(0deg, #16100c 0 38px, #1b130d 38px 40px),
    repeating-linear-gradient(90deg, #16100c 0 58px, #1b130d 58px 60px);
  border: 1px solid rgba(252,197,5,0.15);
}
.map-roads::before, .map-roads::after {
  content: ""; position: absolute; background: rgba(252,197,5,0.10);
}
.map-roads::before { left: 0; right: 0; top: 54%; height: 16px; transform: rotate(-3deg); }
.map-roads::after { top: 0; bottom: 0; left: 38%; width: 14px; transform: rotate(2deg); }
.map-pin {
  position: absolute; top: 50%; left: 42%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; z-index: 2;
}
.map-pin .pin-head {
  background: var(--magenta); color: #fff;
  font-family: var(--font-display); font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  font-size: 12px; padding: 8px 14px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(223,31,255,0.5);
}
.map-pin .pin-dot { width: 14px; height: 14px; background: var(--magenta); border-radius: 50%; margin-top: 6px; box-shadow: 0 0 0 5px rgba(223,31,255,0.25); }
.map-open {
  position: absolute; bottom: 18px; right: 18px; z-index: 2;
}

.resto-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  background: var(--brown-darkest);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(252,197,5,0.12);
}
.resto-photo {
  position: relative; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, rgba(252,197,5,0.06) 0 11px, rgba(252,197,5,0.02) 11px 22px);
}
.resto-photo .ph-label { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--cream-50); }
.resto-info { padding: 44px 44px 48px; }
.resto-name {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.3px; font-size: 38px; color: var(--yellow); margin: 0 0 18px; line-height: 0.95;
}
.resto-line { display: flex; gap: 10px; align-items: flex-start; color: var(--cream-70); font-size: 15px; margin-bottom: 10px; }
.resto-line a { color: var(--cream-70); }
.resto-line a:hover { color: var(--yellow); }
.resto-line .k { color: var(--yellow); font-weight: 600; font-family: var(--font-display); letter-spacing: 1px; text-transform: uppercase; font-size: 13px; min-width: 64px; }

.hours {
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  border-top: 1px solid var(--cream-10);
  padding-top: 22px;
}
.hours .d { font-family: var(--font-display); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); font-size: 14px; }
.hours .h { color: var(--cream-70); font-size: 14px; }
.hours .h.closed { color: var(--magenta); font-weight: 600; }

/* Live open/closed status badge (next to the hours list) */
.open-status {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 24px 0 4px;
  padding: 11px 18px;
  border-radius: 14px;
  background: var(--brown-darkest, rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
}
.open-status .os-dot { width: 12px; height: 12px; border-radius: 50%; flex: none; }
.open-status .os-text { display: flex; flex-direction: column; line-height: 1.2; }
.open-status .os-label { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-size: 16px; }
.open-status .os-sub { color: var(--cream-70); font-size: 13px; margin-top: 3px; }
.open-status.is-open .os-label { color: #35d07f; }
.open-status.is-open .os-dot { background: #35d07f; }
.open-status.is-closed .os-label { color: #ff5a5a; }
.open-status.is-closed .os-dot { background: #ff5a5a; box-shadow: 0 0 0 4px rgba(255,90,90,0.16); }
@media (prefers-reduced-motion: no-preference) {
  .open-status.is-open .os-dot { animation: os-pulse 2s ease-in-out infinite; }
}
@keyframes os-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53,208,127,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(53,208,127,0); }
}
.resto-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.more-restos { background: var(--brown-darkest); text-align: center; padding: 80px 32px; }
.more-restos h2 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(30px,4vw,48px); color: var(--cream); margin: 0 0 16px; letter-spacing: -0.5px; }
.more-restos p { color: var(--cream-70); max-width: 540px; margin: 0 auto 28px; font-size: 17px; }

/* ============================================================
   email form (livraison / more restos)
   ============================================================ */
.email-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; }
.email-form input {
  flex: 1; min-width: 200px;
  background: rgba(10,10,10,0.6);
  border: 1px solid var(--cream-10);
  border-radius: 999px;
  padding: 15px 22px;
  color: var(--cream);
  font-family: var(--font-body); font-size: 15px;
}
.email-form input::placeholder { color: var(--cream-40); }
.email-form input:focus { outline: none; border-color: var(--yellow); }
.form-note { color: var(--cream-40); font-size: 13px; text-align: center; margin: 16px 0 0; }
.form-ok { color: var(--yellow); font-family: var(--font-display); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; text-align: center; margin: 18px 0 0; }

/* ============================================================
   STREET CLUB
   ============================================================ */
.club-hero {
  position: relative;
  background: var(--magenta);
  color: #fff;
  min-height: 78vh;
  --club-overlay: 0.5;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 32px 90px;
  overflow: hidden;
}
/* image bg + magenta overlay — same treatment as Accueil club card */
.club-hero > .site-img { z-index: 0; object-fit: cover; }
.club-hero > .club-overlay { z-index: 1; }
.club-hero > .deco-circle,
.club-hero > h1,
.club-hero > .lead,
.club-hero > .club-btns { z-index: 2; }
.club-hero .deco-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.10); pointer-events: none; }
.club-hero .dc1 { width: 520px; height: 520px; top: -180px; right: -120px; }
.club-hero .dc2 { width: 320px; height: 320px; bottom: -120px; left: -80px; background: rgba(255,255,255,0.08); }
.club-hero > * { position: relative; z-index: 1; }
.club-hero h1 {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(72px, 12vw, 132px); line-height: 0.85; letter-spacing: -2px; margin: 0 0 20px;
}
.club-hero .lead { font-size: 22px; color: rgba(255,255,255,0.92); margin: 0 0 40px; max-width: 560px; }
.club-hero .club-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.steps-sec { background: var(--black); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step {
  background: var(--brown-darkest);
  border: 1px solid rgba(252,197,5,0.12);
  border-radius: var(--radius);
  padding: 40px 34px;
}
.step .num { font-family: var(--font-display); font-weight: 900; font-size: 64px; color: var(--yellow); line-height: 1; letter-spacing: -2px; }
.step h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -0.2px; font-size: 26px; line-height: 1.05; color: var(--cream); margin: 14px 0 12px; }
.step p { color: var(--cream-70); font-size: 15px; margin: 0; line-height: 1.55; }

.app-sec { background: var(--brown-darkest); }
.app-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.iphone {
  width: 280px; aspect-ratio: 280 / 560; margin: 0 auto;
  background: #050505; border-radius: 42px; padding: 14px;
  border: 2px solid rgba(252,197,5,0.18); box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.iphone-screen {
  width: 100%; height: 100%; border-radius: 30px; overflow: hidden;
  background: #160b10;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  position: relative;
}
.iphone-screen .notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 90px; height: 22px; background: #050505; border-radius: 999px; }
.iphone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.iphone-screen .ph-h { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color: var(--yellow); font-size: 30px; line-height: 1.0; letter-spacing: -1px; text-align: center; }
.iphone-screen .ph-label { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--cream-50); }
.app-text h2 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(34px,4.5vw,56px); line-height: 0.92; letter-spacing: -1px; color: var(--cream); margin: 0 0 18px; }
.app-text h2 .hl { color: var(--magenta); }
.app-text p { color: var(--cream-70); font-size: 17px; max-width: 440px; margin: 0 0 28px; }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.club-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--cream-40); border-radius: 14px; padding: 11px 20px;
  color: var(--cream); transition: .2s;
}
.store-badge:hover { border-color: var(--yellow); color: var(--yellow); }
.store-badge .sb-sub { font-size: 11px; opacity: 0.7; display: block; }
.store-badge .sb-main { font-family: var(--font-display); font-weight: 800; letter-spacing: 0.5px; font-size: 18px; }

/* ============================================================
   LIVRAISON
   ============================================================ */
.livr-hero {
  position: relative;
  background: var(--brown);
  min-height: 70vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 32px 90px; overflow: hidden;
}
.livr-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(252,197,5, calc(0.08 * var(--halftone))) 1.4px, transparent 1.6px);
  background-size: 18px 18px; pointer-events: none;
}
.livr-hero > * { position: relative; z-index: 1; }
.badge-soon-lg {
  display: inline-block; background: var(--yellow); color: var(--brown);
  font-family: var(--font-display); font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  font-size: 14px; padding: 9px 20px; border-radius: 999px; margin-bottom: 26px;
}
.livr-hero h1 {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(56px, 9vw, 104px); line-height: 0.86; letter-spacing: -2px; color: var(--cream); margin: 0 0 18px;
}
.livr-hero .lead { font-size: 20px; color: var(--cream-70); margin: 0 0 38px; max-width: 520px; }

.faq-sec { background: var(--black); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-10); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 26px 4px; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  font-size: 21px; color: var(--cream);
}
.faq-q:hover { color: var(--yellow); }
.faq-chevron { color: var(--yellow); font-size: 26px; transition: transform .25s ease; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { color: var(--cream-70); font-size: 16px; line-height: 1.6; margin: 0; padding: 0 4px 26px; max-width: 640px; }

/* ============================================================
   RESPONSIVE — new pages
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (min-width: 1025px) {
  .product-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
  .product-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .filters { top: 0; }
  .resto-card { grid-template-columns: 1fr; }
  .resto-photo { min-height: 0; }
  /* Mobile: show the FULL resto poster (enseigne included), no cropping */
  .resto-photo .site-img {
    position: static;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .app-grid { grid-template-columns: 1fr; gap: 36px; }
  .app-text { text-align: center; }
  .app-text p { margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .club-cta-row { justify-content: center; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero-compact { padding: 92px 20px 48px; }
  .resto-info { padding: 32px 24px 36px; }
}

/* ============================================================
   MENTIONS LÉGALES
   ============================================================ */
.legal-hero { min-height: 200px; padding: 120px 32px 40px; }
.legal-hero .page-title { font-size: clamp(40px, 6vw, 60px); margin-bottom: 0; }
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
}
.legal-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.legal-spacing-compact { --legal-gap: 28px; }
.legal-spacing-airy    { --legal-gap: 56px; }
.legal-sec + .legal-sec {
  margin-top: var(--legal-gap, 44px);
  padding-top: var(--legal-gap, 44px);
  border-top: 1px solid rgba(252, 197, 5, 0.2);
}
.legal-sec h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 18px;
}
.legal-sec p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 247, 240, 0.85);
  margin: 0 0 14px;
}
.legal-sec p:last-child { margin-bottom: 0; }
.legal-sec strong { font-weight: 600; color: var(--cream); }
.legal-sec a { color: var(--magenta); text-decoration: none; }
.legal-sec a:hover { text-decoration: underline; }
.legal-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.legal-list li {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250, 247, 240, 0.85);
}
.legal-list li strong { font-weight: 600; color: var(--cream); }
.legal-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 4px;
}
.legal-placeholder {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--cream-50);
  background: rgba(252, 197, 5, 0.06);
  border: 1px dashed rgba(252, 197, 5, 0.3);
  border-radius: 8px;
  padding: 12px 16px;
}

/* ============================================================
   LE BANGER DU MOIS
   ============================================================ */
.banger-sec {
  padding: 100px 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(223, 31, 255, calc(0.12 * var(--glow))) 0%, transparent 60%),
    var(--black);
}
.banger-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* entrance: fade-up + subtle scale (overrides .reveal transform) */
.banger-anim.reveal { transform: translateY(28px) scale(0.95); }
.banger-anim.reveal.in { transform: none; }

.banger-block {
  position: relative;
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 40%, var(--brown) 100%);
}
.banger-block.reveal { transition: opacity .6s ease, transform .6s ease, box-shadow .45s ease; }
.banger-block:hover { box-shadow: 0 0 0 1px rgba(223, 31, 255, 0.5), 0 26px 70px rgba(223, 31, 255, 0.30); }

/* color variants */
.banger-yellow .banger-block { background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 42%, var(--brown) 100%); }
.banger-yellow .banger-block:hover { box-shadow: 0 0 0 1px rgba(252, 197, 5, 0.6), 0 26px 70px rgba(252, 197, 5, 0.30); }
.banger-brown  .banger-block { background: linear-gradient(135deg, var(--brown) 0%, #2A1B12 50%, var(--brown-darkest) 100%); }
.banger-brown  .banger-block:hover { box-shadow: 0 0 0 1px rgba(252, 197, 5, 0.35), 0 26px 70px rgba(0, 0, 0, 0.55); }

/* ---- left: product image ---- */
.banger-media { position: relative; }
.banger-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background-color: var(--brown-darkest);
  background-image: radial-gradient(circle, rgba(252, 197, 5, calc(0.12 * var(--halftone))) 1px, transparent 1.5px);
  background-size: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  animation: bangerFloat 4s ease-in-out infinite;
}
.banger-photo .ph-label {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--cream-40);
  text-align: center;
}
@keyframes bangerFloat {
  0%, 100% { transform: rotate(-2deg) translateY(-5px); }
  50%      { transform: rotate(-2deg) translateY(5px); }
}
.banger-stamp {
  position: absolute;
  top: -10px; left: -10px;
  z-index: 3;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  transform: rotate(8deg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.0;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* ---- right: text ---- */
.banger-info { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.banger-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  color: var(--yellow);
}
.banger-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.92;
  letter-spacing: -1px;
  color: #fff;
  margin: -4px 0 0;
}
.banger-rating { display: flex; align-items: center; gap: 12px; margin-top: -4px; }
.banger-stars { color: var(--yellow); font-size: 18px; letter-spacing: 3px; }
.banger-rating-txt { color: rgba(255, 255, 255, 0.72); font-size: 13px; }
.banger-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
}
.banger-price {
  display: inline-block;
  white-space: nowrap;
  background: var(--yellow);
  color: #0F0F0F;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  padding: 13px 26px;
  border-radius: 999px;
}
.banger-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.banger-tag {
  position: absolute;
  bottom: 22px; right: 28px;
  transform: rotate(-3deg);
  color: rgba(255, 255, 255, 0.5);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
}

/* yellow variant → dark text for contrast */
.banger-yellow .banger-eyebrow { color: var(--brown); }
.banger-yellow .banger-title { color: var(--black); }
.banger-yellow .banger-rating-txt { color: rgba(15, 15, 15, 0.7); }
.banger-yellow .banger-stars { color: var(--black); }
.banger-yellow .banger-desc { color: rgba(15, 15, 15, 0.82); }
.banger-yellow .banger-price { background: var(--black); color: var(--yellow); }
.banger-yellow .banger-tag { color: rgba(15, 15, 15, 0.5); }
.banger-yellow .btn-white-outline { color: var(--black); border-color: rgba(15, 15, 15, 0.55); }
.banger-yellow .btn-white-outline:hover { background: var(--black); color: var(--yellow); }

@media (prefers-reduced-motion: reduce) {
  .banger-photo { animation: none; transform: rotate(-2deg); }
}

@media (max-width: 860px) {
  .banger-sec { padding: 72px 0; }
  .banger-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
    text-align: center;
  }
  .banger-info { align-items: center; }
  .banger-photo { aspect-ratio: 4 / 3; }
  .banger-desc { max-width: none; }
  .banger-title { font-size: 56px; }
  .banger-ctas { flex-direction: column; width: 100%; }
  .banger-ctas .btn { width: 100%; }
  .banger-stamp { width: 78px; height: 78px; font-size: 13px; top: -8px; left: -8px; }
  .banger-tag { position: static; margin-top: 6px; }
}

/* ============================================================
   BANDEAU DE CONFIANCE (Google reviews trust bar)
   ============================================================ */
.trust-bar {
  background: var(--black);
  border-top: 1px solid rgba(252, 197, 5, 0.55);
  border-bottom: 1px solid rgba(252, 197, 5, 0.55);
  padding: 22px 32px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
}
.trust-logo { width: 28px; height: 28px; flex-shrink: 0; display: block; }
.trust-stars { color: var(--yellow); font-size: 19px; letter-spacing: 2px; line-height: 1; }
.trust-score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.5px;
}
.trust-count { color: var(--cream); font-size: 16px; }
.trust-divider { width: 1px; height: 28px; background: var(--cream-10); }
.trust-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--magenta);
  border: 2px solid var(--magenta);
  border-radius: 999px;
  padding: 10px 22px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.trust-cta:hover { background: var(--magenta); color: #fff; transform: translateY(-2px); }

@media (max-width: 640px) {
  .trust-inner { flex-direction: column; gap: 14px; }
  .trust-divider { display: none; }
}

/* ============================================================
   SECTION AVIS — Google reviews grid
   ============================================================ */
.avis-sec { background: var(--brown-darkest); }
.avis-title { margin: 0; }
.avis-title .l-cream { color: var(--cream); display: block; }
.avis-title .l-yellow { color: var(--yellow); display: block; }
.avis-sub {
  color: var(--cream-70);
  font-size: 19px;
  max-width: 540px;
  margin: 20px auto 0;
  line-height: 1.5;
}
.avis-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}
.avis-meta .avis-meta-stars { color: var(--yellow); font-size: 20px; letter-spacing: 2px; line-height: 1; }
.avis-meta .avis-meta-logo { width: 22px; height: 22px; display: block; }
.avis-meta .avis-meta-txt {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--cream);
}

.avis-card {
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--brown);
  border: 1px solid rgba(252, 197, 5, 0.15);
}
/* style variants */
.avis-style-black .avis-card { background: var(--black); border-color: rgba(252, 197, 5, 0.18); }
.avis-style-outline .avis-card { background: transparent; border-color: rgba(250, 247, 240, 0.18); }

.avis-card-top { display: flex; align-items: flex-start; gap: 13px; }
.avis-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--cream);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  line-height: 1;
}
.avis-id { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.avis-name { font-family: var(--font-body); font-weight: 700; color: var(--cream); font-size: 16px; line-height: 1.15; }
.avis-lg {
  align-self: flex-start;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.4;
}
.avis-date { color: var(--cream-50); font-size: 14px; line-height: 1.1; }
.avis-gbadge {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cream);
  margin-left: auto;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.avis-gbadge svg { width: 18px; height: 18px; display: block; }
/* Safety cap: no Google brand mark ever exceeds 32px on the page */
svg[aria-label="Google"] { max-width: 32px; max-height: 32px; }
.avis-body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.avis-stars { color: var(--yellow); font-size: 17px; letter-spacing: 2px; line-height: 1; }
.avis-text {
  color: rgba(250, 247, 240, 0.85);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}
.avis-verified {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--cream-50);
  font-size: 13px;
  padding-top: 4px;
}
.avis-verified svg { width: 16px; height: 16px; display: block; flex-shrink: 0; }

/* ---------- Carousel ---------- */
.avis-carousel { position: relative; }
.avis-viewport { overflow: hidden; padding: 4px; margin: 0 -4px; }
.avis-track { display: flex; align-items: stretch; }
.avis-slide { flex: 0 0 auto; display: flex; }
.avis-slide .avis-card { width: 100%; }

.avis-arrow {
  position: absolute;
  top: calc(50% - 30px);
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--yellow);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.avis-arrow:hover { background: var(--yellow); color: var(--black); }
.avis-arrow:active { transform: translateY(-50%) scale(0.94); }
.avis-arrow-prev { left: -20px; }
.avis-arrow-next { right: -20px; }

.avis-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.avis-dot {
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(250, 247, 240, 0.3);
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.avis-dot:hover { background: rgba(250, 247, 240, 0.55); }
.avis-dot.active { width: 32px; background: var(--magenta); }
.avis-counter {
  text-align: center;
  margin-top: 22px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 18px;
  color: var(--cream);
}
.avis-dots + .avis-counter { margin-top: 14px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.avis-foot { display: flex; justify-content: center; margin-top: 48px; }
.avis-foot .btn { font-size: 16px; padding: 17px 38px; }

@media (max-width: 1023px) {
  .avis-arrow-prev { left: -10px; }
  .avis-arrow-next { right: -10px; }
}
@media (max-width: 767px) {
  .avis-arrow { width: 40px; height: 40px; }
  .avis-arrow svg { width: 18px; height: 18px; }
  .avis-arrow-prev { left: -6px; }
  .avis-arrow-next { right: -6px; }
}

/* ============================================================
   SITE IMAGES — fill their placeholder containers
   ============================================================ */
.bcard-photo, .banger-photo, .story-photo, .resto-photo, .product-photo {
  overflow: hidden;
}
.site-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  border-radius: inherit;
}
/* keep overlay badges above the photo */
.product-tagbadge, .banger-stamp, .banger-tag { z-index: 3; }
.story-photo::before { z-index: 2; pointer-events: none; }
.story-photo .site-img { z-index: 1; object-position: center; }

/* ---- Hero background image carousel ---- */
.hero-imgs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-img-layer {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-img-layer.active { opacity: 1; }
.hero-img-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.62) 60%, rgba(10,10,10,0.82) 100%);
}
.hero.has-img .hero-glow { mix-blend-mode: screen; opacity: 0.7; }

/* ---- Hero background VIDEO ---- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
  pointer-events: none;
  background: var(--black);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.70) 100%);
}
/* keep the neon glow above the dark overlay, content above both */
.hero.has-video .hero-glow { z-index: 1; mix-blend-mode: screen; opacity: 0.7; }
.hero.has-video .hero-title .l1,
.hero.has-video .hero-title .l2 { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); }
.hero.has-video .hero-sub {
  color: rgba(245, 242, 234, 0.92);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.hero.has-video .slogan-pill { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35); }

/* ============================================================
   IMAGE MANAGER (inside Tweaks panel — light glass theme)
   ============================================================ */
.imgmgr-hint {
  margin: 4px 0 2px;
  font-size: 10.5px;
  line-height: 1.45;
  color: rgba(41, 38, 27, 0.55);
}
.imgmgr-cat { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.imgmgr-cat-h {
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(41, 38, 27, 0.78);
  padding-top: 4px;
}
.imgmgr-row {
  display: flex; gap: 9px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.imgmgr-row.drag { border-color: #df1fff; background: rgba(223, 31, 255, 0.08); }
.imgmgr-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 0.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.05);
  padding: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.imgmgr-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.imgmgr-plus { font-size: 22px; font-weight: 300; color: rgba(41, 38, 27, 0.4); line-height: 1; }
.imgmgr-busy {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  font-size: 18px; letter-spacing: 2px; color: #29261b;
}
.imgmgr-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 5px; }
.imgmgr-key {
  font-size: 11px; font-weight: 600; color: #29261b;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.imgmgr-alt { height: 24px; font-size: 11px; }
.imgmgr-actions { display: flex; flex-wrap: wrap; gap: 5px; align-items: center; }
.imgmgr-btn {
  appearance: none; border: 0.5px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: #29261b; font: inherit; font-size: 10.5px; font-weight: 500;
  padding: 3px 9px; border-radius: 6px; cursor: pointer;
}
.imgmgr-btn:hover { background: #fff; border-color: rgba(0, 0, 0, 0.25); }
.imgmgr-btn.ghost { color: rgba(41, 38, 27, 0.6); }
.imgmgr-reuse { height: 24px; width: auto; flex: 1; min-width: 92px; font-size: 10.5px; }

/* ============================================================
   TEXT MANAGER (inside Tweaks panel — light glass theme)
   ============================================================ */
.txtmgr-hint {
  margin: 4px 0 2px;
  font-size: 10.5px;
  line-height: 1.45;
  color: rgba(41, 38, 27, 0.55);
}
.txtmgr-acc {
  border-radius: 8px;
  margin-top: 5px;
}
.txtmgr-acc.depth-0 {
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.4);
}
.txtmgr-acc.depth-1 {
  border: 0.5px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
}
.txtmgr-acc-h {
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 0;
  background: transparent;
  color: #29261b;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
}
.txtmgr-acc.depth-0 > .txtmgr-acc-h { font-size: 11.5px; }
.txtmgr-acc.depth-1 > .txtmgr-acc-h { font-size: 11px; color: rgba(41, 38, 27, 0.82); }
.txtmgr-acc-h:hover { background: rgba(0, 0, 0, 0.04); }
.txtmgr-chev {
  font-size: 9px;
  width: 10px;
  color: rgba(41, 38, 27, 0.5);
  flex-shrink: 0;
}
.txtmgr-acc-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 4px 10px 11px;
}
.txtmgr-field { display: flex; flex-direction: column; gap: 4px; }
.txtmgr-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(41, 38, 27, 0.62);
}
.txtmgr-input { height: 26px; font-size: 11px; }
.txtmgr-area {
  height: auto;
  min-height: 46px;
  padding: 6px 8px;
  line-height: 1.4;
  resize: vertical;
  font-family: inherit;
}
.txtmgr-reset {
  appearance: none;
  width: 100%;
  margin-top: 12px;
  height: 30px;
  border: 0.5px solid rgba(223, 31, 255, 0.4);
  border-radius: 8px;
  background: rgba(223, 31, 255, 0.08);
  color: #b414cc;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.txtmgr-reset:hover { background: rgba(223, 31, 255, 0.15); }

/* ============================================================
   INLINE IMAGE EDITOR — overlay shown over editable images while
   the host "Modifier" mode is active (.edit-mode-on on <html>)
   ============================================================ */
.imgedit {
  position: absolute;
  inset: 0;
  z-index: 6;
  border: 2px dashed var(--yellow);
  border-radius: inherit;
  background: rgba(0, 0, 0, 0);
  transition: border-color 0.15s ease, background 0.15s ease;
  cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 26 26'><circle cx='13' cy='13' r='12' fill='%23fcc505' stroke='%23141414' stroke-width='1.5'/><rect x='6' y='9.5' width='14' height='9' rx='2' fill='%23141414'/><circle cx='13' cy='14' r='2.7' fill='%23fcc505'/><rect x='10' y='7.4' width='4' height='2.6' rx='1' fill='%23141414'/></svg>") 13 13, pointer;
  -webkit-user-select: none;
  user-select: none;
}
.imgedit:hover { border-style: solid; }
.imgedit.drag {
  border-style: solid;
  border-color: var(--magenta);
  border-width: 3px;
  background: rgba(223, 31, 255, 0.3);
}
.imgedit::after {
  content: attr(data-tip);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -5px);
  background: rgba(20, 18, 14, 0.94);
  color: #fff;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 5px 10px;
  border-radius: 7px;
  white-space: nowrap;
  max-width: 88%;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}
.imgedit:hover::after { opacity: 1; transform: translate(-50%, 0); }
.imgedit.drag::after { content: "Dépose pour remplacer"; opacity: 1; transform: translate(-50%, 0); }
.imgedit-busy {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--yellow);
  background: rgba(0, 0, 0, 0.55);
  border-radius: inherit;
}

/* Right-click context menu (portaled to body) */
.imgctx-backdrop { position: fixed; inset: 0; z-index: 2147483646; }
.imgctx {
  position: fixed;
  min-width: 196px;
  background: rgba(22, 20, 16, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 0.5px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
  padding: 5px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.imgctx button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 9px;
  appearance: none;
  border: 0;
  background: transparent;
  color: #f4f1ea;
  font: inherit;
  font-size: 12.5px;
  text-align: left;
  padding: 9px 11px;
  border-radius: 7px;
  cursor: pointer;
}
.imgctx button:hover { background: rgba(255, 255, 255, 0.1); }
.imgctx button.danger { color: #ff8fb0; }
.imgctx-sep { height: 0.5px; background: rgba(255, 255, 255, 0.12); margin: 4px 7px; }
.imgctx-details { padding: 5px 5px 2px; }
.imgctx-drow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  padding: 5px 6px;
  color: rgba(244, 241, 234, 0.6);
}
.imgctx-drow b { color: #f4f1ea; font-weight: 600; max-width: 120px; text-align: right; overflow-wrap: anywhere; }

/* Hero carousel editor (bottom-left strip) + editable border */
.hero.is-editing::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px dashed var(--yellow);
  border-radius: 14px;
  pointer-events: none;
  z-index: 4;
}
.hero-editor {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 11px 12px;
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}
.hero-editor-tag {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.8);
}
.hero-editor-chips { display: flex; gap: 8px; }
.hero-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 62px;
  cursor: pointer;
}
.hero-chip-thumb {
  position: relative;
  width: 62px;
  height: 46px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px dashed rgba(252, 197, 5, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, transform 0.12s ease;
}
.hero-chip:hover .hero-chip-thumb { transform: translateY(-2px); border-color: var(--yellow); }
.hero-chip.filled .hero-chip-thumb { border-style: solid; border-color: rgba(252, 197, 5, 0.7); }
.hero-chip.drag .hero-chip-thumb { border-color: var(--magenta); background: rgba(223, 31, 255, 0.3); }
.hero-chip-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-chip-plus { font-size: 22px; font-weight: 300; color: rgba(252, 197, 5, 0.85); line-height: 1; }
.hero-chip-label {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 640px) {
  .hero-editor { left: 14px; right: 14px; bottom: 88px; }
}
