/* ============================================
   CRÉP'S BOWLS — Styles du site client
   Extrait de index.html — ordre d'origine préservé
   ============================================ */

/* ---------- bloc 1/3 ---------- */
:root {
  --pink: #E0007A; --red: #FF0000; --yellow: #FFB800; --orange: #FF6B00;
  --lime: #7CFC00; --black: #0A0A0A; --white: #FFFFFF; --cream: #FFF8F0;
  --display: 'Anton', 'Impact', sans-serif;
  --bungee: 'Bungee', 'Anton', sans-serif;
  --body: 'Space Grotesk', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--black); background: var(--cream); min-height: 100vh; overflow-x: hidden; line-height: 1.5; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: all .3s ease; }
.nav.scrolled { background: rgba(10,10,10,.95); backdrop-filter: blur(12px); padding: 10px 0; }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--white); }
.logo-mark { width: 46px; height: 46px; object-fit: contain; flex: none; filter: drop-shadow(0 3px 10px rgba(0,0,0,.55)); transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-mark { transform: scale(1.07) rotate(-2deg); }
.logo-text { font-family: var(--display); font-size: 14px; line-height: .95; letter-spacing: .5px; text-align: left; }
.nav-links { display: flex; gap: 28px; }
.nav-links button { font-family: var(--display); font-size: 15px; letter-spacing: 1px; position: relative; padding: 6px 2px; color: rgba(255,255,255,.72); transition: color .2s ease; }
.nav-links button:hover, .nav-links button.active { color: var(--white); }
.nav-links button::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 3px; background: var(--pink); transition: width .3s ease; }
.nav-links button:hover::after, .nav-links button.active::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.cart-btn { position: relative; padding: 10px; background: var(--pink); color: var(--white); border-radius: 12px; box-shadow: 0 4px 14px rgba(224,0,122,.4); transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease; }
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(224,0,122,.55); }
.cart-btn:active { transform: translateY(0) scale(.96); }
.cart-bump { animation: bump .4s ease; }
@keyframes bump { 0%,100%{transform:scale(1)} 30%{transform:scale(1.2) rotate(-5deg)} 60%{transform:scale(.95)} }
.cart-badge { position: absolute; top: -6px; right: -6px; background: var(--yellow); color: var(--black); font-family: var(--display); font-size: 12px; min-width: 22px; height: 22px; border-radius: 11px; display: grid; place-items: center; padding: 0 6px; border: 2px solid var(--black); }
.burger { display: none; padding: 8px; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px; gap: 14px; background: var(--black); color: var(--white); }
.mobile-menu.open { display: flex; }
.mobile-menu button { font-family: var(--display); font-size: 18px; text-align: left; color: var(--white); }

.hero { position: relative; min-height: 100vh; padding: 120px 24px 100px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; background: var(--black); color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.splash { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; animation: float 12s ease-in-out infinite; }
.splash-1 { width: 500px; height: 500px; background: var(--pink); top: -100px; right: -100px; }
.splash-2 { width: 400px; height: 400px; background: var(--red); bottom: -50px; left: 20%; animation-delay: -4s; }
.splash-3 { width: 300px; height: 300px; background: var(--yellow); top: 30%; left: -50px; animation-delay: -8s; }
@keyframes float { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,-30px)} }
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--yellow); color: var(--black); font-family: var(--display); font-size: 13px; letter-spacing: 2px; border-radius: 100px; box-shadow: 3px 3px 0 var(--white); margin-bottom: 24px; transform: rotate(-2deg); }
.hero-title { margin: 0 0 28px; line-height: .85; }
.title-line { display: block; font-family: var(--display); font-size: clamp(64px, 11vw, 152px); letter-spacing: -2px; text-transform: uppercase; }
.title-1 { color: var(--white); }
.title-2 { color: var(--pink); transform: translateX(20px); }
.title-2 em { color: var(--yellow); font-style: italic; }
.title-3 { color: var(--white); -webkit-text-stroke: 3px var(--red); -webkit-text-fill-color: transparent; }
.title-sub { display: block; font-family: var(--bungee); font-size: 14px; letter-spacing: 4px; color: var(--yellow); margin-top: 12px; }
.hero-desc { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.85); margin: 0 0 32px; max-width: 520px; }
.hero-desc strong { color: var(--yellow); }
.hero-cta { display: flex; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 28px; font-family: var(--display); font-size: 16px; letter-spacing: 1.5px; border-radius: 12px; transition: all .15s ease; text-transform: uppercase; text-decoration: none; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--pink); color: var(--white); box-shadow: 5px 5px 0 var(--white); }
.hero .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--white); }
.menu-section .btn-primary, .contact .btn-primary, .cart-empty .btn-primary, .modal .btn-primary, .zones .btn-primary { box-shadow: 5px 5px 0 var(--black); }
.menu-section .btn-primary:hover, .contact .btn-primary:hover, .cart-empty .btn-primary:hover, .modal .btn-primary:hover, .zones .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--black); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--black); }
.btn-yellow { background: var(--yellow); color: var(--black); box-shadow: 4px 4px 0 var(--black); }
.btn-yellow:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.8); }
.meta-item svg { width: 16px; height: 16px; }
.meta-item strong { color: var(--white); }

.hero-visual { position: relative; z-index: 2; min-height: 520px; }
.hero-poster { position: absolute; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; border: 4px solid var(--white); box-shadow: 0 20px 50px rgba(0,0,0,.5); animation: bobble 5s ease-in-out infinite; }
.hero-poster img { width: 100%; height: 100%; object-fit: cover; }
.hero-poster-1 { width: 220px; top: 0; right: 30px; --r: 4deg; }
.hero-poster-2 { width: 170px; bottom: 30px; left: 0; animation-delay: -1.7s; --r: -6deg; }
.hero-poster-3 { width: 150px; top: 50%; right: -10px; animation-delay: -3.3s; --r: 8deg; }
@keyframes bobble { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-15px) rotate(calc(var(--r,0deg) - 2deg)); } }
.price-tag { position: absolute; top: 50px; left: 30px; background: var(--red); color: var(--white); border-radius: 50%; width: 110px; height: 110px; display: grid; place-items: center; text-align: center; box-shadow: 5px 5px 0 var(--white); z-index: 5; animation: spin 8s linear infinite; }
@keyframes spin { from { transform: rotate(12deg); } to { transform: rotate(372deg); } }
.price-from { display: block; font-size: 9px; letter-spacing: 1px; font-family: var(--display); }
.price-amount { display: block; font-family: var(--display); font-size: 30px; line-height: 1; }
.ticker { position: absolute; bottom: 0; left: -50px; right: -50px; background: var(--pink); border-top: 3px solid var(--white); border-bottom: 3px solid var(--white); padding: 14px 0; overflow: hidden; transform: rotate(-1.5deg) translateY(20px); }
.ticker-track { display: flex; white-space: nowrap; animation: scroll 30s linear infinite; }
.ticker-content { font-family: var(--display); font-size: 18px; letter-spacing: 2px; color: var(--white); padding: 0 20px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- bloc 2/3 ---------- */
.hits { padding: 100px 0 60px; background: var(--cream); }
.section-label { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--black); color: var(--yellow); font-family: var(--display); font-size: 12px; letter-spacing: 2px; border-radius: 100px; margin-bottom: 16px; }
.section-label.light { background: var(--white); color: var(--pink); }
.section-label svg { width: 14px; height: 14px; }
.hits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.hit-card { position: relative; background: var(--white); border: 3px solid var(--black); border-radius: 24px; overflow: hidden; box-shadow: 8px 8px 0 var(--black); transition: transform .2s ease, box-shadow .2s ease; cursor: pointer; }
.hit-card:hover { transform: translate(-3px,-3px); box-shadow: 12px 12px 0 var(--accent); }
.hit-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; border-bottom: 3px solid var(--black); }
.hit-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.hit-card:hover .hit-img-wrap img { transform: scale(1.04); }
.hit-tag { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--white); font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; padding: 4px 10px; border-radius: 100px; border: 2px solid var(--black); z-index: 2; }
.hit-body { padding: 22px; }
.hit-name { font-family: var(--display); font-size: 26px; letter-spacing: 1px; margin: 0 0 8px; line-height: 1; }
.hit-desc { font-size: 14px; line-height: 1.5; color: #444; margin: 0 0 18px; }
.hit-footer { display: flex; justify-content: space-between; align-items: center; }
.hit-price { font-family: var(--display); font-size: 30px; color: var(--accent); }
.hit-btn { background: var(--black); color: var(--white); padding: 10px 16px; font-family: var(--display); font-size: 13px; letter-spacing: 1.5px; border-radius: 8px; transition: all .15s ease; }
.hit-btn:hover { background: var(--accent); transform: scale(1.05); }

.menu-section { padding: 100px 0; background: var(--cream); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-family: var(--display); font-size: clamp(48px, 8vw, 96px); margin: 12px 0 8px; letter-spacing: -1px; line-height: .9; }
.section-title em { color: var(--pink); font-style: italic; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--yellow); }
.section-sub { font-size: 17px; color: #555; max-width: 540px; margin: 0 auto; }
.filters { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter { padding: 10px 18px; background: var(--white); border: 2px solid var(--black); font-family: var(--display); font-size: 13px; letter-spacing: 1px; border-radius: 100px; transition: all .15s ease; display: inline-flex; align-items: center; gap: 6px; }
.filter:hover { background: var(--yellow); }
.filter.active { background: var(--pink); color: var(--white); border-color: var(--pink); transform: scale(1.05); }
.menu-group { margin-bottom: 64px; }
.menu-group:last-child { margin-bottom: 0; }
.menu-group-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 3px dashed var(--black); }
.menu-group-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--gc); color: var(--white); border-radius: 14px; border: 3px solid var(--black); box-shadow: 4px 4px 0 var(--black); font-size: 28px; flex-shrink: 0; }
.menu-group-title { font-family: var(--display); font-size: clamp(32px, 5vw, 48px); letter-spacing: -.5px; line-height: 1; color: var(--gc); }
.menu-group-count { margin-left: auto; font-family: var(--display); font-size: 14px; letter-spacing: 1.5px; color: #888; padding: 6px 12px; border: 2px solid #ccc; border-radius: 100px; flex-shrink: 0; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.dish { background: var(--white); border: 3px solid var(--black); border-radius: 20px; overflow: hidden; box-shadow: 6px 6px 0 var(--black); transition: all .2s ease; display: flex; flex-direction: column; cursor: pointer; }
.dish:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--accent); }
.dish-visual { position: relative; aspect-ratio: 3/4; overflow: hidden; border-bottom: 3px solid var(--black); background: #f0f0f0; }
.dish-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dish:hover .dish-visual img { transform: scale(1.05); }
.dish-tag { position: absolute; top: 14px; right: 14px; background: var(--black); color: var(--white); padding: 4px 10px; font-family: var(--display); font-size: 11px; letter-spacing: 1.5px; border-radius: 100px; z-index: 2; }
.dish-soldout { position: absolute; top: 14px; left: 14px; background: #EF4444; color: #fff; padding: 5px 12px; font-family: var(--display); font-size: 12px; letter-spacing: 1.5px; border-radius: 100px; z-index: 3; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.dish-unavailable { cursor: default; }
.dish-unavailable:hover { transform: none; }
.dish-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.dish-name { font-family: var(--display); font-size: 22px; letter-spacing: .5px; margin: 0 0 8px; line-height: 1.05; }
.dish-desc { font-size: 13.5px; line-height: 1.5; color: #555; margin: 0 0 16px; flex: 1; }
.dish-footer { display: flex; justify-content: space-between; align-items: center; }
.dish-price { font-family: var(--display); font-size: 26px; color: var(--accent); }
.dish-add { background: var(--accent); color: var(--white); padding: 8px 14px; font-family: var(--display); font-size: 12px; letter-spacing: 1.2px; border-radius: 8px; display: inline-flex; align-items: center; gap: 4px; transition: all .15s ease; }
.dish-add svg { width: 14px; height: 14px; }
.dish-add:hover { background: var(--black); transform: scale(1.05); }

.offers { padding: 100px 0; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.offers::before { content: ''; position: absolute; top: -50px; left: -50px; right: -50px; height: 100px; background: var(--pink); transform: rotate(-2deg); }
.offers-header { text-align: center; position: relative; }
.offers .section-title { color: var(--white); }
.offers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; position: relative; }
.offer { position: relative; padding: 0; border-radius: 24px; border: 3px solid var(--white); overflow: hidden; transition: all .2s ease; display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }
.offer-img-wrap { position: relative; overflow: hidden; }
.offer-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.offer:hover .offer-img-wrap img { transform: scale(1.06); }
.offer-content { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.offer-big { background: linear-gradient(135deg, var(--pink), var(--red)); border-color: var(--yellow); }
.offer-share { background: linear-gradient(135deg, var(--red), var(--orange)); }
.offer:hover { transform: translateY(-6px); }
.offer-badge { display: inline-block; align-self: flex-start; background: var(--white); color: var(--black); font-family: var(--display); font-size: 12px; letter-spacing: 2px; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.offer h3 { font-family: var(--display); font-size: 32px; letter-spacing: 1px; margin: 0 0 12px; line-height: 1; }
.offer p { font-size: 14px; line-height: 1.5; margin: 0 0 20px; opacity: .92; }
.offer-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.offer-amount { font-family: var(--display); font-size: 48px; line-height: 1; }
.offer-per { font-size: 13px; opacity: .7; }

.zones { padding: 100px 0; background: var(--cream); position: relative; overflow: hidden; }
.zones::before { content: ''; position: absolute; top: 20%; left: -100px; width: 300px; height: 300px; background: var(--yellow); border-radius: 50%; opacity: .15; filter: blur(50px); }
.zones-pricing { display: flex; gap: 16px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.pricing-card { display: flex; align-items: center; gap: 14px; padding: 14px 22px; background: var(--white); border: 3px solid var(--black); border-radius: 16px; box-shadow: 5px 5px 0 var(--zc); }
.pricing-icon { width: 44px; height: 44px; background: var(--zc); color: var(--white); display: grid; place-items: center; border-radius: 10px; font-family: var(--display); font-size: 20px; border: 2px solid var(--black); }
.pricing-text { display: flex; flex-direction: column; }
.pricing-zone { font-family: var(--display); font-size: 14px; letter-spacing: 1.5px; color: #666; }
.pricing-price { font-family: var(--display); font-size: 24px; color: var(--zc); line-height: 1; }
.no-delivery-banner { max-width: 800px; margin: 0 auto 32px; padding: 14px 20px; background: rgba(0,0,0,.04); border: 2px dashed var(--black); border-radius: 14px; font-size: 14px; color: #555; text-align: center; }
.no-delivery-banner strong { color: var(--black); }
.commune-search-wrap { max-width: 540px; margin: 0 auto 24px; position: relative; }
.commune-search-input { width: 100%; padding: 14px 18px 14px 48px; background: var(--white); border: 3px solid var(--black); border-radius: 14px; font-family: var(--body); font-size: 15px; box-shadow: 4px 4px 0 var(--pink); }
.commune-search-input:focus { outline: none; box-shadow: 6px 6px 0 var(--pink); }
.commune-search-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #888; pointer-events: none; }
.map-container { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.map-wrap { background: linear-gradient(180deg, #B8E0E8 0%, #88C8D8 100%); border: 4px solid var(--black); border-radius: 24px; padding: 24px; position: relative; overflow: hidden; box-shadow: 8px 8px 0 var(--black); aspect-ratio: 4/5; }
.map-wrap::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at top, rgba(255,255,255,.3), transparent 60%); }
.map-decor { position: absolute; opacity: .55; pointer-events: none; font-size: 22px; }
.map-cloud-1 { top: 8%; left: 6%; }
.map-cloud-2 { top: 12%; right: 8%; }
.map-cloud-3 { bottom: 38%; left: 10%; font-size: 28px; }
.map-cloud-4 { bottom: 12%; right: 12%; font-size: 22px; }
.map-title-overlay { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); font-family: var(--display); font-size: 20px; letter-spacing: 4px; color: var(--black); z-index: 2; text-align: center; background: var(--white); padding: 6px 14px; border-radius: 100px; border: 2px solid var(--black); box-shadow: 3px 3px 0 var(--black); }
.martinique-svg { display: block; width: 100%; height: 100%; }
.island-base { fill: #f4f9e0; stroke: #4a6b1a; stroke-width: 1.5; stroke-linejoin: round; }
.island-nord-noservice { fill: #c8c8c8; stroke: #555; stroke-width: 1.2; stroke-dasharray: 4 3; opacity: .85; }
.island-zone-centre { fill: rgba(224,0,122,.55); }
.island-zone-sud { fill: rgba(255,107,0,.55); }
.island-zone-fdf { fill: rgba(255,184,0,.8); }
.zone-text { font-family: var(--display); font-weight: 900; pointer-events: none; }
.pin { cursor: pointer; transition: transform .15s ease; transform-origin: center; transform-box: fill-box; }
.pin:hover { transform: scale(1.25); }
.pin-shadow { fill: rgba(0,0,0,.35); }
.pin-body { fill: var(--white); stroke: var(--black); stroke-width: 1.8; }
.pin-dot { fill: var(--black); }
.pin.selected .pin-body { fill: var(--yellow); stroke: var(--black); stroke-width: 2.2; }
.zone-legend-wrap { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; align-items: center; font-size: 11px; background: rgba(255,255,255,.92); padding: 6px 14px; border-radius: 100px; border: 2px solid var(--black); font-weight: 700; flex-wrap: wrap; justify-content: center; box-shadow: 2px 2px 0 var(--black); }
.zone-legend-wrap .legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid #000; vertical-align: middle; margin-right: 4px; }
.communes-list-wrap { background: var(--white); border: 3px solid var(--black); border-radius: 20px; box-shadow: 6px 6px 0 var(--black); overflow: hidden; display: flex; flex-direction: column; max-height: 720px; }
.communes-list-header { padding: 18px 20px; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: space-between; }
.communes-list-title { font-family: var(--display); font-size: 18px; letter-spacing: 2px; }
.communes-list-count { background: var(--yellow); color: var(--black); padding: 2px 10px; border-radius: 100px; font-size: 14px; font-family: var(--display); }
.communes-list { flex: 1; overflow-y: auto; padding: 8px; }
.commune-list-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 10px; cursor: pointer; transition: all .15s; user-select: none; border: 2px solid transparent; }
.commune-list-item:hover { background: var(--cream); }
.commune-list-item.selected { background: var(--yellow); border-color: var(--black); }
.cli-info { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.cli-dot { width: 12px; height: 12px; border-radius: 4px; border: 2px solid var(--black); flex-shrink: 0; }
.cli-name { font-weight: 600; font-size: 14px; }
.cli-zone { font-family: var(--display); font-size: 11px; letter-spacing: 1px; color: #666; padding: 3px 8px; background: var(--cream); border-radius: 100px; }
.commune-list-item.selected .cli-zone { background: var(--white); }
.cli-price { font-family: var(--display); font-size: 16px; color: var(--pink); }
.selected-info { margin-top: 28px; padding: 20px; background: var(--white); border: 3px solid var(--black); border-radius: 16px; display: flex; align-items: center; justify-content: space-between; gap: 20px; box-shadow: 5px 5px 0 var(--pink); flex-wrap: wrap; }
.selected-info-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 140px; }
.selected-info-label { font-size: 12px; letter-spacing: 1.5px; color: #666; font-family: var(--display); }
.selected-info-name { font-family: var(--display); font-size: 28px; letter-spacing: .5px; color: var(--black); line-height: 1; }
.selected-info-price { font-family: var(--display); font-size: 36px; color: var(--pink); line-height: 1; }

/* ---------- bloc 3/3 ---------- */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 16px; line-height: 1.7; color: #333; margin: 0 0 16px; }
.about-text strong { color: var(--pink); }
.stats { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; }
.stat { flex: 1; min-width: 100px; padding: 16px; background: var(--cream); border: 3px solid var(--black); border-radius: 16px; text-align: center; box-shadow: 4px 4px 0 var(--pink); }
.stat-num { display: block; font-family: var(--display); font-size: 40px; color: var(--pink); line-height: 1; }
.stat-lbl { display: block; font-size: 12px; letter-spacing: 1px; color: #555; margin-top: 4px; }
.about-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 480px; margin: 0 auto; }
.about-tile { aspect-ratio: 3/4; border: 3px solid var(--black); border-radius: 16px; overflow: hidden; box-shadow: 5px 5px 0 var(--black); transition: transform .3s ease; }
.about-tile img { width: 100%; height: 100%; object-fit: cover; }
.about-tile:nth-child(1) { transform: rotate(-2deg); }
.about-tile:nth-child(2) { transform: rotate(2deg); }
.about-tile:nth-child(3) { transform: rotate(2deg); }
.about-tile:nth-child(4) { transform: rotate(-2deg); }
.about-tile:hover { transform: scale(1.05) rotate(0deg) !important; z-index: 5; }

.reviews { padding: 80px 0; background: var(--cream); text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.review { background: var(--white); border: 3px solid var(--black); border-radius: 20px; padding: 24px; box-shadow: 6px 6px 0 var(--yellow); text-align: left; }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; color: var(--yellow); }
.review-stars svg { width: 16px; height: 16px; fill: currentColor; }
.review-text { font-size: 15px; line-height: 1.5; color: #333; margin: 0 0 16px; font-style: italic; }
.review-name { font-family: var(--display); font-size: 14px; letter-spacing: 1px; color: var(--pink); }

.contact { padding: 100px 0; background: var(--pink); color: var(--white); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; top: 10%; right: -100px; width: 400px; height: 400px; background: var(--yellow); border-radius: 50%; opacity: .25; filter: blur(60px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.contact-lead { font-size: 17px; line-height: 1.6; margin: 16px 0 32px; opacity: .92; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 22px; font-family: var(--display); font-size: 18px; letter-spacing: 1px; background: rgba(0,0,0,.25); border: 2px solid var(--white); border-radius: 14px; transition: all .15s ease; }
.contact-btn svg { width: 20px; height: 20px; }
.contact-btn:hover { background: var(--white); color: var(--pink); transform: translateX(4px); }
.contact-wa:hover { color: #25D366; }
.contact-hours { display: flex; gap: 14px; align-items: center; padding: 18px; border-radius: 14px; background: rgba(0,0,0,.2); border: 2px solid rgba(255,255,255,.2); }
.contact-hours svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-hours strong { font-family: var(--display); font-size: 18px; letter-spacing: 1px; }
.contact-form-wrap { background: var(--white); color: var(--black); border-radius: 24px; padding: 32px; box-shadow: 10px 10px 0 var(--black); }
.form-title { font-family: var(--display); font-size: 32px; letter-spacing: 1px; margin: 0 0 20px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.cf-input { padding: 14px; border: 2px solid var(--black); border-radius: 10px; font-family: var(--body); font-size: 15px; background: var(--cream); resize: vertical; width: 100%; }
.cf-input:focus { outline: none; border-color: var(--pink); }
.cf-submit { justify-content: center; margin-top: 8px; width: 100%; }

.footer { background: var(--black); color: var(--white); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.logo-footer { color: var(--white); margin-bottom: 16px; }
.footer-tag { font-size: 14px; opacity: .7; max-width: 240px; }
.footer h4 { font-family: var(--display); font-size: 16px; letter-spacing: 2px; margin: 0 0 16px; color: var(--yellow); }
.footer button, .footer a { display: block; text-align: left; color: rgba(255,255,255,.75); padding: 4px 0; font-size: 14px; transition: color .15s; }
.footer button:hover, .footer a:hover { color: var(--pink); }
.footer-mention { font-size: 12px; opacity: .5; margin-top: 16px; }

.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 90; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5); transition: all .2s ease; animation: pulse 2.5s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1) rotate(8deg); }
@keyframes pulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.5); } 50% { box-shadow: 0 10px 50px rgba(37,211,102,.8); } }

.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); z-index: 250; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal { background: var(--cream); width: 100%; max-width: 540px; max-height: 90vh; border-radius: 24px; border: 4px solid var(--black); box-shadow: 12px 12px 0 var(--pink); display: flex; flex-direction: column; overflow: hidden; }
.modal-header { position: relative; aspect-ratio: 16/9; overflow: hidden; border-bottom: 3px solid var(--black); }
.modal-header img { width: 100%; height: 100%; object-fit: cover; }
.modal-header::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7)); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; background: var(--white); color: var(--black); border-radius: 50%; display: grid; place-items: center; z-index: 3; border: 3px solid var(--black); box-shadow: 3px 3px 0 var(--black); transition: all .15s; }
.modal-close:hover { background: var(--pink); color: var(--white); transform: rotate(90deg); }
.modal-title-wrap { position: absolute; bottom: 16px; left: 20px; right: 20px; z-index: 2; color: var(--white); }
.modal-title { font-family: var(--display); font-size: 30px; letter-spacing: 1px; line-height: 1; margin: 0 0 4px; }
.modal-price { font-family: var(--display); font-size: 22px; color: var(--yellow); }
.modal-body { padding: 24px; overflow-y: auto; flex: 1; }
.modal-section-label { font-family: var(--display); font-size: 14px; letter-spacing: 2px; color: var(--pink); margin: 0 0 12px; display: flex; align-items: center; gap: 8px; }
.modal-section-label::before { content: ''; width: 24px; height: 3px; background: var(--pink); border-radius: 2px; }
.modal-desc { font-size: 14px; line-height: 1.6; color: #555; margin: 0 0 24px; }
.ingredients-grid { display: grid; gap: 8px; margin-bottom: 24px; }
.ingredient-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: var(--white); border: 2px solid var(--black); border-radius: 12px; cursor: pointer; transition: all .15s; user-select: none; }
.ingredient-item:hover { background: #fff8e8; transform: translateX(2px); }
.ingredient-item.removed { background: #ffe5e5; border-color: var(--red); opacity: .7; }
.ingredient-item.removed .ingredient-name { text-decoration: line-through; color: var(--red); }
.ingredient-name { font-weight: 600; font-size: 14.5px; flex: 1; }
.ingredient-toggle { width: 40px; height: 24px; background: var(--lime); border-radius: 100px; position: relative; transition: all .2s; flex-shrink: 0; border: 2px solid var(--black); }
.ingredient-toggle::after { content: ''; position: absolute; top: 1px; left: 1px; width: 18px; height: 18px; background: var(--white); border-radius: 50%; border: 2px solid var(--black); transition: all .2s; }
.ingredient-item.removed .ingredient-toggle { background: var(--red); }
.ingredient-item.removed .ingredient-toggle::after { left: calc(100% - 21px); }
.ingredient-item.not-removable { opacity: .5; cursor: default; }
.ingredient-item.not-removable .ingredient-toggle { display: none; }

/* Suppléments dans la modal */
.supplement-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 16px; background: var(--white); border: 2px solid var(--black);
  border-radius: 12px; cursor: pointer; transition: all .15s; user-select: none;
}
.supplement-item:hover { background: #fff8e8; transform: translateX(2px); }
.supplement-item.selected { background: rgba(255,184,0,.15); border-color: var(--yellow); }
.supplement-name { font-weight: 600; font-size: 14px; flex: 1; }
.supplement-price { font-family: var(--display); font-size: 14px; color: var(--yellow); }
.supplement-check {
  width: 24px; height: 24px; border-radius: 7px; border: 2px solid var(--black);
  background: var(--cream); display: grid; place-items: center; flex-shrink: 0; transition: all .15s;
}
.supplement-item.selected .supplement-check { background: var(--yellow); border-color: var(--black); }
.supplement-check svg { width: 14px; height: 14px; stroke: var(--black); opacity: 0; transition: opacity .15s; }
.supplement-item.selected .supplement-check svg { opacity: 1; }
.qty-control { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--white); border: 2px solid var(--black); border-radius: 12px; margin-bottom: 24px; }
.qty-control label { font-family: var(--display); font-size: 14px; letter-spacing: 1.5px; flex: 1; }
.qty-buttons { display: flex; align-items: center; gap: 12px; }
.qty-buttons button { width: 32px; height: 32px; background: var(--black); color: var(--white); border-radius: 8px; display: grid; place-items: center; transition: all .15s; }
.qty-buttons button:hover { background: var(--pink); transform: scale(1.1); }
.qty-buttons span { font-family: var(--display); font-size: 22px; min-width: 28px; text-align: center; }
.modal-footer { padding: 20px 24px; border-top: 3px solid var(--black); background: var(--white); display: flex; gap: 12px; align-items: center; }
.modal-footer .btn { flex: 1; justify-content: center; }
.modal-total { font-family: var(--display); font-size: 28px; color: var(--pink); white-space: nowrap; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(6px); z-index: 200; display: none; justify-content: flex-end; }
.cart-overlay.open { display: flex; }
.cart-drawer { width: 100%; max-width: 460px; height: 100%; background: var(--cream); display: flex; flex-direction: column; overflow-y: auto; border-left: 4px solid var(--black); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 3px solid var(--black); background: var(--pink); color: var(--white); position: sticky; top: 0; z-index: 5; }
.cart-head h3 { font-family: var(--display); font-size: 26px; letter-spacing: 1px; margin: 0; }
.cart-count { background: var(--yellow); color: var(--black); padding: 2px 10px; border-radius: 100px; font-size: 16px; margin-left: 8px; border: 2px solid var(--black); }
.cart-close { color: var(--white); padding: 6px; border-radius: 50%; transition: background .15s; }
.cart-close:hover { background: rgba(255,255,255,.2); }
.cart-empty { padding: 60px 24px; text-align: center; }
.cart-empty-emoji { font-size: 72px; margin-bottom: 16px; }
.cart-empty p { font-family: var(--display); font-size: 22px; letter-spacing: 1px; margin: 0 0 24px; }
.cart-items { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.cart-item { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; padding: 12px; background: var(--white); border: 2px solid var(--black); border-radius: 14px; box-shadow: 4px 4px 0 var(--accent); }
.ci-thumb { width: 60px; height: 70px; border-radius: 8px; overflow: hidden; border: 2px solid var(--black); flex-shrink: 0; grid-row: 1 / 3; }
.ci-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ci-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ci-name { font-family: var(--display); font-size: 15px; letter-spacing: .5px; line-height: 1.1; }
.ci-price { font-size: 14px; color: var(--accent); font-weight: 700; }
.ci-customs { font-size: 11px; color: var(--red); margin-top: 4px; line-height: 1.3; }
.ci-qty { display: flex; align-items: center; gap: 8px; }
.ci-qty button { width: 28px; height: 28px; background: var(--black); color: var(--white); border-radius: 8px; display: grid; place-items: center; }
.ci-qty button:hover { background: var(--pink); }
.ci-qty span { font-family: var(--display); font-size: 16px; min-width: 20px; text-align: center; }
.cart-mode { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 16px; }
.mode-btn { padding: 12px; background: var(--white); border: 2px solid var(--black); font-family: var(--display); font-size: 12px; letter-spacing: 1px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.mode-btn svg { width: 16px; height: 16px; }
.mode-btn.active { background: var(--black); color: var(--yellow); }
.cart-zone-section { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 8px; }
.cart-zone-section label { font-family: var(--display); font-size: 13px; letter-spacing: 1.5px; }

/* FORMULAIRE D'ADRESSE */
.address-form { padding: 0 16px 8px; display: flex; flex-direction: column; gap: 10px; }
.addr-suggestions {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 50;
  background: #fff; border: 2px solid var(--black); border-top: none;
  border-radius: 0 0 12px 12px; max-height: 240px; overflow-y: auto;
  display: none; box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.addr-suggestions.open { display: block; }
.addr-sugg-item {
  padding: 11px 14px; cursor: pointer; font-size: 14px; line-height: 1.3;
  border-bottom: 1px solid #f0f0f0; transition: background .1s;
}
.addr-sugg-item:last-child { border-bottom: none; }
.addr-sugg-item:hover, .addr-sugg-item.active { background: #fff0f7; }
.addr-sugg-item strong { color: var(--pink); }
.addr-sugg-city { font-size: 12px; color: #888; }
.address-form-title { font-family: var(--display); font-size: 13px; letter-spacing: 1.5px; color: var(--black); display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.address-form-title svg { width: 14px; height: 14px; }
.address-field { display: flex; flex-direction: column; gap: 4px; }
.address-field label { font-size: 11px; font-weight: 600; color: #555; letter-spacing: .5px; }
.address-input { padding: 11px 13px; border: 2px solid var(--black); border-radius: 10px; font-family: var(--body); font-size: 14px; background: var(--white); transition: all .15s; width: 100%; }
select.address-input {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  cursor: pointer; padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
}
select.address-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(224,0,122,.15); }
select.address-input.success { background-color: #f0fdf4; border-color: #16a34a; }
select.address-input optgroup { font-family: var(--display); letter-spacing: 1px; color: var(--black); }
select.address-input option { font-weight: 600; padding: 8px; background: var(--white); }
.address-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(224,0,122,.15); }
.address-input.error { border-color: var(--red); }
.address-input.success { border-color: #16a34a; background: #f0fdf4; }
.address-row { display: grid; grid-template-columns: 1fr 2fr; gap: 8px; }
.commune-feedback {
  padding: 10px 12px; border-radius: 10px; font-size: 13px;
  display: flex; align-items: center; gap: 8px; line-height: 1.3;
}
.commune-feedback.ok { background: #dcfce7; color: #166534; border: 2px solid #16a34a; }
.commune-feedback.ko { background: #fee2e2; color: #991b1b; border: 2px solid #dc2626; }
.commune-feedback.info { background: #fef3c7; color: #854d0e; border: 2px solid #ca8a04; }
.commune-feedback strong { font-family: var(--display); letter-spacing: 1px; }
.commune-suggestions {
  background: var(--white); border: 2px solid var(--black); border-radius: 10px;
  max-height: 180px; overflow-y: auto; margin-top: -6px;
}
.commune-suggestion {
  padding: 10px 13px; cursor: pointer; font-size: 13px;
  border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center;
}
.commune-suggestion:last-child { border-bottom: none; }
.commune-suggestion:hover { background: var(--cream); }
.commune-suggestion .suggest-zone { font-family: var(--display); font-size: 11px; padding: 2px 8px; border-radius: 100px; color: var(--white); }
.commune-suggestion .suggest-zone.centre { background: var(--pink); }
.commune-suggestion .suggest-zone.sud { background: var(--orange); }
.zone-btn-c { padding: 14px; background: var(--white); border: 2px solid var(--black); font-family: var(--display); font-size: 13px; letter-spacing: 1px; border-radius: 12px; text-align: left; display: flex; flex-direction: column; gap: 2px; }
.zone-btn-c.active { background: var(--pink); color: var(--white); border-color: var(--pink); }
.cart-total { margin: 16px; padding: 16px; background: var(--black); color: var(--white); border-radius: 14px; }
.total-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; }
.total-row.discount-row { color: #4ade80; }
.total-row.discount-row span:first-child::before { content: ''; }

/* CODE PROMO */
.promo-wrap { margin: 0 16px 4px; }
.promo-form { display: flex; gap: 8px; }
.promo-input {
  flex: 1; padding: 11px 14px; border: 2px solid var(--black); border-radius: 10px;
  font-family: var(--body); font-size: 14px; background: var(--white);
  text-transform: uppercase; letter-spacing: 1px; transition: border-color .15s;
}
.promo-input:focus { outline: none; border-color: var(--pink); }
.promo-input::placeholder { text-transform: none; letter-spacing: 0; color: #aaa; }
.promo-btn {
  padding: 11px 16px; background: var(--black); color: var(--white);
  border-radius: 10px; font-family: var(--display); font-size: 13px;
  letter-spacing: 1px; cursor: pointer; transition: all .15s; white-space: nowrap;
}
.promo-btn:hover { background: var(--pink); }
.promo-feedback {
  margin-top: 7px; padding: 8px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 7px;
}
.promo-feedback.ok  { background: #dcfce7; color: #166534; }
.promo-feedback.err { background: #fee2e2; color: #991b1b; }
.promo-active {
  display: flex; align-items: center; gap: 8px; padding: 9px 13px;
  background: #dcfce7; border: 2px solid #16a34a; border-radius: 10px; font-size: 13px;
}
.promo-active strong { color: #166534; font-family: var(--display); letter-spacing: 1px; }
.promo-remove { margin-left: auto; cursor: pointer; color: #991b1b; font-weight: 700; font-size: 16px; line-height: 1; padding: 2px 4px; }.total-final { border-top: 2px solid rgba(255,255,255,.2); margin-top: 8px; padding-top: 12px; font-family: var(--display); font-size: 22px; letter-spacing: 1px; }
.total-final span:last-child { color: var(--yellow); }
.cart-checkout { margin: 0 16px; justify-content: center; width: calc(100% - 32px); }
.cart-note { font-size: 12px; text-align: center; color: #666; padding: 12px 16px 24px; margin: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 100px; min-height: auto; }
  .hero-visual { display: none; }
  /* Allège les effets flous sur mobile (moins gourmand, plus fluide) */
  .splash { filter: blur(40px); opacity: .4; animation: none; }
  .nav-links { display: none; }
  .burger { display: block; }
  .hits-grid, .reviews-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; }
  .offer-img-wrap { aspect-ratio: 4/3; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .title-line { font-size: clamp(48px, 16vw, 100px); }
  .menu-group-header { flex-wrap: wrap; }
  .menu-group-count { margin-left: 0; }
  .selected-info { flex-direction: column; align-items: flex-start; }
  .map-container { grid-template-columns: 1fr; }
  .communes-list-wrap { max-height: 480px; }
  .map-wrap { aspect-ratio: 1; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; }
  .menu-grid { grid-template-columns: 1fr; }
  .nav-inner { gap: 12px; }
  .logo-text { display: none; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .modal-footer { flex-direction: column; }
  .modal-footer .btn { width: 100%; }
}

/* ============ MODAL DE PAIEMENT ============ */
.pay-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.8); backdrop-filter: blur(10px); z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; }
.pay-overlay.open { display: flex; animation: fadeIn .3s ease; }
.pay-modal { background: var(--cream); width: 100%; max-width: 580px; border-radius: 28px; border: 4px solid var(--black); box-shadow: 14px 14px 0 var(--pink); display: flex; flex-direction: column; overflow: hidden; max-height: 95vh; animation: modalPop .35s cubic-bezier(.2,.8,.2,1); }
.pay-head { padding: 24px 28px; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pay-head h3 { font-family: var(--display); font-size: 22px; letter-spacing: 1.5px; margin: 0; }
.pay-steps { display: flex; gap: 8px; padding: 16px 28px; background: var(--white); border-bottom: 3px solid var(--black); }
.pay-step { flex: 1; height: 6px; background: #ddd; border-radius: 4px; transition: background .3s; }
.pay-step.active { background: var(--pink); }
.pay-step.done { background: var(--lime); }
.pay-body { padding: 28px; overflow-y: auto; flex: 1; }

/* CARTE BANCAIRE 3D */
.cb-preview { perspective: 1200px; margin: 0 auto 28px; max-width: 360px; }
.cb-card { position: relative; width: 100%; aspect-ratio: 1.586/1; transform-style: preserve-3d; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.cb-card.flipped { transform: rotateY(180deg); }
.cb-face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 18px; padding: 22px; color: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,.4); display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.cb-front { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.cb-front::before { content: ''; position: absolute; top: -50%; left: -10%; width: 200%; height: 80%; background: linear-gradient(135deg, rgba(224,0,122,.4), transparent 60%); border-radius: 50%; }
.cb-back { background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%); transform: rotateY(180deg); padding: 0; }
.cb-row-top { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; }
.cb-chip { width: 44px; height: 32px; background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%); border-radius: 6px; position: relative; box-shadow: inset 0 0 0 1px rgba(0,0,0,.2); }
.cb-chip::before, .cb-chip::after { content: ''; position: absolute; background: rgba(0,0,0,.15); }
.cb-chip::before { top: 8px; left: 4px; right: 4px; height: 1px; box-shadow: 0 6px 0 rgba(0,0,0,.15), 0 12px 0 rgba(0,0,0,.15); }
.cb-chip::after { left: 18px; top: 4px; bottom: 4px; width: 1px; box-shadow: 8px 0 0 rgba(0,0,0,.15); }
.cb-brand { font-family: var(--display); font-size: 20px; letter-spacing: 2px; opacity: .9; }
.cb-number { position: relative; z-index: 2; font-family: 'Courier New', monospace; font-size: 22px; letter-spacing: 3px; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,.4); margin-top: auto; margin-bottom: 12px; }
.cb-row-bottom { display: flex; justify-content: space-between; gap: 16px; position: relative; z-index: 2; font-size: 11px; }
.cb-field-label { display: block; opacity: .6; font-size: 9px; letter-spacing: 1px; margin-bottom: 4px; }
.cb-field-value { font-family: 'Courier New', monospace; font-weight: 700; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.cb-back-strip { width: 100%; height: 50px; background: #000; margin-top: 24px; }
.cb-back-cvv { padding: 16px 22px; }
.cb-cvv-row { background: #fff; padding: 10px 14px; border-radius: 6px; display: flex; justify-content: space-between; align-items: center; color: #000; font-family: 'Courier New', monospace; font-weight: 700; font-size: 14px; }
.cb-cvv-label { display: block; color: #fff; font-size: 9px; letter-spacing: 1.5px; opacity: .7; margin-bottom: 6px; text-align: right; }

/* CHAMPS DE FORMULAIRE */
.pay-form-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.pay-field { display: flex; flex-direction: column; gap: 6px; }
.pay-field.full { grid-column: 1 / -1; }
.pay-field label { font-family: var(--display); font-size: 12px; letter-spacing: 1.5px; color: #444; }
.pay-input { padding: 13px 16px; border: 2px solid var(--black); border-radius: 10px; font-family: var(--body); font-size: 15px; background: var(--white); transition: all .15s; width: 100%; }
.pay-input:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(224,0,122,.15); }
.pay-input.error { border-color: var(--red); animation: shake .35s ease; }
@keyframes shake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)} }
.pay-field-error { color: var(--red); font-size: 11px; font-weight: 600; min-height: 14px; }

/* RÉSUMÉ COMMANDE */
.pay-summary { background: var(--white); border: 2px solid var(--black); border-radius: 14px; padding: 18px; margin-bottom: 24px; }
.pay-summary-title { font-family: var(--display); font-size: 14px; letter-spacing: 2px; margin: 0 0 12px; color: #666; }
.pay-summary-line { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; }
.pay-summary-line.total { border-top: 2px dashed var(--black); margin-top: 8px; padding-top: 12px; font-family: var(--display); font-size: 22px; }
.pay-summary-line.total span:last-child { color: var(--pink); }

.pay-foot { padding: 18px 28px; border-top: 3px solid var(--black); background: var(--white); display: flex; gap: 12px; align-items: center; }
.pay-foot .btn { flex: 1; justify-content: center; }
.pay-secure { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #666; padding: 10px 28px; background: rgba(124, 252, 0, .15); border-bottom: 2px solid rgba(0,0,0,.1); }
.pay-secure svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ÉCRAN DE TRAITEMENT */
.pay-processing { padding: 60px 24px; text-align: center; }
.pay-spinner { width: 80px; height: 80px; margin: 0 auto 24px; position: relative; }
.pay-spinner-ring { position: absolute; inset: 0; border: 6px solid #eee; border-top-color: var(--pink); border-right-color: var(--pink); border-radius: 50%; animation: spinFast 1s linear infinite; }
@keyframes spinFast { to { transform: rotate(360deg); } }
.pay-spinner-emoji { position: absolute; inset: 0; display: grid; place-items: center; font-size: 32px; animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.pay-processing h3 { font-family: var(--display); font-size: 26px; letter-spacing: 1px; margin: 0 0 12px; }
.pay-processing p { color: #666; font-size: 14px; }
.pay-progress-text { margin-top: 24px; font-size: 13px; color: #888; font-style: italic; transition: opacity .3s; }

/* ÉCRAN DE SUCCÈS */
.pay-success { padding: 50px 24px; text-align: center; }
.pay-success-icon { width: 100px; height: 100px; margin: 0 auto 24px; background: var(--lime); border: 4px solid var(--black); border-radius: 50%; display: grid; place-items: center; box-shadow: 6px 6px 0 var(--black); animation: popSuccess .6s cubic-bezier(.2,.8,.2,1); }
@keyframes popSuccess { 0% { transform: scale(0) rotate(-45deg); } 60% { transform: scale(1.15) rotate(10deg); } 100% { transform: scale(1) rotate(0); } }
.pay-success-icon svg { width: 50px; height: 50px; stroke: var(--black); stroke-width: 4; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawCheck .5s .4s ease forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.pay-success h3 { font-family: var(--display); font-size: 32px; letter-spacing: 1px; margin: 0 0 12px; color: var(--black); }
.pay-success-msg { font-size: 15px; color: #444; margin: 0 0 20px; line-height: 1.5; }
.pay-success-msg strong { color: var(--pink); }
.pay-order-num { display: inline-block; padding: 12px 24px; background: var(--yellow); border: 3px solid var(--black); border-radius: 14px; font-family: var(--display); font-size: 20px; letter-spacing: 2px; margin: 0 0 24px; box-shadow: 4px 4px 0 var(--black); }
.pay-success-details { background: var(--white); border: 2px solid var(--black); border-radius: 12px; padding: 16px; margin: 0 0 24px; text-align: left; font-size: 13px; }
.pay-success-details .det-row { display: flex; justify-content: space-between; padding: 5px 0; }
.pay-success-details .det-label { color: #666; font-weight: 600; }
.pay-success-details .det-value { font-weight: 700; }

.pay-demo-banner { background: linear-gradient(90deg, var(--yellow), #FFA000); color: var(--black); padding: 8px 16px; font-size: 12px; font-weight: 700; text-align: center; letter-spacing: 1px; border-bottom: 2px solid var(--black); }

@media (max-width: 540px) {
  .pay-form-grid { grid-template-columns: 1fr; }
  .cb-preview { max-width: 280px; }
  .cb-number { font-size: 16px; letter-spacing: 2px; }
  .pay-modal { border-radius: 18px; border-width: 3px; box-shadow: 8px 8px 0 var(--pink); }
  .pay-head, .pay-body, .pay-foot { padding-left: 18px; padding-right: 18px; }
  .pay-foot { flex-direction: column; }
  .pay-foot .btn { width: 100%; }
}


/* ---------- En-tête : bandeau d'ouverture, accessibilité, ancrage ---------- */

/* Le bandeau vit désormais DANS la barre de nav : il suit sa position
   au lieu d'être figé à 64px du haut, ce qui le désynchronisait au défilement. */
.open-banner {
  display: none;                     /* piloté en JS (display:flex quand fermé) */
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.45;
  padding: 10px 20px;
  color: #FFE8E8;
  background: #6E1216;               /* rouge profond désaturé, moins agressif */
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.open-banner strong { color: #fff; font-weight: 700; }
.open-banner .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #FF5A5A; flex: none;
  box-shadow: 0 0 0 0 rgba(255,90,90,.6);
  animation: bannerPulse 2.4s ease-out infinite;
}
@keyframes bannerPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,90,90,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255,90,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,90,0); }
}

/* Barre de nav : léger fond dès le départ pour décoller du hero */
.nav-inner { min-height: 56px; }

/* Anneaux de focus visibles (exigence d'accessibilité) */
.nav-links button:focus-visible,
.logo:focus-visible,
.cart-btn:focus-visible,
.burger:focus-visible,
.skip-link:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Lien d'évitement pour la navigation au clavier */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--yellow); color: var(--black);
  font-family: var(--display); font-size: 14px;
  padding: 10px 18px; border-radius: 0 0 10px 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* Respecte les préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .open-banner .dot { animation: none; }
  .logo-mark, .cart-btn { transition: none; }
}

/* ---------- Bande « Installer l'appli » ---------- */
.install-band {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
  border-top: 4px solid var(--pink);
  position: relative;
  overflow: hidden;
}
/* Halo diffus pour éviter un aplat trop plat */
.install-band::before {
  content: '';
  position: absolute; inset: -40% -10% auto auto;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,0,122,.28), transparent 68%);
  pointer-events: none;
}
.install-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.install-logo {
  width: 96px; height: 96px; object-fit: contain;
  filter: drop-shadow(0 6px 22px rgba(124,252,0,.22));
}
.install-title {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 12px;
}
.install-text {
  font-size: 15px;
  line-height: 1.65;
  max-width: 62ch;
  color: rgba(255,255,255,.82);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.install-actions {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.install-cta {
  font-size: 16px;
  padding: 15px 30px;
  box-shadow: 0 6px 20px rgba(224,0,122,.45);
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s ease;
}
.install-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(224,0,122,.6); }
.install-cta:active { transform: translateY(0) scale(.97); }
.install-cta:disabled { opacity: .5; cursor: default; transform: none; box-shadow: none; }
.install-cta:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.install-hint { font-size: 13.5px; color: rgba(255,255,255,.6); }
.install-ios {
  margin-top: 18px; padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  font-size: 14px; line-height: 1.6;
}
.install-ios[hidden] { display: none; }
.ios-key {
  display: inline-block; padding: 1px 8px; margin: 0 2px;
  background: rgba(255,255,255,.12); border-radius: 6px;
  font-weight: 600; white-space: nowrap;
}

@media (max-width: 700px) {
  .install-band { padding: 48px 0; }
  .install-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; justify-items: center; }
  .install-text { margin-inline: auto; }
  .install-actions { justify-content: center; }
  .install-ios { text-align: left; }
}
