/* T0.5.2 · Widget public booking Pulzar. Mobile-first 320px. */

:root {
  --bw-bg:        #ffffff;
  --bw-surface:   #f8fafc;
  --bw-surface-2: #f1f5f9;
  --bw-border:    #e2e8f0;
  --bw-text:      #0f172a;
  --bw-text-2:    #475569;
  --bw-text-3:    #94a3b8;
  --bw-primary:   #5b8cff;  /* override via inline --bw-primary depuis tenants.primary_color */
  --bw-accent:    #22d3ee;
  --bw-on-primary: #fff; /* PZ_CONTRAST : texte sur fond primary (noir si primary clair) */
  --bw-on-accent:  #fff; /* PZ_CONTRAST : texte sur fond accent */
  --bw-success:   var(--bw-accent);
  --bw-warn:      #f59e0b;
  --bw-danger:    #ef4444;
  --bw-radius:    12px;
  --bw-radius-sm: 8px;
}

.bw-dark {
  /* T0.5.x Brique 0 · dark contrast boost : palette renforcée pour lisibilité AAA */
  --bw-bg: #0b1220;          /* fond plus profond, contraste max */
  --bw-surface: #1e293b;
  --bw-surface-2: #2c3a4f;   /* +1 step plus clair pour cards/inputs */
  --bw-border: #3b4a63;      /* bordures plus visibles */
  --bw-text:    #f8fafc;     /* slate-50 · text principal très blanc */
  --bw-text-2:  #e2e8f0;     /* slate-200 · sous-titres clairs et lisibles (AAA sur fond bg) */
  --bw-text-3:  #cbd5e1;     /* slate-300 · labels UPPERCASE bien lisibles */
  --bw-text-dim:#94a3b8;     /* slate-400 · meta encore visible (au lieu de slate-500 invisible) */
}
.bw-dark body, .bw-dark html { background: var(--bw-bg) !important; color: var(--bw-text); }
html.bw-dark, html.bw-dark body { background: var(--bw-bg); color: var(--bw-text); min-height: 100vh; }

/* Boost spécifique step 2 · chiffres joueurs prominent + labels visibles */
.bw-dark .bw-places-val { color: var(--bw-primary); }
.bw-dark .bw-places-suffix { color: var(--bw-text-2); }
.bw-dark .bw-label { color: var(--bw-text-3); }
.bw-dark .bw-help { color: var(--bw-text-dim); }
.bw-dark .bw-step-title { color: var(--bw-text); }
.bw-dark .bw-step-sub { color: var(--bw-text-2); }
.bw-dark .bw-input, .bw-dark .bw-select { background: var(--bw-surface); border-color: var(--bw-border); color: var(--bw-text); }
.bw-dark .bw-input::placeholder, .bw-dark .bw-select::placeholder { color: var(--bw-text-3); }
.bw-dark input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) brightness(0.85); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bw-bg); color: var(--bw-text); font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 14px; line-height: 1.5; }

.bw-root { min-height: 100vh; display: flex; flex-direction: column; }

/* Header sticky */
.bw-header { background: var(--bw-bg); border-bottom: 1px solid var(--bw-border); padding: 12px 16px; position: sticky; top: 0; z-index: 10; display: flex; align-items: center; gap: 10px; }
.bw-logo { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--bw-surface-2); }
.bw-brand-name { font-weight: 700; font-size: 15px; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bw-step-counter { font-size: 11px; color: var(--bw-text-3); font-weight: 600; padding: 4px 9px; background: var(--bw-surface-2); border-radius: 100px; flex-shrink: 0; }

/* Stepper */
.bw-stepper { display: flex; gap: 4px; padding: 12px 16px 0; }
.bw-stepper-dot { flex: 1; height: 4px; border-radius: 2px; background: var(--bw-border); transition: background .25s; }
.bw-stepper-dot.done, .bw-stepper-dot.active { background: var(--bw-primary); color: var(--bw-on-primary); }
.bw-stepper-dot.active { box-shadow: 0 0 0 2px color-mix(in srgb, var(--bw-primary) 25%, transparent); }

/* Main content */
.bw-main { flex: 1; padding: 18px 16px 96px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.bw-step-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; margin: 0 0 6px; color: var(--bw-text); }
.bw-step-sub { color: var(--bw-text-2); font-size: 13px; margin: 0 0 18px; }

/* Step transitions (slide horizontal) */
.bw-step { animation: bw-slide-in .25s cubic-bezier(.2,.8,.2,1); }
@keyframes bw-slide-in { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }

/* Field */
.bw-field { margin-bottom: 16px; }
.bw-label { display: block; font-size: 12px; font-weight: 600; color: var(--bw-text-2); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.bw-input, .bw-select { width: 100%; padding: 12px 14px; background: var(--bw-bg); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-sm); font-size: 15px; color: var(--bw-text); font-family: inherit; }
.bw-input:focus, .bw-select:focus { outline: none; border-color: var(--bw-primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--bw-primary) 18%, transparent); }
.bw-input[type="number"] { -moz-appearance: textfield; }
.bw-help { font-size: 11px; color: var(--bw-text-3); margin-top: 4px; }
.bw-required::after { content: " *"; color: var(--bw-danger); }

/* Number stepper (places) */
.bw-places-stepper { display: flex; align-items: center; gap: 12px; }
.bw-places-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--bw-border); background: var(--bw-bg); font-size: 20px; font-weight: 700; color: var(--bw-text); cursor: pointer; flex-shrink: 0; }
.bw-places-btn:hover:not(:disabled) { border-color: var(--bw-primary); color: var(--bw-primary); }
.bw-places-btn:disabled { opacity: .3; cursor: not-allowed; }
.bw-places-val { flex: 1; text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 36px; font-weight: 600; color: var(--bw-text); line-height: 1; }
.bw-places-suffix { font-size: 13px; color: var(--bw-text-2); display: block; margin-top: 2px; font-family: inherit; font-weight: 400; }

/* Resource group (étape 2) */
.bw-resource-group { margin-bottom: 22px; }
.bw-resource-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.bw-resource-color { width: 4px; height: 22px; border-radius: 2px; }
.bw-resource-name { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: var(--bw-text); }
.bw-resource-meta { color: var(--bw-text-3); font-size: 11px; margin-left: auto; text-transform: uppercase; letter-spacing: .04em; }
.bw-slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 8px; }
.bw-slot { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-sm); padding: 12px 8px; cursor: pointer; text-align: center; transition: all .15s; position: relative; }
.bw-slot:hover { border-color: var(--bw-primary); transform: translateY(-1px); }
.bw-slot.selected { border-color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 8%, transparent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--bw-primary) 25%, transparent); }
.bw-slot.disabled { opacity: .35; cursor: not-allowed; }
.bw-slot-time { font-family: 'Bebas Neue', sans-serif; font-size: 22px; font-weight: 600; line-height: 1; color: var(--bw-text); }
.bw-slot-end { font-size: 10px; color: var(--bw-text-3); margin-top: 2px; }
.bw-slot-remaining { font-size: 10px; color: var(--bw-text-2); margin-top: 4px; font-weight: 600; }
.bw-slot-remaining.low { color: var(--bw-warn); }
.bw-slot-tier-badge { font-size: 8px; padding: 2px 5px; border-radius: 3px; background: var(--bw-surface-2); color: var(--bw-text-2); position: absolute; top: 4px; right: 4px; text-transform: uppercase; font-weight: 700; letter-spacing: .03em; }
.bw-slot-locked-exp { font-size: 9px; color: var(--bw-accent); margin-top: 3px; font-weight: 700; }

/* Experience card */
.bw-exp-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.bw-exp-card { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: var(--bw-radius); overflow: hidden; cursor: pointer; transition: all .15s; display: flex; }
.bw-exp-card:hover { border-color: var(--bw-primary); transform: translateY(-1px); }
.bw-exp-card.selected { border-color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 8%, transparent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--bw-primary) 25%, transparent); }
.bw-exp-img { width: 80px; height: 80px; background: var(--bw-surface-2); object-fit: cover; flex-shrink: 0; }
.bw-exp-body { padding: 10px 12px; flex: 1; min-width: 0; }
.bw-exp-name { font-weight: 700; font-size: 14px; color: var(--bw-text); margin: 0 0 3px; }
.bw-exp-meta { font-size: 11px; color: var(--bw-text-3); margin: 0 0 4px; }
.bw-exp-desc { font-size: 12px; color: var(--bw-text-2); line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.bw-exp-locked-label { display: inline-block; font-size: 9px; padding: 2px 6px; background: var(--bw-accent); color: var(--bw-on-accent); border-radius: 3px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }

/* Recap step 4 */
.bw-recap { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: var(--bw-radius); padding: 14px; margin-bottom: 16px; }
.bw-recap-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 8px 0; border-bottom: 1px dashed var(--bw-border); gap: 12px; }
.bw-recap-row:last-child { border-bottom: none; }
.bw-recap-key { font-size: 11px; color: var(--bw-text-3); text-transform: uppercase; font-weight: 600; letter-spacing: .04em; }
.bw-recap-val { font-size: 13px; color: var(--bw-text); font-weight: 600; text-align: right; }
.bw-recap-img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; vertical-align: middle; margin-right: 6px; }
.bw-recap-tier-badge { font-size: 9px; padding: 2px 6px; border-radius: 3px; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* Customer tier select */
.bw-tier-toggle { display: flex; gap: 6px; flex-wrap: wrap; }
.bw-tier-opt { flex: 1; min-width: 100px; background: var(--bw-bg); border: 1px solid var(--bw-border); border-radius: var(--bw-radius-sm); padding: 10px 12px; cursor: pointer; text-align: center; font-weight: 600; font-size: 13px; color: var(--bw-text-2); transition: all .15s; }
.bw-tier-opt.selected { border-color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 8%, transparent); color: var(--bw-primary); }

/* Total */
.bw-total { background: var(--bw-text); color: var(--bw-bg); border-radius: var(--bw-radius); padding: 14px 16px; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
.bw-total-key { font-size: 13px; font-weight: 600; opacity: .85; }
.bw-total-val { font-family: 'Bebas Neue', sans-serif; font-size: 32px; font-weight: 600; line-height: 1; }
.bw-total-detail { font-size: 11px; opacity: .65; margin-top: 2px; font-family: inherit; font-weight: 400; }

/* Footer sticky CTA */
.bw-footer { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bw-bg); border-top: 1px solid var(--bw-border); padding: 12px 16px; display: flex; gap: 10px; z-index: 10; box-shadow: 0 -4px 12px rgba(0,0,0,.04); }
.bw-btn { flex: 1; padding: 14px 18px; border-radius: var(--bw-radius-sm); border: none; font-size: 15px; font-weight: 700; cursor: pointer; transition: opacity .15s, transform .1s; font-family: inherit; }
.bw-btn:active:not(:disabled) { transform: scale(.98); }
.bw-btn-primary { background: var(--bw-primary); color: var(--bw-on-primary); }
.bw-btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.bw-btn-ghost { background: var(--bw-surface-2); color: var(--bw-text-2); flex: 0 0 auto; padding: 14px 16px; }
.bw-btn-ghost:hover:not(:disabled) { background: var(--bw-border); }

/* Empty + loading + error */
.bw-loading, .bw-empty { text-align: center; padding: 40px 16px; color: var(--bw-text-3); font-size: 13px; }
.bw-empty-title { font-size: 16px; color: var(--bw-text-2); font-weight: 600; margin-bottom: 6px; }
.bw-spinner { display: inline-block; width: 24px; height: 24px; border: 3px solid var(--bw-border); border-top-color: var(--bw-primary); border-radius: 50%; animation: bw-spin .8s linear infinite; }
@keyframes bw-spin { to { transform: rotate(360deg); } }
.bw-error { background: color-mix(in srgb, var(--bw-danger) 8%, transparent); border: 1px solid color-mix(in srgb, var(--bw-danger) 25%, transparent); color: var(--bw-danger); padding: 12px 14px; border-radius: var(--bw-radius-sm); font-size: 13px; margin-bottom: 16px; }

/* CGV checkbox */
.bw-cgv { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; background: var(--bw-surface); border-radius: var(--bw-radius-sm); margin-bottom: 16px; cursor: pointer; }
.bw-cgv input { margin: 2px 0 0; flex-shrink: 0; }
.bw-cgv-text { font-size: 12px; color: var(--bw-text-2); line-height: 1.5; }
.bw-cgv-text a { color: var(--bw-primary); text-decoration: none; }
.bw-cgv-text a:hover { text-decoration: underline; }

/* Toast bottom */
.bw-toast { position: fixed; bottom: 96px; left: 50%; transform: translateX(-50%); background: var(--bw-text); color: var(--bw-bg); padding: 12px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; z-index: 100; box-shadow: 0 8px 24px rgba(0,0,0,.18); max-width: 90vw; animation: bw-toast-in .25s ease-out; }
.bw-toast.error { background: var(--bw-danger); }
.bw-toast.success { background: var(--bw-success); }
@keyframes bw-toast-in { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }

/* ≥640px : largeur fixe centrée */
@media (min-width: 640px) {
  .bw-root { max-width: 600px; margin: 0 auto; min-height: auto; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,.08); overflow: hidden; margin-top: 24px; margin-bottom: 24px; }
  .bw-footer { position: sticky; }
  .bw-main { padding-bottom: 24px; }
  .bw-exp-grid { grid-template-columns: 1fr 1fr; }
}

/* T0.5.3a · Stepper labellisé 5 étapes */
.bw-stepper-pills { display: flex; align-items: center; padding: 12px 16px 4px; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.bw-step-pill { display: flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; color: var(--bw-text-3); flex-shrink: 0; transition: all .2s; }
.bw-step-pill-num { width: 20px; height: 20px; border-radius: 50%; background: var(--bw-border); color: var(--bw-text-3); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; transition: all .2s; }
.bw-step-pill-label { font-size: 11px; }
.bw-step-pill.done .bw-step-pill-num, .bw-step-pill.active .bw-step-pill-num { background: var(--bw-primary); color: var(--bw-on-primary); }
.bw-step-pill.active { color: var(--bw-primary); }
.bw-step-pill.done { color: var(--bw-text-2); }
.bw-step-pill-sep { width: 12px; height: 1px; background: var(--bw-border); flex-shrink: 0; }
@media (max-width: 380px) { .bw-step-pill-label { display: none; } .bw-step-pill-sep { width: 6px; } }

/* T0.5.3a · Switch langue dans le header */
.bw-lang-switch { display: inline-flex; background: var(--bw-surface-2); border-radius: 100px; padding: 2px; gap: 2px; margin-right: 4px; }
.bw-lang-btn { background: transparent; border: none; padding: 4px 8px; border-radius: 100px; font-size: 10px; font-weight: 700; color: var(--bw-text-3); cursor: pointer; }
.bw-lang-btn.active { background: var(--bw-primary); color: var(--bw-on-primary); }

/* T0.5.3a · Cards Activité (étape 1) */
.bw-activity-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.bw-activity-card { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: var(--bw-radius); overflow: hidden; cursor: pointer; transition: all .2s; position: relative; }
.bw-activity-card:hover { border-color: var(--bw-primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.bw-activity-card.selected { border-color: var(--bw-primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--bw-primary) 25%, transparent), 0 8px 24px rgba(0,0,0,.06); }
.bw-activity-card.selected::before { content: '✓'; position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: var(--bw-primary); color: var(--bw-on-primary); display: flex; align-items: center; justify-content: center; font-weight: 800; z-index: 2; }
.bw-activity-img { width: 100%; height: 140px; background: var(--bw-surface-2); background-size: cover; background-position: center; }
.bw-activity-img-placeholder { background: linear-gradient(135deg, var(--bw-card-accent, var(--bw-primary)) 0%, var(--bw-accent) 100%); opacity: .85; }
.bw-activity-body { padding: 14px 16px; position: relative; }
.bw-activity-price { position: absolute; top: -14px; right: 14px; background: var(--bw-primary); color: #fff; font-weight: 800; font-size: 13px; padding: 5px 10px; border-radius: 100px; box-shadow: 0 4px 12px rgba(91,140,255,.35); font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; }
/* bw-activity-name override : voir Brique 68 (font-size 14px compact) */
.bw-activity-desc { font-size: 12px; color: var(--bw-text-2); line-height: 1.4; margin: 0 0 8px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.bw-activity-meta { display: flex; gap: 12px; font-size: 11px; color: var(--bw-text-3); font-weight: 600; }
.bw-section-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--bw-text-2); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 12px; }

/* T0.5.3a · Cards Packages (étape 4) */
.bw-package-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.bw-package-card { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: var(--bw-radius); cursor: pointer; overflow: hidden; display: flex; transition: all .15s; }
.bw-package-card:hover { border-color: var(--bw-primary); }
.bw-package-card.selected { border-color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 6%, transparent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--bw-primary) 25%, transparent); }
.bw-package-skip .bw-package-body { padding: 14px; text-align: center; }
.bw-package-img { width: 72px; height: 72px; background-size: cover; background-position: center; flex-shrink: 0; background-color: var(--bw-surface-2); }
.bw-package-body { padding: 10px 12px; flex: 1; min-width: 0; }
.bw-package-name { font-weight: 700; font-size: 14px; color: var(--bw-text); margin: 0 0 3px; }
.bw-package-badge { font-size: 9px; font-weight: 800; padding: 2px 6px; border-radius: 4px; background: var(--bw-accent); color: #fff; text-transform: uppercase; letter-spacing: .04em; margin-right: 6px; }
.bw-package-desc { font-size: 11px; color: var(--bw-text-2); line-height: 1.4; margin: 4px 0 6px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.bw-package-includes { font-size: 10px; color: var(--bw-text-3); margin: 0; padding: 0; list-style: none; }
.bw-package-includes li::before { content: '✓ '; color: var(--bw-success); font-weight: 700; }
.bw-package-price { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--bw-primary); margin-top: 4px; font-weight: 600; letter-spacing: .02em; }

@media (min-width: 640px) {
  .bw-activity-grid { grid-template-columns: 1fr 1fr; }
  .bw-package-grid { grid-template-columns: 1fr 1fr; }
}

/* T0.5.3 · Hero image étape (legacy step1 → unused 5-step flow) */
.bw-hero { width: calc(100% + 32px); margin: -18px -16px 18px; height: 140px; background-size: cover; background-position: center; border-radius: 0 0 12px 12px; }

/* T0.5.3 · Mode compact */
.bw-root.bw-compact { font-size: 13px; }
.bw-root.bw-compact .bw-main { padding: 12px 12px 80px; }
.bw-root.bw-compact .bw-step-title { font-size: 17px; }
.bw-root.bw-compact .bw-step-sub { font-size: 12px; margin-bottom: 12px; }
.bw-root.bw-compact .bw-field { margin-bottom: 12px; }
.bw-root.bw-compact .bw-input { padding: 9px 11px; font-size: 14px; }
.bw-root.bw-compact .bw-btn { padding: 11px 14px; font-size: 14px; }
.bw-root.bw-compact .bw-slot { padding: 8px 6px; }
.bw-root.bw-compact .bw-slot-time { font-size: 18px; }
.bw-root.bw-compact .bw-places-val { font-size: 28px; }
.bw-root.bw-compact .bw-hero { height: 100px; }

/* T0.5.3 · Close button (modal/floating modes) */
.bw-close-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--bw-border); background: var(--bw-bg); color: var(--bw-text-2); font-size: 22px; line-height: 1; cursor: pointer; padding: 0; display: flex; align-items: center; justify-content: center; }
.bw-close-btn:hover { background: var(--bw-surface-2); color: var(--bw-text); }

/* T0.5.3 · Modal mode (full-screen overlay) */
.bw-modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,.7); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 999999; display: none; align-items: flex-start; justify-content: center; padding: 0; overflow-y: auto; }
.bw-modal-overlay.open { display: flex; }
.bw-modal-shell { width: 100%; max-width: 600px; background: var(--bw-bg); min-height: 100vh; animation: bw-modal-up .25s cubic-bezier(.2,.8,.2,1); }
@keyframes bw-modal-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (min-width: 640px) { .bw-modal-overlay { padding: 24px; } .bw-modal-shell { min-height: auto; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.25); overflow: hidden; } }

/* T0.5.3 · Floating button (mode default si pas de target) */
.bw-floating-btn { position: fixed; bottom: 20px; right: 20px; background: var(--bw-primary, #5b8cff); color: #fff; border: none; padding: 14px 22px; border-radius: 100px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 24px rgba(91,140,255,.35); z-index: 99998; transition: transform .15s, box-shadow .15s; }
.bw-floating-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(91,140,255,.5); }
.bw-floating-btn:active { transform: translateY(0); }
@media (max-width: 480px) { .bw-floating-btn { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 14px; } }

/* T0.5.3.UX-c · Hero XL brand + cards refonte */
/* Brique 68 · proportions step 1 : Hero XL compact (max 80px) */
.bw-hero { text-align: center; padding: 8px 0 10px; border-bottom: 1px solid var(--bw-border); margin-bottom: 12px; max-height: 80px; }
.bw-brand-xl { font-family: 'Bebas Neue', sans-serif; font-size: 32px; font-weight: 400; line-height: 1; letter-spacing: -.02em; color: var(--bw-primary); margin: 0 0 2px; }
.bw-brand-tagline { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--bw-text-3); margin: 0; }
@media (min-width: 640px) { .bw-brand-xl { font-size: 36px; } }
@media (min-width: 1024px) { .bw-brand-xl { font-size: 42px; } .bw-brand-tagline { font-size: 11px; } }

/* Cards activités enrichies : image cover 200px + badge prix top-left absolute */
/* Brique 68 · Cards compact aspect-ratio 4/3 */
.bw-activity-cover { width: 100%; aspect-ratio: 4/3; background: var(--bw-surface-2); background-size: cover; background-position: center; position: relative; }
.bw-activity-cover-placeholder { background: linear-gradient(135deg, var(--bw-card-accent, var(--bw-primary)) 0%, var(--bw-accent) 100%); opacity: .85; }
.bw-activity-price-badge { position: absolute; top: 8px; left: 8px; background: rgba(15,23,42,.88); backdrop-filter: blur(6px); color: #fff; font-weight: 800; font-size: 12px; padding: 4px 9px; border-radius: 100px; font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; z-index: 1; }
.bw-dark .bw-activity-price-badge { background: rgba(255,255,255,.95); color: #0f172a; }
.bw-activity-body { padding: 10px 12px 12px; }
.bw-activity-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; margin: 0 0 4px; color: var(--bw-text); line-height: 1.25; }
.bw-activity-tagline { font-size: 11px; color: var(--bw-text-2); margin: 0 0 6px; line-height: 1.35; font-weight: 500; opacity: .92; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bw-activity-desc { font-size: 11px; color: var(--bw-text-2); margin: 0 0 6px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bw-activity-meta { display: flex; gap: 8px; flex-wrap: wrap; font-size: 10px; color: var(--bw-text-3); }
.bw-activity-meta span { white-space: nowrap; }
/* PZ_TRANCHE_LABEL_5jul : carte tranche d'age · "N formules disponibles" doit pouvoir passer a la ligne, jamais etre coupe */
.bw-tranche-card .bw-activity-meta span { white-space: normal; }

/* Brique 68 · Grid responsive matching BVR prod : 2/3/4 cols */
.bw-activity-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 640px)  { .bw-activity-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .bw-activity-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }

/* T0.5.3.UX-b · Promo + Gift */
.bw-promo-banner { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: linear-gradient(135deg, color-mix(in srgb, var(--bw-accent, var(--bw-primary)) 14%, transparent), color-mix(in srgb, var(--bw-primary) 8%, transparent)); border: 1px solid color-mix(in srgb, var(--bw-accent, var(--bw-primary)) 30%, transparent); border-radius: 10px; margin-bottom: 16px; font-size: 13px; color: var(--bw-text); line-height: 1.45; }
.bw-promo-icon { font-size: 22px; flex-shrink: 0; }
.bw-promo-text { flex: 1; }
.bw-promo-text strong { color: var(--bw-primary); font-weight: 700; }
.bw-gift-btn { background: var(--bw-primary); color: var(--bw-on-primary); border: none; padding: 8px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; cursor: pointer; box-shadow: 0 2px 8px rgba(34,197,94,.25); transition: transform .12s; flex-shrink: 0; margin-left: 8px; }
.bw-gift-btn:hover { transform: translateY(-1px); }
.bw-gift-amounts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
@media (min-width: 480px) { .bw-gift-amounts { grid-template-columns: repeat(4, 1fr); } }
.bw-gift-amount { padding: 18px 0; border: 2px solid var(--bw-border); background: var(--bw-surface); color: var(--bw-text); font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: .04em; border-radius: 10px; cursor: pointer; transition: all .15s; }
.bw-gift-amount:hover { border-color: var(--bw-primary); transform: translateY(-1px); }
.bw-gift-amount.selected { border-color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 8%, transparent); color: var(--bw-primary); }
.bw-gift-amount-custom { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 2px dashed var(--bw-border); border-radius: 10px; font-size: 13px; color: var(--bw-text-2); }
.bw-gift-amount-custom input { flex: 1; border: none; background: transparent; font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--bw-text); outline: none; text-align: right; }
.bw-gift-summary { margin-top: 16px; padding: 14px 16px; background: var(--bw-surface-2); border-radius: 10px; }
.bw-gift-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; color: var(--bw-text-2); }
.bw-gift-summary-row strong { color: var(--bw-primary); font-size: 18px; font-family: 'Bebas Neue', sans-serif; letter-spacing: .04em; }

/* Brique 1 · package cards badges (FORMULES bleu / COMBO violet / OFFRE orange) */
.bw-pkg-card { position: relative; }
.bw-pkg-badge { position: absolute; top: 8px; right: 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; padding: 3px 8px; border-radius: 100px; backdrop-filter: blur(8px); text-transform: uppercase; z-index: 2; }
.bw-pkg-badge-blue   { background: rgba(59,130,246,.92); color: #fff; }
.bw-pkg-badge-purple { background: rgba(168,85,247,.92); color: #fff; }
.bw-pkg-badge-orange { background: rgba(245,158,11,.92); color: #1e293b; }
.bw-pkg-card .bw-activity-cover-placeholder { background: linear-gradient(135deg, rgba(59,130,246,.7), rgba(168,85,247,.7)); }

/* Brique 2 · calendrier mensuel Step 2 */
.bw-cal-card { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: 14px; padding: 12px; margin-bottom: 18px; }
.bw-cal-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 4px 12px; }
.bw-cal-nav { background: transparent; border: 1px solid var(--bw-border); color: var(--bw-text); width: 32px; height: 32px; border-radius: 8px; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .12s; }
.bw-cal-nav:hover { border-color: var(--bw-primary); color: var(--bw-primary); }
.bw-cal-month { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--bw-text); text-transform: uppercase; letter-spacing: .04em; }
.bw-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 6px; }
.bw-cal-weekday { font-size: 10px; font-weight: 700; color: var(--bw-text-3); text-align: center; padding: 6px 0; letter-spacing: .06em; }
.bw-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bw-cal-cell { background: var(--bw-bg); border: 1px solid var(--bw-border); border-radius: 8px; padding: 8px 4px; cursor: pointer; transition: all .15s; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 56px; font-family: inherit; color: var(--bw-text); }
.bw-cal-cell:hover:not([disabled]):not(.bw-cal-past) { border-color: var(--bw-primary); transform: translateY(-1px); box-shadow: 0 4px 12px color-mix(in srgb, var(--bw-primary) 18%, transparent); }
.bw-cal-empty { background: transparent; border: none; cursor: default; }
.bw-cal-past { opacity: 0.3; cursor: not-allowed; background: transparent; }
.bw-cal-today { border-color: var(--bw-primary); border-width: 2px; }
.bw-cal-selected { background: var(--bw-primary); color: #fff; border-color: var(--bw-primary); box-shadow: 0 6px 18px color-mix(in srgb, var(--bw-primary) 35%, transparent); }
.bw-cal-selected .bw-cal-price { color: rgba(255,255,255,.85); }
.bw-cal-day { font-family: 'Bebas Neue', sans-serif; font-size: 22px; line-height: 1; letter-spacing: .04em; }
.bw-cal-price { font-size: 10px; color: var(--bw-text-3); margin-top: 3px; font-weight: 600; letter-spacing: .02em; }
@media (min-width: 640px) { .bw-cal-day { font-size: 26px; } .bw-cal-cell { min-height: 64px; } }

/* Brique 3 · Step 4 Options : locked card + experience grid polish */
.bw-locked-card { display: flex; gap: 14px; padding: 16px; background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: 14px; align-items: center; }
.bw-locked-img { width: 90px; height: 90px; flex-shrink: 0; border-radius: 10px; object-fit: cover; background-size: cover; background-position: center; }
.bw-locked-img-placeholder { background: linear-gradient(135deg, var(--bw-primary) 0%, var(--bw-accent) 100%); }
.bw-locked-body { flex: 1; }
.bw-locked-pill { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .08em; padding: 3px 8px; border-radius: 100px; background: color-mix(in srgb, var(--bw-primary) 18%, transparent); color: var(--bw-primary); text-transform: uppercase; margin-bottom: 6px; }
.bw-locked-name { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--bw-text); font-family: 'Space Grotesk', sans-serif; }
.bw-locked-sub { margin: 0; font-size: 12px; color: var(--bw-text-2); }
/* Experience grid 2-col mobile, 3-col desktop */
.bw-exp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .bw-exp-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .bw-exp-grid { grid-template-columns: repeat(4, 1fr); } }
.bw-exp-card { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: 10px; overflow: hidden; cursor: pointer; transition: all .15s; }
.bw-exp-card:hover { border-color: var(--bw-primary); transform: translateY(-1px); }
.bw-exp-card.selected { border-color: var(--bw-primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--bw-primary) 25%, transparent); background: color-mix(in srgb, var(--bw-primary) 6%, transparent); }
.bw-exp-img { width: 100%; height: 100px; background: var(--bw-surface-2); object-fit: cover; }
.bw-exp-img-placeholder { background: linear-gradient(135deg, var(--bw-primary) 0%, var(--bw-accent) 100%); opacity: .7; }
.bw-exp-body { padding: 10px 12px; }
.bw-exp-name { font-weight: 700; font-size: 13px; color: var(--bw-text); margin-bottom: 4px; line-height: 1.25; }
.bw-exp-meta { font-size: 10px; color: var(--bw-text-3); margin-bottom: 4px; }
.bw-exp-desc { font-size: 11px; color: var(--bw-text-2); line-height: 1.35; }

/* Brique 69 · gift card pink badge + header gift btn discret */
.bw-pkg-badge-pink { background: linear-gradient(135deg, rgba(236,72,153,.92), rgba(168,85,247,.92)); color: #fff; }
.bw-gift-card .bw-activity-cover-placeholder { background: linear-gradient(135deg, rgba(250,222,23,.20), rgba(250,222,23,.05,.85)); }
.bw-gift-btn { padding: 6px 10px !important; font-size: 11px !important; opacity: .85; }
.bw-gift-btn:hover { opacity: 1; }

/* Brique 71 · multi-slot UI : banner + position badge + sections */
.bw-multi-banner { padding: 12px 14px; background: linear-gradient(135deg, rgba(6,182,212,.12), rgba(168,85,247,.12)); border: 1px solid color-mix(in srgb, var(--bw-accent,var(--bw-primary)) 30%, transparent); border-radius: 10px; margin-bottom: 14px; font-size: 13px; color: var(--bw-text); }
.bw-multi-banner strong { color: var(--bw-primary); }
.bw-slot-multi-pos { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; background: var(--bw-primary); color: #fff; font-weight: 800; font-size: 13px; font-family: 'Bebas Neue', sans-serif; }
.bw-slot.selected .bw-slot-multi-pos { background: var(--bw-primary); }
.bw-slot { position: relative; }
.bw-slot .bw-slot-multi-pos { position: absolute; top: 8px; right: 8px; z-index: 2; }
.bw-multi-slot-section { margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px dashed var(--bw-border); }
.bw-multi-slot-section:last-child { border-bottom: 0; }
.bw-multi-slot-title { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--bw-text); margin-bottom: 12px; padding: 8px 12px; background: var(--bw-surface); border-radius: 8px; }
.bw-multi-slot-title strong { color: var(--bw-primary); font-weight: 700; }

/* Brique 72 · slots compact grid 4 cols */
.bw-slots-compact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
@media (min-width: 480px)  { .bw-slots-compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 720px)  { .bw-slots-compact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bw-slots-compact-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.bw-slot-c { position: relative; background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: 10px; padding: 10px 8px; cursor: pointer; transition: all .15s; min-height: 90px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 2px; }
.bw-slot-c:hover:not(.bw-slot-disabled) { border-color: var(--bw-primary); transform: translateY(-2px); box-shadow: 0 4px 14px color-mix(in srgb, var(--bw-primary) 20%, transparent); }
.bw-slot-c.selected { border-color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 8%, transparent); box-shadow: 0 0 0 2px color-mix(in srgb, var(--bw-primary) 30%, transparent); }
.bw-slot-c.bw-slot-disabled { opacity: 0.3; cursor: not-allowed; }
.bw-slot-c-time { font-family: 'Bebas Neue', sans-serif; font-size: 26px; line-height: 1; letter-spacing: .04em; color: var(--bw-text); font-variant-numeric: tabular-nums; }
.bw-slot-c-price { font-size: 11px; font-weight: 700; color: var(--bw-primary); margin-top: 2px; }
.bw-slot-c-places { font-size: 10px; color: var(--bw-text-3); font-weight: 500; }
.bw-slot-c .bw-slot-multi-pos { position: absolute; top: 6px; right: 6px; width: 22px; height: 22px; font-size: 11px; }
@media (min-width: 720px) { .bw-slot-c-time { font-size: 30px; } }

/* Brique 72.2 · recap multi-slot */
.bw-recap-multi-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: 10px; margin-top: 8px; }
.bw-recap-multi-pos { width: 28px; height: 28px; border-radius: 50%; background: var(--bw-primary); color: #fff; font-family: 'Bebas Neue', sans-serif; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bw-recap-multi-body { flex: 1; }
.bw-recap-multi-title { font-size: 13px; font-weight: 700; color: var(--bw-text); }
.bw-recap-multi-info { font-size: 11px; color: var(--bw-text-2); }

/* Brique 74 · tier counters */
.bw-tier-counters { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.bw-tier-counter { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: 8px; }
.bw-tier-counter-name { font-size: 13px; color: var(--bw-text); font-weight: 600; }
.bw-tier-counter-controls { display: flex; align-items: center; gap: 12px; }
.bw-tier-cnt-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--bw-border); background: var(--bw-bg); color: var(--bw-text); cursor: pointer; font-weight: 700; font-size: 16px; }
.bw-tier-cnt-btn:hover { border-color: var(--bw-primary); color: var(--bw-primary); }
.bw-tier-cnt-val { min-width: 28px; text-align: center; font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--bw-text); }

/* Brique 72.b · end_time line */
.bw-slot-c-end { font-size: 11px; color: var(--bw-text-3); margin-top: -2px; margin-bottom: 4px; font-weight: 500; opacity: 0.7; font-variant-numeric: tabular-nums; }

/* Brique 78 · 4 statuts slot (free/joinable/occupied_other/full) */
.bw-slot-c.bw-slot-joinable { border-color: #fbbf24; background: rgba(251, 191, 36, .08); }
.bw-slot-c.bw-slot-joinable .bw-slot-c-time { color: #fbbf24; }
.bw-slot-c.bw-slot-joinable:hover { border-color: #f59e0b; background: rgba(251, 191, 36, .15); }
.bw-slot-c-join { font-size: 10px; color: #fbbf24; font-weight: 700; margin-top: 2px; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bw-slot-c-occupied { font-size: 10px; color: #f87171; font-weight: 600; margin-top: 2px; }
.bw-slot-c.bw-slot-occupied, .bw-slot-c.bw-slot-full { opacity: .55; }

/* Brique 79 · multi-resource grilles */
.bw-resources-tabs { display: flex; gap: 6px; margin-bottom: 12px; overflow-x: auto; }
.bw-res-tab { background: var(--bw-surface); border: 1px solid var(--bw-border); color: var(--bw-text-2); padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.bw-res-tab.active { background: var(--bw-primary); color: #0f172a; border-color: var(--bw-primary); }
.bw-res-tab.locked { opacity: .4; cursor: not-allowed; }
.bw-multi-res-grids { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .bw-multi-res-grids { grid-template-columns: 1fr 1fr; gap: 20px; } }
.bw-res-grid { background: var(--bw-surface); border: 1px solid var(--bw-border); border-radius: 12px; padding: 12px; }
.bw-res-grid-head { display: flex; align-items: center; gap: 8px; padding: 6px 4px 10px; border-bottom: 1px solid var(--bw-border); margin-bottom: 10px; font-size: 13px; color: var(--bw-text); }
.bw-res-grid-head strong { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; color: var(--bw-text); }
.bw-res-grid-dot { width: 10px; height: 10px; border-radius: 50%; }
.bw-res-grid-locked { font-size: 10px; color: var(--bw-text-3); font-weight: 500; }
@media (min-width: 900px) { .bw-resources-tabs { display: none; } }

/* Fix 30 mai Aymeric : Step 1c (Choisir formule) parite visuelle bassinvr.fr/reserver */
/* Cards full-width au lieu de grille 3 col + prix gros MERCREDI/WEEK-END + includes chips */
.bw-step .bw-activity-grid:has(.bw-pkg-card) {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bw-pkg-card.bw-pkg-formule-detail {
  display: flex;
  flex-direction: column;
  padding: 22px 26px;
  min-height: auto;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  cursor: pointer;
  transition: all .15s;
}
.bw-pkg-card.bw-pkg-formule-detail:hover {
  background: rgba(255,255,255,.05);
  border-color: rgba(59,130,246,.5);
}
.bw-pkg-card.bw-pkg-formule-detail.selected {
  background: rgba(59,130,246,.08);
  border-color: var(--bw-primary);
  box-shadow: 0 0 0 2px rgba(59,130,246,.2);
}
.bw-formule-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--bw-text);
  margin: 0 0 4px;
  letter-spacing: -.02em;
}
.bw-formule-desc {
  font-size: 13px;
  color: var(--bw-text-muted);
  margin: 0 0 14px;
}
.bw-formule-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 8px 0 14px;
  font-family: 'Bebas Neue', 'Space Grotesk', sans-serif;
  color: #67e8f9;
  font-size: 26px;
  letter-spacing: .04em;
  font-weight: 700;
}
.bw-formule-price strong {
  font-weight: 700;
  color: #67e8f9;
}
.bw-formule-price-label {
  font-size: 11px;
  color: var(--bw-text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bw-formule-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--bw-text-muted);
}
.bw-formule-includes-label {
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 4px;
}
.bw-formule-chip {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  font-size: 12px;
  color: var(--bw-text);
}
.bw-formule-meta {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--bw-text-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* Fix 30 mai Aymeric : sub-stepper Step 3 multi-resource step-by-step */
.bw-substepper { display:flex; gap:10px; margin:18px 0 22px; padding:14px; background:rgba(255,255,255,.02); border:1px solid rgba(255,255,255,.06); border-radius:12px; overflow-x:auto; }
.bw-substep-item { display:flex; align-items:center; gap:8px; padding:6px 12px; border-radius:8px; transition:all .15s; min-width:fit-content; }
.bw-substep-num { width:26px; height:26px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:13px; flex-shrink:0; }
.bw-substep-label { font-size:13px; font-weight:600; white-space:nowrap; }
.bw-sub-active { background:rgba(59,130,246,.18); }
.bw-sub-active .bw-substep-num { background:#3b82f6; color:#fff; }
.bw-sub-active .bw-substep-label { color:#e8eaed; }
.bw-sub-done .bw-substep-num { background:rgba(52,211,153,.25); color:var(--bw-accent); }
.bw-sub-done .bw-substep-label { color:rgba(255,255,255,.5); text-decoration:line-through; text-decoration-color:rgba(255,255,255,.2); }
.bw-sub-pending .bw-substep-num { background:rgba(255,255,255,.05); color:rgba(255,255,255,.4); }
.bw-sub-pending .bw-substep-label { color:rgba(255,255,255,.4); }
.bw-substep-intro { margin:14px 0 18px; padding:14px 18px; background:rgba(59,130,246,.06); border:1px solid rgba(59,130,246,.18); border-radius:10px; }
.bw-substep-intro h3 { font-size:17px; font-weight:700; color:#e8eaed; margin:0 0 6px; }
.bw-substep-intro p { font-size:13px; color:rgba(255,255,255,.6); margin:0; }

/* === Quick-Win A Burlington : slots visuels (30 mai 2026) === */
.bw-slot-visual {
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 14px 16px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.bw-slot-visual:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, .5);
  box-shadow: 0 4px 16px rgba(34, 211, 238, .2);
}
.bw-slot-visual.selected {
  border-color: var(--bw-accent);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, .4), 0 4px 16px rgba(34, 211, 238, .25);
}
.bw-slot-visual.bw-slot-full {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(.4);
}
.bw-slot-visual.bw-slot-full:hover {
  transform: none;
  border-color: rgba(255,255,255,.06);
  box-shadow: none;
}
.bw-slot-visual .bw-slot-time-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.bw-slot-visual .bw-slot-time-xl {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  letter-spacing: .02em;
}
.bw-slot-visual .bw-slot-end-small {
  font-size: 12px;
  color: #94a3b8;
}
.bw-slot-visual .bw-slot-game-name {
  font-size: 13px;
  font-weight: 600;
  color: #e8eaed;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
  margin-top: 4px;
}
.bw-slot-visual .bw-slot-remaining {
  font-size: 12px;
  color: var(--bw-accent);
  font-weight: 600;
  margin-top: 6px;
}
.bw-slot-visual .bw-slot-remaining.low {
  color: #f59e0b;
}
.bw-slot-visual .bw-slot-soldout-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 6px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(239, 68, 68, .4);
}
.bw-slot-visual .bw-slot-locked-exp {
  font-size: 11px;
  color: #a78bfa;
  margin-top: 4px;
}
.bw-slot-visual .bw-slot-tier-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 99px;
  text-transform: uppercase;
}
.bw-slot-visual .bw-slot-multi-pos {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--bw-accent);
  color: #0f1119;
  font-size: 13px;
  font-weight: 800;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === Quick-Win B Burlington : mini-cart sticky === */
.bw-cart-sticky {
  position: sticky;
  top: 16px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  color: #e8eaed;
  font-size: 13px;
  transition: opacity .3s ease;
}
.bw-cart-sticky.bw-cart-hidden {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
}
.bw-cart-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bw-cart-head {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.bw-cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.bw-cart-lbl {
  font-weight: 600;
  color: #e8eaed;
}
.bw-cart-sub {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 400;
  margin-top: 2px;
}
.bw-cart-val {
  color: #94a3b8;
  font-size: 12px;
}
.bw-cart-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 4px 0;
}
.bw-cart-tax {
  color: #94a3b8;
  font-size: 11px;
}
.bw-cart-total {
  font-size: 16px;
  font-weight: 800;
  color: var(--bw-accent);
  margin-top: 4px;
}
.bw-cart-total strong {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-size: 20px;
  letter-spacing: .02em;
}

/* Desktop : split-view main + cart */
@media (min-width: 920px) {
  .bw-shell .bw-main + .bw-cart-sticky {
    /* Si on a un layout grid, le sticky est dans la colonne droite */
  }
  .bw-cart-sticky {
    position: fixed;
    top: 80px;
    right: 16px;
    width: 280px;
    z-index: 50;
  }
}

/* === Quick-Win C Burlington : calendrier code couleur prix === */
.bw-cal-legend {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 12px;
  font-size: 11px;
  font-weight: 600;
  flex-wrap: wrap;
}
.bw-cal-legend-item {
  padding: 3px 10px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.1);
}
.bw-cal-legend-quiet {
  background: rgba(52, 211, 153, .12);
  color: var(--bw-accent);
}
.bw-cal-legend-mid {
  background: rgba(245, 158, 11, .12);
  color: #f59e0b;
}
.bw-cal-legend-wk {
  background: rgba(239, 68, 68, .12);
  color: #ef4444;
}

/* Cell background tint based on price level */
.bw-cal-cell.bw-cal-price-quiet:not(.bw-cal-past):not(.bw-cal-empty) {
  background: rgba(52, 211, 153, .08);
  border-color: rgba(52, 211, 153, .25);
}
.bw-cal-cell.bw-cal-price-mid:not(.bw-cal-past):not(.bw-cal-empty) {
  background: rgba(245, 158, 11, .08);
  border-color: rgba(245, 158, 11, .25);
}
.bw-cal-cell.bw-cal-price-wk:not(.bw-cal-past):not(.bw-cal-empty),
.bw-cal-cell.bw-cal-price-weekend:not(.bw-cal-past):not(.bw-cal-empty) {
  background: rgba(239, 68, 68, .08);
  border-color: rgba(239, 68, 68, .25);
}
.bw-cal-cell.bw-cal-selected.bw-cal-price-quiet,
.bw-cal-cell.bw-cal-selected.bw-cal-price-mid,
.bw-cal-cell.bw-cal-selected.bw-cal-price-wk,
.bw-cal-cell.bw-cal-selected.bw-cal-price-weekend {
  background: var(--bw-accent) !important;
  border-color: var(--bw-accent) !important;
  color: var(--bw-on-accent) !important;
  color: #0f1119;
}

/* === PZ_ZL_CAL_PRICE_TINT (9 juin 2026, rev2) · SUPPRESSION code couleur tranches tarifaires (ZL only) ===
   Gate : .bw-root[data-single-catalog] (pose en JS uniquement quand slot_grid_config.single_catalog===true).
   ZL : on RETIRE completement la semantique de tranches (legende masquee + jours neutres, plus de teinte).
   La selection de date et le jour "today" restent intacts (regles .bw-cal-selected / .bw-cal-today inchangees).
   Hors ce marqueur (BVR/autres) : regles d'origine vert/orange/rouge inchangees. */
.bw-root[data-single-catalog] .bw-cal-legend {
  display: none !important;
}
.bw-root[data-single-catalog] .bw-cal-cell.bw-cal-price-quiet:not(.bw-cal-past):not(.bw-cal-empty),
.bw-root[data-single-catalog] .bw-cal-cell.bw-cal-price-mid:not(.bw-cal-past):not(.bw-cal-empty),
.bw-root[data-single-catalog] .bw-cal-cell.bw-cal-price-wk:not(.bw-cal-past):not(.bw-cal-empty),
.bw-root[data-single-catalog] .bw-cal-cell.bw-cal-price-weekend:not(.bw-cal-past):not(.bw-cal-empty) {
  background: var(--bw-bg);
  border-color: var(--bw-border);
}

/* === Quick-win D Burlington : stepper icons === */
.bw-stepper-pills .bw-step-pill.bw-step-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  background: transparent;
  border: none;
  cursor: default;
}
.bw-step-pill.bw-step-icon .bw-step-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s, transform .2s;
}
.bw-step-pill.bw-step-icon.active .bw-step-pill-icon {
  background: linear-gradient(135deg, var(--bw-accent), #a855f7);
  color: #0f1119;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(34, 211, 238, .35);
}
.bw-step-pill.bw-step-icon.done .bw-step-pill-icon {
  background: rgba(52, 211, 153, .2);
  color: var(--bw-accent);
}
.bw-step-pill.bw-step-icon .bw-step-pill-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.bw-step-pill.bw-step-icon.active .bw-step-pill-label {
  color: var(--bw-accent);
}

/* === Quick-win E Burlington : promo banner top sticky === */
.bw-promo-banner-top {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

/* === Quick-win F Burlington : encart promo Players step === */
.bw-promo-step-encart {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(34, 211, 238, .1);
  border: 1px solid rgba(34, 211, 238, .35);
  border-left: 3px solid var(--bw-accent);
  border-radius: 8px;
  color: #e8eaed;
  font-size: 13px;
  line-height: 1.5;
}

/* === Brique 97 (30 mai 2026 cycle Ultimate) - Badges enrichis jeux ZL === */
.bw-exp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 6px 0 4px;
}
.bw-exp-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
}
.bw-exp-badge-fam {
  background: rgba(34, 197, 94, .15);
  color: var(--bw-primary);
}
.bw-exp-badge-std {
  background: rgba(34, 211, 238, .15);
  color: var(--bw-accent);
}
.bw-exp-badge-prem {
  background: rgba(245, 158, 11, .15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, .3);
}
.bw-exp-badge-duo {
  background: rgba(168, 85, 247, .15);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, .3);
}
.bw-exp-badge-group {
  background: rgba(239, 68, 68, .12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, .3);
}

/* === Brique 99 (31 mai 2026 cycle widget identique bassinvr) - Lot A === */

/* F13 - 2 modes paiement cards */
.bw-pay-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 6px 0 14px;
}
@media (max-width: 600px) {
  .bw-pay-modes { grid-template-columns: 1fr; }
}
.bw-pay-mode {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 10px;
  cursor: pointer;
  align-items: flex-start;
  transition: border-color .2s;
}
.bw-pay-mode:hover { border-color: rgba(34, 211, 238, .5); }
.bw-pay-mode.sel { border-color: var(--bw-accent); background: rgba(34, 211, 238, .06); }
.bw-pay-mode input[type=radio] { margin-top: 3px; accent-color: var(--bw-accent); }
.bw-pm-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.bw-pm-amount { font-size: 18px; font-weight: 800; color: var(--bw-accent); font-family: 'Bebas Neue', 'Inter', sans-serif; letter-spacing: .02em; }
.bw-pm-sub { font-size: 11px; color: #94a3b8; margin-top: 3px; line-height: 1.4; }

/* F8/F9 loyalty card visible */
.bw-loyalty-card {
  position: relative;
}

/* F1 auto-arena message badge */
.bw-arena-auto {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(168, 85, 247, .1);
  border: 1px solid rgba(168, 85, 247, .35);
  border-left: 3px solid #a855f7;
  border-radius: 8px;
  color: #d8b4fe;
  font-size: 12px;
  font-weight: 600;
}

/* F2 salle privee checkbox */
.bw-private-room {
  margin-top: 10px;
  padding: 10px 14px;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.bw-private-room input { margin-top: 3px; accent-color: var(--bw-accent); }
.bw-private-room-text { font-size: 13px; color: #e2e8f0; }
.bw-private-room-sub { font-size: 11px; color: #94a3b8; margin-top: 3px; }

/* === Brique 100 (Lot B) - F4 compteur duree + F5 bandeau sessions consecutives === */
.bw-step3-counter {
  background: rgba(34, 211, 238, .08);
  border: 1px solid rgba(34, 211, 238, .25);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 10px 0 14px;
}
.bw-step3-counter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 6px;
}
.bw-step3-counter-row strong { color: var(--bw-accent); font-weight: 700; }
.bw-step3-counter-remain { color: #fbbf24; font-size: 12px; }
.bw-step3-counter-full { color: var(--bw-primary); font-size: 12px; font-weight: 700; }
.bw-step3-counter-bar {
  height: 6px;
  background: rgba(255, 255, 255, .06);
  border-radius: 99px;
  overflow: hidden;
}
.bw-step3-counter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bw-accent), #a855f7);
  transition: width .3s ease;
}

.bw-consecutive-banner {
  background: linear-gradient(135deg, rgba(91,140,255,.12), rgba(168,85,247,.12));
  border: 1px solid rgba(91,140,255,.3);
  border-left: 3px solid #5b8cff;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0 14px;
  font-size: 13px;
  color: #cbd5e1;
}
.bw-consecutive-title {
  font-weight: 700;
  color: #93c5fd;
  margin-bottom: 6px;
  font-size: 13px;
}
.bw-consecutive-row {
  font-size: 12px;
  padding: 3px 0;
  color: #cbd5e1;
}
.bw-consecutive-pause {
  margin-top: 6px;
  font-size: 11px;
  color: #94a3b8;
  font-style: italic;
}

/* === Brique 100 (Lot B) - Toggle Grande/Petite arena choice === */
.bw-arena-choice {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(168, 85, 247, .08);
  border: 1px solid rgba(168, 85, 247, .25);
  border-radius: 10px;
}
.bw-arena-choice-label {
  font-size: 11px;
  font-weight: 700;
  color: #a855f7;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.bw-arena-choice-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.bw-arena-choice-btn {
  padding: 8px 14px;
  background: #1e293b;
  border: 1.5px solid #334155;
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.bw-arena-choice-btn:hover { border-color: #a855f7; }
.bw-arena-choice-btn.sel {
  border-color: #a855f7;
  background: rgba(168, 85, 247, .15);
  color: #c084fc;
}

/* === Brique 102 (Lot C - 31 mai 2026) - F7 extras catalogue + F14 codes === */
.bw-extras-section { margin-top: 18px; }
.bw-extras-free-banner {
  margin-bottom: 14px;
  padding: 12px 14px;
  background: rgba(34, 197, 94, .08);
  border: 1px solid rgba(34, 197, 94, .3);
  border-left: 3px solid var(--bw-primary);
  border-radius: 8px;
  color: #86efac;
  font-size: 13px;
  line-height: 1.5;
}
.bw-extras-cat-h {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 14px 0 8px;
}
.bw-extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.bw-extra-item {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 10px 12px;
}
.bw-extra-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bw-extra-desc { font-size: 11px; color: #94a3b8; line-height: 1.4; margin-bottom: 6px; }
.bw-extra-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.bw-extra-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--bw-accent);
  font-family: 'Bebas Neue', 'Inter', sans-serif;
}
.bw-extra-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bw-extra-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #334155;
  border: 1px solid #475569;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.bw-extra-qty-btn:hover { background: var(--bw-accent); color: #0f172a; }
.bw-extra-qty-val { min-width: 18px; text-align: center; font-weight: 700; color: #fff; font-size: 13px; }

/* F14 codes promo / cadeau */
.bw-codes-section {
  margin-top: 18px;
  padding: 14px;
  background: rgba(168, 85, 247, .06);
  border: 1px solid rgba(168, 85, 247, .2);
  border-radius: 10px;
}
.bw-code-row {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.bw-code-row .bw-input { flex: 1; }
.bw-code-apply { white-space: nowrap; }

/* === Brique 109 (31 mai 2026) - Flow lineaire Step 3 simple === */
.bw-lineaire-section {
  margin-bottom: 24px;
}
.bw-lineaire-section-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.bw-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.bw-game-card {
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
}
.bw-game-card:hover {
  border-color: rgba(34, 211, 238, .5);
  transform: translateY(-2px);
}
.bw-game-card.selected {
  border-color: var(--bw-accent);
  background: rgba(34, 211, 238, .08);
}
.bw-game-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  background: #0b1220;
}
.bw-game-img-placeholder {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, #1e293b, #0b1220);
}
.bw-game-body {
  padding: 10px 12px;
}
.bw-game-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.bw-game-meta {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 4px;
}

/* === QW5_SECTIONS_STEP1_31MAI : sections titrees Step 1 Burlington-style === */
.bw-step1-section-title {
  margin: 24px 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bw-accent, var(--bw-accent));
  border-left: 3px solid var(--bw-accent, var(--bw-accent));
  padding-left: 12px;
  line-height: 1.2;
}
.bw-step1-section-title:first-of-type {
  margin-top: 16px;
}
.bw-step1-section-title + .bw-activity-grid {
  margin-top: 0;
}

/* === ITER3_BUGS_31MAI : Fix Bug 1 P0 - .bw-exp-card body invisible (flex-direction row -> column) === */
.bw-exp-card {
  display: flex !important;
  flex-direction: column !important;
}
.bw-exp-card .bw-exp-img,
.bw-exp-card .bw-exp-img-placeholder {
  width: 100% !important;
  height: 120px !important;
  flex-shrink: 0 !important;
}
.bw-exp-card .bw-exp-body {
  width: 100% !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  padding: 12px 14px !important;
}


/* CHANTIER3_31MAI : style jour ferme calendrier */
.bw-cal-cell.bw-cal-closed { opacity: .35 !important; background: rgba(120,120,120,.08) !important; cursor: not-allowed !important; }
.bw-cal-cell.bw-cal-closed:hover { transform: none !important; }
.bw-cal-cell.bw-cal-closed .bw-cal-day { text-decoration: line-through; color: #64748b !important; }
.bw-cal-closed-tag { color: #94a3b8 !important; font-size: 9px !important; display: block !important; margin-top: 2px; }

/* === PZ_MONO (13 juin 2026) · theme tenant monochrome jaune/noir (gate .bw-root[data-mono-theme], pose si tenant.secondary_color).
   1) legende prix masquee  2) jours calendrier neutres (selection jaune seule)  3) ZERO trait/separateur.
   Hors gate (BVR/bigajump) : rien ne change. */
.bw-root[data-mono-theme] .bw-cal-legend { display: none !important; }
.bw-root[data-mono-theme] .bw-cal-cell.bw-cal-price-quiet:not(.bw-cal-past):not(.bw-cal-empty),
.bw-root[data-mono-theme] .bw-cal-cell.bw-cal-price-mid:not(.bw-cal-past):not(.bw-cal-empty),
.bw-root[data-mono-theme] .bw-cal-cell.bw-cal-price-wk:not(.bw-cal-past):not(.bw-cal-empty),
.bw-root[data-mono-theme] .bw-cal-cell.bw-cal-price-weekend:not(.bw-cal-past):not(.bw-cal-empty) {
  background: var(--bw-surface) !important;
  border-color: var(--bw-border) !important;
}
/* ZERO trait : tous les separateurs horizontaux supprimes */
.bw-root[data-mono-theme] .bw-header,
.bw-root[data-mono-theme] .bw-hero,
.bw-root[data-mono-theme] .bw-footer,
.bw-root[data-mono-theme] .bw-recap-row,
.bw-root[data-mono-theme] .bw-multi-slot-section {
  border-top: none !important;
  border-bottom: none !important;
}
.bw-root[data-mono-theme] .bw-step-pill-sep { background: transparent !important; opacity: 0 !important; }


/* PZ_FAMIMG_16jun : carte formule/tranche sans image = propre, pas de degrade bleu/violet */
.bw-card-noimg { min-height: 128px; display: flex; flex-direction: column; justify-content: center; border-top: 3px solid var(--bw-card-accent, var(--bw-primary)); background: var(--bw-surface-2); }
.bw-card-noimg .bw-activity-body { padding: 18px 16px; }
.bw-badge-inline { position: static; display: inline-block; align-self: flex-start; margin: 0 0 10px; top: auto; right: auto; }

/* PZ_SURRESA_16jun · Créneau sur réservation avant ouverture */
.bw-slot-surresa {
  position: relative;
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(245,158,11,0.03) 100%);
  border: 1.5px dashed #f59e0b;
  border-radius: 10px;
  padding: 10px 8px;
  cursor: pointer;
  transition: all .15s;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
  margin-bottom: 4px;
  grid-column: 1 / -1;
}
.bw-slot-surresa:hover {
  background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(245,158,11,0.07) 100%);
  border-color: #fbbf24;
  transform: translateY(-1px);
}
.bw-surresa-label {
  font-size: 11px;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.bw-surresa-phone {
  font-size: 12px;
  font-weight: 600;
  color: var(--bw-text-muted, #94a3b8);
  margin-top: 2px;
}
.bw-surresa-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.bw-surresa-modal {
  background: var(--bw-surface, #1a1f2e);
  border: 1px solid var(--bw-border, #2d3748);
  border-radius: 16px;
  padding: 24px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.bw-surresa-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--bw-text, #f1f5f9);
  margin-bottom: 12px;
  text-align: center;
}
.bw-surresa-modal-body {
  font-size: 14px;
  color: var(--bw-text-muted, #94a3b8);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 8px;
}
.bw-surresa-modal-body strong {
  color: var(--bw-primary, #6366f1);
  font-weight: 700;
}

/* PZ_ESCAPE_UX #5 : deux compteurs Adultes / Enfants côte à côte (vertical escape). */
.bw-split-counters .bw-split-row { display:flex; gap:12px; align-items:flex-start; }
.bw-split-counters .bw-split-col { flex:1 1 0; min-width:0; }
.bw-split-counters .bw-split-col .bw-places-stepper { width:100%; }
.bw-split-total { margin-top:10px; font-size:13px; color:#9aa7bd; text-align:center; }
.bw-split-total strong { color: var(--bw-accent, #22d3ee); font-weight:700; }

/* PZ_ESCAPE_UX #8 : grille de créneaux dense (salle privée escape, ~1 écran mobile, moins de scroll). */
.bw-dense-slots .bw-slots-compact-grid,
.bw-dense-slots .bw-slots-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
@media (min-width: 480px) { .bw-dense-slots .bw-slots-compact-grid, .bw-dense-slots .bw-slots-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; } }
@media (min-width: 720px) { .bw-dense-slots .bw-slots-compact-grid, .bw-dense-slots .bw-slots-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.bw-dense-slots .bw-slot-c { padding: 9px 4px; min-height: 0; gap: 0; }
.bw-dense-slots .bw-slot-c-time { font-size: 15px; line-height: 1.15; }
.bw-dense-slots .bw-slot-c-end { display: none; }  /* heure de fin masquée : densifie + l'horaire de début suffit (durée connue) */

/* PZ_STEPPER_CLICK2 18jun : une étape déjà atteinte est cliquable pour y revenir (affordance claire). */
.bw-step-pill.bw-step-clickable { cursor: pointer; }
.bw-step-pill.bw-step-clickable:hover { opacity: .85; }
.bw-step-pill.bw-step-clickable:hover .bw-step-pill-label { text-decoration: underline; }

/* PZ_ESCAPE_UX #11 : cartes de sélection du mode de jeu (escape). */
.bw-modes-block { margin: 4px 0 8px; }
.bw-modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
@media (min-width: 560px) { .bw-modes-grid { grid-template-columns: repeat(2, 1fr); } }
.bw-mode-card { display:flex; align-items:center; justify-content:center; text-align:center; min-height:54px; padding:12px 14px; border-radius:12px; border:2px solid var(--bw-border,rgba(255,255,255,.14)); background:var(--bw-surface,rgba(255,255,255,.04)); color:inherit; font:600 14px Inter,system-ui,sans-serif; cursor:pointer; transition:border-color .15s, background .15s; }
.bw-mode-card:hover { border-color: var(--bw-accent,#22d3ee); }
.bw-mode-card.selected { border-color: var(--bw-accent,#22d3ee); background: color-mix(in srgb, var(--bw-accent,#22d3ee) 16%, transparent); }

/* =====================================================================
   PZ_NEON_SKIN · Habillage « Immersive néon-glass » du tunnel public.
   Handoff: design_handoff_pulzar_resa (standard Pulzar, tous tenants sauf BigAJump).
   GATE STRICT : tout est scopé sous .bw-root.bw-neon → AUCUN effet sans le flag.
   Théming par tenant : dérive de --bw-primary (déjà posé par tenants.primary_color).
   --bw-primary-2 (2e arrêt dégradé) optionnel, fallback = --bw-primary.
   Codes FIXES non-thémés conservés : violet Formules, rose Cadeaux, rouge alertes.
   CSS UNIQUEMENT · zéro logique métier, aucune classe inventée.
   Police : on garde Inter (corps) + Space Grotesk (titres/chiffres) DÉJÀ chargés
   par le widget → aucune requête font supplémentaire imposée aux users hors flag.
   ===================================================================== */

/* ---- Tokens néon (redéfinition locale au skin) -------------------- */
.bw-root.bw-neon {
  --bw-bg:        #060911;
  --bw-surface:   rgba(255,255,255,.045);
  --bw-surface-2: rgba(255,255,255,.07);
  --bw-border:    rgba(120,180,255,.14);
  --bw-text:      #EAF0F8;
  --bw-text-2:    #8696AD;
  --bw-text-3:    #5f6e85;
  --bw-text-dim:  #5f6e85;
  --bw-text-muted:#8696AD;
  /* 2e arrêt dégradé : par tenant via JS (--bw-primary-2), sinon = primary */
  --bw-primary-2: var(--bw-primary);
  --bw-radius:    14px;
  --bw-radius-sm: 11px;
  --bw-grad: linear-gradient(135deg, var(--bw-primary), var(--bw-primary-2));
  /* halos réutilisables (color-mix → pas besoin des canaux rgb) */
  --bw-halo-ring: 0 0 0 3px color-mix(in srgb, var(--bw-primary) 18%, transparent);
  --bw-halo-glow: 0 0 22px color-mix(in srgb, var(--bw-primary) 38%, transparent);
}

/* Fond near-black + dot-grid + glow haut (teinté accent) */
.bw-root.bw-neon {
  background-color: #060911;
  background-image:
    radial-gradient(ellipse 340px 280px at 50% -30px, color-mix(in srgb, var(--bw-primary) 16%, transparent), transparent 70%),
    radial-gradient(circle, rgba(90,176,255,.10) 1px, transparent 1.3px);
  background-size: auto, 23px 23px;
  background-repeat: no-repeat, repeat;
  background-attachment: fixed, fixed;
  color: var(--bw-text);
}
html.bw-neon, html.bw-neon body { background: #060911; }

/* ---- Header + hero ----------------------------------------------- */
.bw-root.bw-neon .bw-header {
  background: rgba(6,9,17,.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bw-border);
}
.bw-root.bw-neon .bw-logo {
  box-shadow: 0 0 18px color-mix(in srgb, var(--bw-primary) 55%, transparent);
}
.bw-root.bw-neon .bw-brand-name { color: var(--bw-text); letter-spacing: .2px; }
.bw-root.bw-neon .bw-step-counter {
  background: var(--bw-surface); color: var(--bw-text-2);
  border: 1px solid var(--bw-border);
}
.bw-root.bw-neon .bw-hero { border-bottom: 1px solid var(--bw-border); }
.bw-root.bw-neon .bw-brand-xl {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  color: var(--bw-primary);
  text-shadow: 0 0 22px color-mix(in srgb, var(--bw-primary) 60%, transparent);
  letter-spacing: 2px;
}
.bw-root.bw-neon .bw-brand-tagline { color: var(--bw-text-3); letter-spacing: .18em; }

/* ---- Lang switch + gift pill ------------------------------------- */
.bw-root.bw-neon .bw-lang-switch { background: var(--bw-surface); }
.bw-root.bw-neon .bw-lang-btn.active { background: var(--bw-grad); color: #06121a; }

/* ---- Stepper (dots + pills + icônes) ----------------------------- */
.bw-root.bw-neon .bw-stepper-dot { background: rgba(120,180,255,.18); }
.bw-root.bw-neon .bw-stepper-dot.done,
.bw-root.bw-neon .bw-stepper-dot.active { background: var(--bw-grad); }
.bw-root.bw-neon .bw-step-pill-num { background: rgba(120,180,255,.16); color: var(--bw-text-3); }
.bw-root.bw-neon .bw-step-pill.done .bw-step-pill-num,
.bw-root.bw-neon .bw-step-pill.active .bw-step-pill-num {
  background: var(--bw-grad); color: #06121a;
  box-shadow: 0 0 14px color-mix(in srgb, var(--bw-primary) 60%, transparent);
}
.bw-root.bw-neon .bw-step-pill.active { color: var(--bw-primary); }
.bw-root.bw-neon .bw-step-pill-sep { background: var(--bw-border); }
/* variante icônes : gradient accent (au lieu du violet hardcodé) */
.bw-root.bw-neon .bw-step-pill.bw-step-icon.active .bw-step-pill-icon {
  background: var(--bw-grad); color: #06121a;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--bw-primary) 45%, transparent);
}
.bw-root.bw-neon .bw-step-pill.bw-step-icon.active .bw-step-pill-label { color: var(--bw-primary); }

/* ---- Titres d'écran ---------------------------------------------- */
.bw-root.bw-neon .bw-step-title { font-family: 'Space Grotesk', sans-serif; color: var(--bw-text); }
.bw-root.bw-neon .bw-step-sub { color: var(--bw-text-2); }
.bw-root.bw-neon .bw-section-title,
.bw-root.bw-neon .bw-step1-section-title { color: var(--bw-primary); border-left-color: var(--bw-primary); }
.bw-root.bw-neon .bw-label { color: var(--bw-text-3); }
.bw-root.bw-neon .bw-help { color: var(--bw-text-3); }

/* ---- Inputs ------------------------------------------------------- */
.bw-root.bw-neon .bw-input,
.bw-root.bw-neon .bw-select {
  background: var(--bw-surface); border: 1px solid var(--bw-border); color: var(--bw-text);
}
.bw-root.bw-neon .bw-input:focus,
.bw-root.bw-neon .bw-select:focus {
  border-color: var(--bw-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--bw-primary) 18%, transparent);
}

/* ---- Écran 1 : cartes activité (glass + halo sélection) ---------- */
.bw-root.bw-neon .bw-activity-card,
.bw-root.bw-neon .bw-exp-card,
.bw-root.bw-neon .bw-package-card,
.bw-root.bw-neon .bw-game-card {
  background: var(--bw-surface);
  border: 1px solid var(--bw-border);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.bw-root.bw-neon .bw-activity-card:hover,
.bw-root.bw-neon .bw-exp-card:hover,
.bw-root.bw-neon .bw-package-card:hover,
.bw-root.bw-neon .bw-game-card:hover {
  border-color: color-mix(in srgb, var(--bw-primary) 50%, transparent);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.bw-root.bw-neon .bw-activity-card.selected,
.bw-root.bw-neon .bw-exp-card.selected,
.bw-root.bw-neon .bw-package-card.selected,
.bw-root.bw-neon .bw-game-card.selected {
  border-color: var(--bw-primary);
  box-shadow: var(--bw-halo-ring), var(--bw-halo-glow);
  background: color-mix(in srgb, var(--bw-primary) 8%, var(--bw-surface));
}
.bw-root.bw-neon .bw-activity-card.selected::before {
  background: var(--bw-grad); color: #06121a;
  box-shadow: 0 0 14px color-mix(in srgb, var(--bw-primary) 55%, transparent);
}
.bw-root.bw-neon .bw-activity-price,
.bw-root.bw-neon .bw-activity-price-badge { background: var(--bw-grad); color: #06121a; }
.bw-root.bw-neon .bw-activity-name,
.bw-root.bw-neon .bw-exp-name,
.bw-root.bw-neon .bw-package-name,
.bw-root.bw-neon .bw-game-name { color: var(--bw-text); }
.bw-root.bw-neon .bw-activity-tagline,
.bw-root.bw-neon .bw-activity-desc,
.bw-root.bw-neon .bw-exp-desc { color: var(--bw-text-2); }
.bw-root.bw-neon .bw-activity-meta,
.bw-root.bw-neon .bw-exp-meta { color: var(--bw-text-3); }
.bw-root.bw-neon .bw-package-price,
.bw-root.bw-neon .bw-formule-price,
.bw-root.bw-neon .bw-formule-price strong { color: var(--bw-primary); }
/* placeholders sans image : dégradé accent au lieu du bleu/violet fixe */
.bw-root.bw-neon .bw-activity-cover-placeholder,
.bw-root.bw-neon .bw-activity-img-placeholder,
.bw-root.bw-neon .bw-exp-img-placeholder,
.bw-root.bw-neon .bw-locked-img-placeholder {
  background: linear-gradient(135deg, color-mix(in srgb, var(--bw-primary) 60%, transparent), color-mix(in srgb, var(--bw-primary-2) 30%, transparent));
}
.bw-root.bw-neon .bw-card-noimg { background: var(--bw-surface); border-top-color: var(--bw-primary); }

/* Badges catégorie FIXES (non thémés) · on garde violet/rose/orange */
/* (.bw-pkg-badge-purple / -pink / -blue / -orange inchangés) */

/* ---- Écran 2 : calendrier + compteurs joueurs -------------------- */
.bw-root.bw-neon .bw-cal-card { background: var(--bw-surface); border: 1px solid var(--bw-border); backdrop-filter: blur(8px); }
.bw-root.bw-neon .bw-cal-month { color: var(--bw-text); }
.bw-root.bw-neon .bw-cal-weekday { color: var(--bw-text-3); }
.bw-root.bw-neon .bw-cal-nav { background: var(--bw-surface); border-color: var(--bw-border); color: var(--bw-text); }
.bw-root.bw-neon .bw-cal-nav:hover { border-color: var(--bw-primary); color: var(--bw-primary); }
.bw-root.bw-neon .bw-cal-cell { background: var(--bw-surface); border: 1px solid var(--bw-border); color: var(--bw-text); }
.bw-root.bw-neon .bw-cal-cell:hover:not([disabled]):not(.bw-cal-past) {
  border-color: var(--bw-primary);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--bw-primary) 22%, transparent);
}
.bw-root.bw-neon .bw-cal-today { border-color: var(--bw-primary); }
.bw-root.bw-neon .bw-cal-selected {
  background: var(--bw-grad); border-color: var(--bw-primary); color: #06121a;
  box-shadow: var(--bw-halo-glow);
}
.bw-root.bw-neon .bw-cal-price { color: var(--bw-text-3); }
.bw-root.bw-neon .bw-cal-cell.bw-cal-closed .bw-cal-day { color: #94a3b8 !important; }
.bw-root.bw-neon .bw-places-btn,
.bw-root.bw-neon .bw-tier-cnt-btn,
.bw-root.bw-neon .bw-tier-counter { background: var(--bw-surface); border-color: var(--bw-border); color: var(--bw-text); }
.bw-root.bw-neon .bw-places-btn:hover:not(:disabled),
.bw-root.bw-neon .bw-tier-cnt-btn:hover { border-color: var(--bw-primary); color: var(--bw-primary); }
.bw-root.bw-neon .bw-places-val,
.bw-root.bw-neon .bw-tier-cnt-val,
.bw-root.bw-neon .bw-cal-day,
.bw-root.bw-neon .bw-slot-c-time,
.bw-root.bw-neon .bw-slot-time { font-family: 'Space Grotesk', sans-serif; }
.bw-root.bw-neon .bw-split-total strong { color: var(--bw-primary); }

/* ---- Écran 3 : créneaux ------------------------------------------ */
.bw-root.bw-neon .bw-slot,
.bw-root.bw-neon .bw-slot-c {
  background: var(--bw-surface); border: 1px solid var(--bw-border);
}
.bw-root.bw-neon .bw-slot:hover,
.bw-root.bw-neon .bw-slot-c:hover:not(.bw-slot-disabled) {
  border-color: var(--bw-primary);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--bw-primary) 22%, transparent);
}
.bw-root.bw-neon .bw-slot.selected,
.bw-root.bw-neon .bw-slot-c.selected {
  border-color: var(--bw-primary);
  background: color-mix(in srgb, var(--bw-primary) 10%, var(--bw-surface));
  box-shadow: var(--bw-halo-ring), var(--bw-halo-glow);
}
.bw-root.bw-neon .bw-slot-c-time { color: var(--bw-text); }
.bw-root.bw-neon .bw-slot-c-price { color: var(--bw-primary); }
.bw-root.bw-neon .bw-slot-c-places,
.bw-root.bw-neon .bw-slot-end,
.bw-root.bw-neon .bw-slot-c-end { color: var(--bw-text-3); }
.bw-root.bw-neon .bw-slot-multi-pos,
.bw-root.bw-neon .bw-recap-multi-pos { background: var(--bw-grad); color: #06121a; }
.bw-root.bw-neon .bw-res-tab { background: var(--bw-surface); border-color: var(--bw-border); color: var(--bw-text-2); }
.bw-root.bw-neon .bw-res-tab.active { background: var(--bw-grad); color: #06121a; border-color: transparent; }
/* slots « visual » (Burlington) : harmoniser sur glass + accent */
.bw-root.bw-neon .bw-slot-visual { background: var(--bw-surface); border-color: var(--bw-border); }
.bw-root.bw-neon .bw-slot-visual.selected { border-color: var(--bw-primary); box-shadow: var(--bw-halo-ring), var(--bw-halo-glow); }
.bw-root.bw-neon .bw-slot-visual .bw-slot-remaining { color: var(--bw-primary); }

/* ---- Écran 4 : options / extras / modes -------------------------- */
.bw-root.bw-neon .bw-locked-card,
.bw-root.bw-neon .bw-extra-item,
.bw-root.bw-neon .bw-private-room { background: var(--bw-surface); border: 1px solid var(--bw-border); }
.bw-root.bw-neon .bw-locked-pill { background: color-mix(in srgb, var(--bw-primary) 18%, transparent); color: var(--bw-primary); }
.bw-root.bw-neon .bw-locked-name { color: var(--bw-text); }
.bw-root.bw-neon .bw-extra-name { color: var(--bw-text); }
.bw-root.bw-neon .bw-extra-price { color: var(--bw-primary); }
.bw-root.bw-neon .bw-extra-qty-btn { background: var(--bw-surface-2); border-color: var(--bw-border); color: var(--bw-text); }
.bw-root.bw-neon .bw-extra-qty-btn:hover { background: var(--bw-primary); color: #06121a; }
.bw-root.bw-neon .bw-mode-card { background: var(--bw-surface); border-color: var(--bw-border); }
.bw-root.bw-neon .bw-mode-card:hover,
.bw-root.bw-neon .bw-mode-card.selected { border-color: var(--bw-primary); }
.bw-root.bw-neon .bw-mode-card.selected { background: color-mix(in srgb, var(--bw-primary) 14%, transparent); box-shadow: var(--bw-halo-ring); }

/* ---- Écran 5 : paiement ------------------------------------------ */
.bw-root.bw-neon .bw-recap { background: var(--bw-surface); border: 1px solid var(--bw-border); }
.bw-root.bw-neon .bw-recap-key { color: var(--bw-text-3); }
.bw-root.bw-neon .bw-recap-val { color: var(--bw-text); }
.bw-root.bw-neon .bw-total { background: var(--bw-grad); color: #06121a; box-shadow: 0 0 28px color-mix(in srgb, var(--bw-primary) 35%, transparent); }
.bw-root.bw-neon .bw-tier-opt { background: var(--bw-surface); border-color: var(--bw-border); color: var(--bw-text-2); }
.bw-root.bw-neon .bw-tier-opt.selected { border-color: var(--bw-primary); color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 8%, transparent); }
.bw-root.bw-neon .bw-pay-mode { background: var(--bw-surface); border: 2px solid var(--bw-border); }
.bw-root.bw-neon .bw-pay-mode:hover { border-color: color-mix(in srgb, var(--bw-primary) 50%, transparent); }
.bw-root.bw-neon .bw-pay-mode.sel { border-color: var(--bw-primary); background: color-mix(in srgb, var(--bw-primary) 7%, transparent); }
.bw-root.bw-neon .bw-pay-mode input[type=radio] { accent-color: var(--bw-primary); }
.bw-root.bw-neon .bw-pm-title { color: var(--bw-text); }
.bw-root.bw-neon .bw-pm-amount { color: var(--bw-primary); }
.bw-root.bw-neon .bw-pm-sub { color: var(--bw-text-2); }
.bw-root.bw-neon .bw-cgv { background: var(--bw-surface); }
.bw-root.bw-neon .bw-cgv-text { color: var(--bw-text-2); }
.bw-root.bw-neon .bw-cgv-text a { color: var(--bw-primary); }

/* ---- Footer + CTA ------------------------------------------------- */
.bw-root.bw-neon .bw-footer {
  background: rgba(6,9,17,.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--bw-border);
}
.bw-root.bw-neon .bw-btn-primary {
  background: var(--bw-grad); color: #06121a;
  box-shadow: 0 0 26px color-mix(in srgb, var(--bw-primary) 45%, transparent);
}
.bw-root.bw-neon .bw-btn-ghost { background: var(--bw-surface); color: var(--bw-text-2); }
.bw-root.bw-neon .bw-btn-ghost:hover:not(:disabled) { background: var(--bw-surface-2); }

/* ---- Desktop : carte centrée glass ------------------------------- */
@media (min-width: 640px) {
  .bw-root.bw-neon { border-radius: 20px; border: 1px solid var(--bw-border); box-shadow: 0 40px 80px -20px rgba(0,0,0,.7); }
}

/* =====================================================================
   PZ_BJ_SKIN · Design CUSTOM BigAJump (verticale Trampoline).
   Handoff: design_handoff_resa_rapide (Variante B). Orange/magenta, Montserrat.
   GATE STRICT : scopé sous .bw-root.bw-bigajump → AUCUN effet sans le flag.
   Écran 1 « Choix activité » restructuré en cartes ENTRÉES vs ANNIVERSAIRES
   (pilote les <select> existants → zéro changement de logique).
   ===================================================================== */

.bw-root.bw-bigajump {
  --bw-bg:        #0c1320;
  --bw-surface:   #131d30;
  --bw-surface-2: #1a2740;
  --bw-border:    rgba(255,255,255,.07);
  --bw-text:      #EAF0F8;
  --bw-text-2:    #A9B4C7;
  --bw-text-3:    #67748C;
  --bw-text-dim:  #8492AB;
  --bw-text-muted:#8492AB;
  /* ENTRÉES = orange (couleur de marque tenant, #ff9000) ; ANNIV = magenta fixe */
  --bj-orange: var(--bw-primary, #F5821F);
  --bj-magenta: #F0568F;
  --bw-radius:    16px;
  --bw-radius-sm: 11px;
  background: #0c1320;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--bw-text);
}
html.bw-bigajump, html.bw-bigajump body { background: #0c1320; }

/* Header / hero / stepper · identité orange + Montserrat */
.bw-root.bw-bigajump .bw-header { background: rgba(12,19,32,.78); backdrop-filter: blur(8px); border-bottom: 1px solid var(--bw-border); }
.bw-root.bw-bigajump .bw-brand-name { font-family: 'Montserrat'; font-weight: 800; color: var(--bw-text); }
.bw-root.bw-bigajump .bw-hero { border-bottom: 1px solid rgba(255,255,255,.06); }
.bw-root.bw-bigajump .bw-brand-xl {
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-style: italic;
  letter-spacing: -1px; color: var(--bj-orange); transform: skewX(-4deg);
}
.bw-root.bw-bigajump .bw-brand-tagline { color: var(--bw-text-3); letter-spacing: .22em; }
.bw-root.bw-bigajump .bw-lang-btn.active { background: var(--bj-orange); color: #0a0f1a; }
.bw-root.bw-bigajump .bw-step-pill.active { color: var(--bj-orange); }
.bw-root.bw-bigajump .bw-step-pill.done .bw-step-pill-num,
.bw-root.bw-bigajump .bw-step-pill.active .bw-step-pill-num { background: var(--bj-orange); color: #0a0f1a; }
.bw-root.bw-bigajump .bw-stepper-dot.done,
.bw-root.bw-bigajump .bw-stepper-dot.active { background: var(--bj-orange); }
.bw-root.bw-bigajump .bw-step-title { font-family: 'Montserrat', sans-serif; font-weight: 900; color: var(--bw-text); }
.bw-root.bw-bigajump .bw-btn-primary { background: linear-gradient(180deg, #FF9A3D, var(--bj-orange)); color: #0a0f1a; box-shadow: 0 10px 22px -8px rgba(245,130,31,.6); font-weight: 900; }
.bw-root.bw-bigajump .bw-footer { background: rgba(12,19,32,.82); backdrop-filter: blur(8px); border-top: 1px solid var(--bw-border); }

/* ---- Écran 1 restructuré : cartes catégories ENTRÉES / ANNIVERSAIRES ---- */
.bw-bj-cats-host { max-width: 520px; margin: 16px auto 0; }
.bw-bj-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.bw-bj-cat {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
  border-radius: 20px; padding: 18px 14px; cursor: pointer; text-align: left;
  border: 1.5px solid rgba(255,255,255,.12); background: var(--bw-surface);
  color: var(--bw-text); font-family: 'Montserrat', sans-serif; position: relative;
  transition: border-color .15s, box-shadow .15s, background .15s, transform .1s;
}
.bw-bj-cat:hover { transform: translateY(-2px); }
.bw-bj-cat-emoji { font-size: 34px; line-height: 1; }
.bw-bj-cat-name { font-weight: 900; font-size: 18px; letter-spacing: .5px; margin-top: 6px; }
.bw-bj-cat-sub { font-weight: 600; font-size: 11px; color: var(--bw-text-2); }
/* ENTRÉES orange */
.bw-bj-cat-entrees { background: linear-gradient(165deg, rgba(245,130,31,.12), rgba(245,130,31,.02)); border-color: rgba(245,130,31,.4); }
.bw-bj-cat-entrees .bw-bj-cat-name { color: var(--bj-orange); }
.bw-bj-cat-entrees.selected { border: 2px solid var(--bj-orange); box-shadow: 0 0 0 4px rgba(245,130,31,.15); background: linear-gradient(165deg, rgba(245,130,31,.22), rgba(245,130,31,.05)); }
/* ANNIVERSAIRES magenta */
.bw-bj-cat-anniv { background: linear-gradient(165deg, rgba(240,86,143,.10), rgba(240,86,143,.02)); border-color: rgba(240,86,143,.4); }
.bw-bj-cat-anniv .bw-bj-cat-name { color: var(--bj-magenta); }
.bw-bj-cat-anniv.selected { border: 2px solid var(--bj-magenta); box-shadow: 0 0 0 4px rgba(240,86,143,.15); background: linear-gradient(165deg, rgba(240,86,143,.20), rgba(240,86,143,.04)); }
.bw-bj-cat.selected::after { content: '✓'; position: absolute; top: 10px; right: 10px; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 13px; color: #0a0f1a; }
.bw-bj-cat-entrees.selected::after { background: var(--bj-orange); }
.bw-bj-cat-anniv.selected::after { background: var(--bj-magenta); }

/* Séparateur de section « CHOISIS TA DURÉE / FORMULE » */
.bw-bj-sec { display: flex; align-items: center; gap: 9px; margin-bottom: 13px; }
.bw-bj-sec-label { font-family: 'Montserrat'; font-weight: 900; font-size: 12px; letter-spacing: 1.5px; color: var(--bj-orange); }
.bw-bj-sec-line { flex: 1; height: 1px; background: rgba(245,130,31,.25); }
.bw-root.bw-bigajump .bw-bj-cats-host[data-cat="anniv"] .bw-bj-sec-label { color: var(--bj-magenta); }
.bw-root.bw-bigajump .bw-bj-cats-host[data-cat="anniv"] .bw-bj-sec-line { background: rgba(240,86,143,.25); }

/* Cartes durée / formule (les <option> rendues en cartes) */
.bw-bj-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.bw-bj-opt {
  display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  background: var(--bw-surface); border: 1px solid rgba(255,255,255,.07); border-radius: 16px;
  padding: 14px 14px; cursor: pointer; color: var(--bw-text); font-family: 'Montserrat', sans-serif;
  position: relative; transition: border-color .15s, box-shadow .15s, transform .1s; text-align: left;
}
.bw-bj-opt:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.18); }
.bw-bj-opt-name { font-weight: 900; font-size: 17px; }
.bw-bj-opt-price { font-weight: 800; font-size: 13px; color: var(--bj-orange); background: rgba(245,130,31,.14); padding: 3px 8px; border-radius: 8px; white-space: nowrap; }
.bw-bj-opt.selected { border: 2px solid var(--bj-orange); box-shadow: 0 0 0 4px rgba(245,130,31,.16); }
.bw-bj-opt.selected::after { content: '✓'; position: absolute; top: 8px; right: 8px; width: 20px; height: 20px; border-radius: 50%; background: var(--bj-orange); color: #0a0f1a; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 12px; }
.bw-root.bw-bigajump .bw-bj-cats-host[data-cat="anniv"] .bw-bj-opt-price { color: var(--bj-magenta); background: rgba(240,86,143,.14); }
.bw-root.bw-bigajump .bw-bj-cats-host[data-cat="anniv"] .bw-bj-opt.selected { border-color: var(--bj-magenta); box-shadow: 0 0 0 4px rgba(240,86,143,.16); }
.bw-root.bw-bigajump .bw-bj-cats-host[data-cat="anniv"] .bw-bj-opt.selected::after { background: var(--bj-magenta); }
.bw-root.bw-bigajump .bw-bj-cats-host[data-cat="anniv"] .bw-bj-opts { grid-template-columns: 1fr; }
.bw-root.bw-bigajump .bw-bj-cats-host[data-cat="anniv"] .bw-bj-opt-name { font-size: 14px; }

@media (min-width: 640px) { .bw-bj-opts { grid-template-columns: repeat(3, 1fr); } }

/* ---- Hero logo (image détourée) au lieu du wordmark, si widget_branding.hero_logo (ex BVR) ---- */
.bw-hero-logo { display: block; max-height: 72px; max-width: 70%; margin: 2px auto 4px; object-fit: contain; }
@media (min-width: 640px) { .bw-hero-logo { max-height: 84px; } }

/* PZ_INFOBTN_FIX (29jun) : bouton (i) en haut-droite -> ne chevauche plus le badge prix (haut-gauche) ; coche selection en bas-droite. */
.bw-info-btn { left: auto !important; right: 8px !important; }
.bw-activity-card.selected::before { top: auto !important; bottom: 10px !important; }

/* === PZ_FEATURED (29jun) · carte expérience phare + pilule de section ◆ (néon, écran 1) === */
.bw-root.bw-neon .bw-activity-card.bw-featured { grid-column: 1 / -1; }
.bw-root.bw-neon .bw-activity-card.bw-featured .bw-activity-cover { aspect-ratio: 16 / 9; }
.bw-root.bw-neon .bw-activity-card.bw-featured .bw-activity-name { font-size: 19px; }
.bw-root.bw-neon .bw-featured-badge {
  position: absolute; top: 10px; left: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, var(--bw-primary), var(--bw-primary-2));
  color: #06121a; font-weight: 800; font-size: 10px; letter-spacing: .06em;
  padding: 5px 11px; border-radius: 99px; text-transform: uppercase;
  box-shadow: 0 0 16px color-mix(in srgb, var(--bw-primary) 55%, transparent);
}
/* prix en bas-droite sur la carte phare (ne chevauche pas le badge ★) */
.bw-root.bw-neon .bw-activity-card.bw-featured .bw-activity-price-badge { top: auto; bottom: 10px; right: 10px; left: auto; }

/* En-tête de section en pilule arrondie ◆ (au lieu du filet à gauche) */
.bw-root.bw-neon .bw-step1-section-title {
  border-left: none; width: auto; display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 99px;
  background: color-mix(in srgb, var(--bw-primary) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--bw-primary) 35%, transparent);
  color: var(--bw-primary);
}
.bw-root.bw-neon .bw-step1-section-title::before { content: '◆'; font-size: 9px; opacity: .9; }

/* === PZ_HERO_PANEL (29jun) · hero panneau glass + eyebrow + logo glow (néon, match maquette) === */
.bw-root.bw-neon .bw-hero {
  max-height: none; height: auto;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 18px 22px; margin: 4px 0 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--bw-border); border-radius: 18px; border-bottom: 1px solid var(--bw-border);
}
.bw-root.bw-neon .bw-hero:has(.bw-hero-logo)::before {
  content: '\26A1 RÉSERVATION EN LIGNE';
  font-weight: 800; font-size: 9px; letter-spacing: 3px; color: rgba(255,255,255,.55);
}
.bw-root.bw-neon .bw-hero-logo { max-height: 76px; filter: drop-shadow(0 0 16px color-mix(in srgb, var(--bw-primary) 45%, transparent)); }

/* PZ_HERO_CENTER (29jun) : reset width heritee (calc 100%+32px) -> plus de debordement lateral, hero centre */
.bw-root.bw-neon .bw-hero { width: 100%; max-width: 100%; box-sizing: border-box; }

/* === PZ_BJ_POLISH (29jun) · prix carte catégorie + récap footer BigAJump === */
.bw-root.bw-bigajump .bw-bj-cat-price { display:block; margin-top:8px; font-weight:800; font-size:11px; }
.bw-root.bw-bigajump .bw-bj-cat-entrees .bw-bj-cat-price { color: var(--bj-orange); }
.bw-root.bw-bigajump .bw-bj-cat-anniv .bw-bj-cat-price { color: var(--bj-magenta); }
.bw-root.bw-bigajump .bw-footer:has(.bw-bj-recap) { flex-direction: column; gap: 10px; align-items: stretch; }
.bw-bj-recap { display:flex; justify-content:space-between; align-items:center; width:100%; background:#0f1828; border:1px solid rgba(255,255,255,.07); border-radius:14px; padding:9px 14px; box-sizing:border-box; }
.bw-bj-recap-lbl { font-size:12px; color:#8492AB; font-weight:600; }
.bw-bj-recap-val { font-size:13px; color:#EAF0F8; font-weight:800; font-family:'Montserrat',sans-serif; }

/* PZ_GAMEPERF_3jul : liste de jeux longue (BVR 62) · ne peint pas les cartes hors-ecran = scroll fluide */
.bw-game-card{content-visibility:auto;contain-intrinsic-size:auto 210px;}

/* PZ_WAITLIST 8jul : creneau complet cliquable -> liste d attente */
.bw-slot-visual.bw-slot-full { cursor: pointer; opacity: .72; }
.bw-slot-visual.bw-slot-full:hover { transform: translateY(-1px); border-color: rgba(91,140,255,.5); box-shadow: 0 4px 14px rgba(0,0,0,.3); filter: none; }
.bw-slot-wl-hint { display:inline-block; margin-top:5px; font-size:10px; font-weight:800; letter-spacing:.03em; color:#5b8cff; background:rgba(91,140,255,.14); padding:3px 8px; border-radius:999px; }

/* =====================================================================
   PZ_DS_V3_RESA_8jul · Mise a niveau DA premium Pulzar « Cinq Mondes »
   du tunnel de reservation public (source : admin/_design/pz-ds.css v3 +
   module Animation refondu + app mobile reskinee).
   -------------------------------------------------------------------
   CARROSSERIE UNIQUEMENT : 100% CSS, scope STRICT .bw-root.bw-neon.
   Aucune logique / calcul / money-path touche. Le skin neon est desormais
   le defaut (JS PZ_DS_V3_DEFAULT_8jul) -> TOUS les tenants en heritent
   (sauf ?skin=off ou bigajump). Theme par tenant via --bw-primary (jamais
   de couleur de marque codee en dur). Objectif : fond aurora sombre,
   verre, halos, Space Grotesk (titres/chiffres) + Inter (corps),
   gros CTA >=56px mobile-first, calendrier + recap soignes, 0 fuite cyan.
   ===================================================================== */

/* ---- 1. Tokens : base sombre v3 + remap de l'ancien accent cyan ------
   L'ancien --bw-accent (#22d3ee cyan) fuit sur badges, labels lock,
   bannieres, carte joueurs. On le remappe sur la primaire tenant ->
   toute la carrosserie devient monochrome-marque (zero cyan parasite). */
.bw-root.bw-neon {
  --bw-bg: #0b0f1a;
  /* remap sur la primaire de MARQUE (jamais primary-2 : certains tenants
     configurent un accent2 cyan -> fuite sur liens CGV / pickers. Le
     degrade --bw-grad garde primary->primary-2 pour boutons/badges). */
  --bw-accent: var(--bw-primary);
  --bw-on-accent: var(--bw-on-primary, #06121a);
  --bw-success: #5ad19a;              /* le vert « ok » reste semantique */
  --bw-radius: 16px;
  --bw-radius-sm: 12px;
}
/* liens CGV + pickers de duree/jeux : color/border/bg cyan inline hardcode
   -> harmonises sur la primaire de marque (carrosserie only). */
.bw-root.bw-neon .bw-cgv-link { color: var(--bw-primary) !important; }
.bw-root.bw-neon .bw-dur-btn[style*="rgba(34,211,238"],
.bw-root.bw-neon .bw-dur-pick[style*="rgba(34,211,238"] {
  border-color: color-mix(in srgb, var(--bw-primary) 55%, transparent) !important;
  background: color-mix(in srgb, var(--bw-primary) 12%, transparent) !important;
  color: var(--bw-primary) !important;
}

/* ---- 2. Fond aurora (remplace le dot-grid) --------------------------
   Halos violet(primaire)/rose/vert en couches, fixes, fideles a
   PZ_SKIN_AURORA de pz-ds.css. Tinte par la primaire tenant. */
.bw-root.bw-neon {
  background-color: #0b0f1a;
  background-image:
    radial-gradient(760px 540px at 6% -6%, color-mix(in srgb, var(--bw-primary) 22%, transparent), transparent 70%),
    radial-gradient(680px 500px at 98% 0%, rgba(224,86,138,.10), transparent 70%),
    radial-gradient(860px 560px at 50% 110%, rgba(47,138,91,.07), transparent 72%),
    radial-gradient(560px 420px at 90% 92%, color-mix(in srgb, var(--bw-primary) 10%, transparent), transparent 72%);
  background-size: auto, auto, auto, auto;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
html.bw-neon, html.bw-neon body { background: #0b0f1a; }

/* ---- 3. Titres / hierarchie typo (Space Grotesk = display/chiffres) -- */
.bw-root.bw-neon .bw-step-title { font-weight: 700; letter-spacing: -.5px; font-size: 26px; line-height: 1.08; }
.bw-root.bw-neon .bw-step-sub { font-size: 14px; }

/* ---- 4. Carte JOUEURS : tue le cyan inline (background + border) -----
   Le markup pose un style inline cyan (rgba(34,211,238)+var(--bw-accent)).
   On force le verre marque. !important necessaire (inline background). */
.bw-root.bw-neon .bw-field-players {
  background: linear-gradient(150deg,
    color-mix(in srgb, var(--bw-primary) 10%, var(--bw-surface)),
    color-mix(in srgb, var(--bw-primary) 3%, var(--bw-surface))) !important;
  border: 1px solid color-mix(in srgb, var(--bw-primary) 40%, transparent) !important;
  border-radius: 18px !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 8px 26px rgba(0,0,0,.28);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.bw-root.bw-neon .bw-places-val { color: var(--bw-primary); }
.bw-root.bw-neon .bw-places-btn {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--bw-surface-2); border: 1px solid var(--bw-border); color: var(--bw-text);
  font-size: 22px; transition: border-color .15s, background .15s, transform .1s;
}
.bw-root.bw-neon .bw-places-btn:hover:not(:disabled) {
  border-color: var(--bw-primary); color: var(--bw-primary);
  background: color-mix(in srgb, var(--bw-primary) 10%, var(--bw-surface-2));
}
.bw-root.bw-neon .bw-places-btn:active:not(:disabled) { transform: scale(.94); }
/* encart alloc (escape) : cyan inline -> primaire */
.bw-root.bw-neon .bw-alloc-info {
  background: color-mix(in srgb, var(--bw-primary) 8%, transparent) !important;
  border-color: color-mix(in srgb, var(--bw-primary) 25%, transparent) !important;
}
.bw-root.bw-neon .bw-alloc-info strong { color: var(--bw-primary) !important; }

/* ---- 5. Bannieres multi / promo : cyan hardcode -> primaire ---------- */
.bw-root.bw-neon .bw-multi-banner {
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--bw-primary) 15%, transparent),
    color-mix(in srgb, var(--bw-primary) 6%, transparent)) !important;
  border: 1px solid color-mix(in srgb, var(--bw-primary) 30%, transparent) !important;
  border-radius: 12px;
}

/* ---- 6. CTA >=56px mobile-first + finition premium ------------------- */
.bw-root.bw-neon .bw-btn { border-radius: 14px; font-weight: 700; letter-spacing: .01em; }
.bw-root.bw-neon .bw-btn-primary {
  background: var(--bw-grad);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--bw-primary) 42%, transparent), inset 0 1px 0 rgba(255,255,255,.18);
}
.bw-root.bw-neon .bw-btn-primary:hover:not(:disabled) { transform: translateY(-1px); }
@media (max-width: 640px) {
  .bw-root.bw-neon .bw-btn { min-height: 56px; font-size: 16px; }
  .bw-root.bw-neon .bw-btn-ghost { min-height: 56px; padding: 0 18px; }
  .bw-root.bw-neon .bw-footer { padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px)); }
}

/* ---- 7. Calendrier : cellules arrondies, cibles tactiles, prix lisible */
.bw-root.bw-neon .bw-cal-card { border-radius: 18px; padding: 14px; }
.bw-root.bw-neon .bw-cal-cell { border-radius: 13px; min-height: 54px; transition: border-color .14s, box-shadow .14s, background .14s, transform .1s; }
.bw-root.bw-neon .bw-cal-cell:active:not([disabled]):not(.bw-cal-past) { transform: scale(.96); }
.bw-root.bw-neon .bw-cal-day { font-weight: 700; }
.bw-root.bw-neon .bw-cal-price { font-weight: 700; opacity: .92; }
.bw-root.bw-neon .bw-cal-selected .bw-cal-price { color: var(--bw-on-primary); opacity: 1; }
.bw-root.bw-neon .bw-cal-weekday { font-weight: 700; letter-spacing: .06em; }

/* ---- 8. Creneaux : plus de respiration + selection nette ------------- */
.bw-root.bw-neon .bw-slot-c, .bw-root.bw-neon .bw-slot { border-radius: 14px; transition: border-color .14s, box-shadow .14s, transform .1s; }
.bw-root.bw-neon .bw-slot-c:active:not(.bw-slot-disabled), .bw-root.bw-neon .bw-slot:active:not(.bw-slot-disabled) { transform: scale(.98); }
.bw-root.bw-neon .bw-slot-visual { border-radius: 14px; }
/* creneau complet -> liste d'attente : hint sur primaire (etait #5b8cff) */
.bw-root.bw-neon .bw-slot-wl-hint {
  color: var(--bw-primary);
  background: color-mix(in srgb, var(--bw-primary) 15%, transparent);
}
.bw-root.bw-neon .bw-slot-visual.bw-slot-full:hover {
  border-color: color-mix(in srgb, var(--bw-primary) 50%, transparent);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--bw-primary) 18%, transparent);
}

/* ---- 9. Recap + total + detail TVA/sales tax ------------------------- */
.bw-root.bw-neon .bw-recap { border-radius: 18px; padding: 16px 18px; box-shadow: 0 14px 40px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.05); }
.bw-root.bw-neon .bw-recap-row { border-bottom-color: color-mix(in srgb, var(--bw-primary) 13%, transparent); padding: 10px 0; }
.bw-root.bw-neon .bw-recap-key { letter-spacing: .07em; }
.bw-root.bw-neon .bw-total { border-radius: 18px; padding: 16px 20px; box-shadow: 0 0 34px color-mix(in srgb, var(--bw-primary) 32%, transparent), inset 0 1px 0 rgba(255,255,255,.2); }
.bw-root.bw-neon .bw-total-key { font-weight: 700; opacity: .9; }
/* detail taxe (FR: TVA incluse · US: sales tax additive 8.25%) : encart verre */
.bw-root.bw-neon .bw-total-vat-details {
  background: color-mix(in srgb, var(--bw-primary) 6%, transparent);
  border: 1px solid var(--bw-border); border-radius: 12px;
  padding: 10px 12px; margin-top: 10px !important;
}
.bw-root.bw-neon .bw-total-vat-details summary { color: var(--bw-primary) !important; }

/* ---- 10. Etats systematiques : chargement / vide / erreur ------------ */
.bw-root.bw-neon .bw-loading, .bw-root.bw-neon .bw-empty { padding: 48px 20px; }
.bw-root.bw-neon .bw-empty-title { color: var(--bw-text); font-size: 17px; font-weight: 700; }
.bw-root.bw-neon .bw-spinner { border-color: var(--bw-border); border-top-color: var(--bw-primary); width: 28px; height: 28px; }
.bw-root.bw-neon .bw-error { border-radius: 12px; padding: 14px 16px; }

/* ---- 11. Champs coordonnees : verre marque + focus halo ------------- */
.bw-root.bw-neon .bw-input, .bw-root.bw-neon .bw-select {
  border-radius: 13px; min-height: 50px;
}
.bw-root.bw-neon .bw-input:focus, .bw-root.bw-neon .bw-select:focus {
  box-shadow: var(--bw-halo-ring);
}
.bw-root.bw-neon .bw-cgv { border-radius: 14px; }

/* ---- 12. Desktop : carte centree, aurora derriere ------------------- */
@media (min-width: 640px) {
  .bw-root.bw-neon { border-radius: 24px; box-shadow: 0 40px 90px -24px rgba(0,0,0,.72); }
}


/* PZ_SLOTFIX_17jul · Creneaux coupes sur les bords (signale par Aymeric, bvr, 17 juil).
   CAUSE MESUREE : `repeat(N, 1fr)` vaut `repeat(N, minmax(auto, 1fr))`. Le minimum d'une piste
   est le min-content de sa cellule la plus large. Le libelle « Rejoindre <jeu> » (176px) bloquait
   2 colonnes a 194px -> grille 741px dans un conteneur de 566px -> 175px coupes, SANS scroll
   horizontal (donc invisible, et l'utilisateur ne peut pas les recuperer).
   Portee volontairement limitee aux grilles de creneaux : le calendrier, les activites et les
   cartes cadeau utilisent le meme motif mais n'ont pas le bug (aucun libelle long). */
.bw-slot-c, .bw-slot { min-width: 0; }
/* La regle d'origine prevoyait deja nowrap + text-overflow:ellipsis, mais elle ne se declenchait
   jamais faute de contrainte de largeur. A 107px l'ellipse donnerait « Rejoindre Outb… », inutile :
   on replie pour garder le nom du jeu lisible. */
.bw-slot-c-join { min-width: 0; white-space: normal; overflow-wrap: anywhere; }
