@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@400;500;600&display=swap');

/* ── intl-tel-input drapeaux ─────────────────────────────── */
.iti__flag { background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png") !important; }
@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){
  .iti__flag { background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png") !important; }
}

/* ── Variables ───────────────────────────────────────────── */
:root {
  --black: #0a0a0a; --yellow: #F5C800; --red: #D40000;
  --white: #ffffff; --grey-bg: #f2f2f2; --grey-text: #555;
  --radius: 10px; --shadow: 0 2px 12px rgba(0,0,0,0.10);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Barlow', sans-serif; background: var(--grey-bg); color: var(--black); min-height: 100vh; padding-bottom: 40px; }

/* ── Header ──────────────────────────────────────────────── */
.header { background: var(--black); padding: 14px 20px 10px; display: flex; align-items: center; gap: 14px; position: sticky; top: 0; z-index: 100; }
.header-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; letter-spacing: 1px; color: var(--white); }
.header-logo span.y { color: var(--yellow); }
.header-logo span.r { color: var(--red); }
.header-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #aaa; margin-top: 1px; }
.belgian-bar { height: 4px; display: flex; }
.belgian-bar div { flex: 1; }
.belgian-bar .b1 { background: var(--black); }
.belgian-bar .b2 { background: var(--yellow); }
.belgian-bar .b3 { background: var(--red); }

/* ── Progress ────────────────────────────────────────────── */
.progress-wrap { background: var(--black); padding: 12px 20px 16px; }
.steps { display: flex; align-items: center; }
.step-item { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.step-item:not(:last-child)::after { content: ''; position: absolute; top: 14px; left: 50%; width: 100%; height: 2px; background: #333; z-index: 0; transition: background 0.3s; }
.step-item.done:not(:last-child)::after { background: var(--yellow); }
.step-circle { width: 28px; height: 28px; border-radius: 50%; background: #333; color: #888; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: all 0.3s; }
.step-item.active .step-circle { background: var(--red); color: var(--white); box-shadow: 0 0 0 3px rgba(212,0,0,0.25); }
.step-item.done .step-circle { background: var(--yellow); color: var(--black); }
.step-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: #666; margin-top: 5px; text-align: center; transition: color 0.3s; }
.step-item.active .step-label { color: #ddd; }
.step-item.done .step-label { color: var(--yellow); }

/* ── Match banner ────────────────────────────────────────── */
.match-banner { display: none; background: #111; padding: 8px 20px; align-items: center; justify-content: space-between; gap: 10px; }
.match-banner.visible { display: flex; }
.match-banner-teams { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 16px; color: var(--white); letter-spacing: 0.5px; }
.match-banner-teams .vs { font-weight: 400; font-size: 12px; color: #888; margin: 0 5px; }
.match-banner-meta { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; color: #888; letter-spacing: 0.5px; text-align: right; }
.match-banner-meta strong { color: var(--yellow); }

/* ── Container ───────────────────────────────────────────── */
.container { max-width: 480px; margin: 0 auto; padding: 20px 16px 0; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 22px; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 4px; margin-top: 4px; }
.section-title span { color: var(--red); }
.section-hint { font-size: 13px; color: var(--grey-text); margin-bottom: 16px; }
.step-panel { display: none; }
.step-panel.active { display: block; }

/* ── Match cards ─────────────────────────────────────────── */
.match-cards { display: flex; flex-direction: column; gap: 10px; }
.match-card { background: #fff; border-radius: var(--radius); border: 2px solid transparent; box-shadow: var(--shadow); padding: 14px 16px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.match-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: #ddd; transition: background 0.2s; }
.match-card.selected { border-color: var(--red); box-shadow: 0 2px 16px rgba(212,0,0,0.12); }
.match-card.selected::before { background: var(--red); }
.match-card.is-complet { opacity: 0.65; cursor: not-allowed; }
.match-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.match-competition { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grey-text); }
.match-date { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: 0.5px; }
.match-teams { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: 0.5px; margin: 4px 0 6px; }
.match-teams .vs { font-size: 13px; font-weight: 400; color: var(--grey-text); margin: 0 6px; }
.match-footer { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.match-badge { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; background: var(--grey-bg); color: var(--grey-text); }
.match-badge.complet { background: #fce4ec; color: #c62828; }
.match-places { margin-top: 10px; }
.match-places-bar-wrap { background: #e8e8e8; border-radius: 4px; height: 5px; overflow: hidden; margin-bottom: 4px; }
.match-places-bar { height: 100%; border-radius: 4px; }
.match-places-bar.green  { background: #43a047; }
.match-places-bar.orange { background: #f57c00; }
.match-places-bar.red    { background: var(--red); }
.match-places-text { display: flex; justify-content: space-between; font-size: 11px; color: var(--grey-text); }
.match-places-text strong { color: var(--black); }
.match-check { position: absolute; top: 12px; right: 14px; width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: white; display: none; align-items: center; justify-content: center; font-size: 12px; }
.match-card.selected .match-check { display: flex; }

/* ── Form ────────────────────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-text); margin-bottom: 5px; display: block; }
.form-input { width: 100%; padding: 11px 14px; border: 1.5px solid #ddd; border-radius: 8px; font-family: 'Barlow', sans-serif; font-size: 15px; background: var(--white); color: var(--black); transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.form-input:focus { outline: none; border-color: var(--red); }
.form-input.error { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 4px; display: none; }
.dob-minor-notice { display: none; background: #fff8e1; border: 1px solid #ffe082; border-radius: 7px; padding: 8px 12px; font-size: 12px; color: #5d4037; margin-top: 6px; line-height: 1.4; }

/* ── intl-tel-input ──────────────────────────────────────── */
.tel-wrap { position: relative; }
.tel-wrap .iti { width: 100%; }
.tel-wrap .iti__selected-flag { height: 100%; border-radius: 8px 0 0 8px; background: #f5f5f5; border-right: 1px solid #ddd; padding: 0 8px 0 10px; }
.tel-wrap .iti__flag-container { top: 0; bottom: 0; }
.tel-wrap #f-tel { padding-left: 90px !important; height: 46px; }
.tel-valid-check { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 18px; color: #43a047; display: none; pointer-events: none; z-index: 5; }
.tel-wrap.valid .tel-valid-check { display: block; }
.tel-wrap.valid #f-tel { border-color: #43a047; padding-right: 36px !important; }
.iti__country-list { border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); border: 1px solid #ddd; font-family: 'Barlow', sans-serif; font-size: 14px; max-height: 220px; }
.iti__country.iti__highlight { background: #fff3f3; }

/* ── Departure ───────────────────────────────────────────── */
.departure-options { display: flex; flex-direction: column; gap: 8px; }
.departure-option { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--white); border-radius: 8px; border: 1.5px solid #ddd; cursor: pointer; transition: border-color 0.2s; }
.departure-option input[type="radio"] { display: none; }
.departure-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #ccc; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.2s; }
.departure-radio::after { content: ''; width: 9px; height: 9px; border-radius: 50%; background: var(--red); display: none; }
.departure-option.selected { border-color: var(--red); }
.departure-option.selected .departure-radio { border-color: var(--red); }
.departure-option.selected .departure-radio::after { display: block; }
.departure-info { flex: 1; }
.departure-city { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; }
.departure-time { font-size: 12px; color: var(--grey-text); margin-top: 1px; }

/* ── Status ──────────────────────────────────────────────── */
.status-options { display: flex; flex-direction: column; gap: 8px; }
.status-option { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--white); border-radius: 8px; border: 1.5px solid #ddd; cursor: pointer; transition: border-color 0.2s; }
.status-option input { display: none; }
.status-option.selected { border-color: var(--red); }
.status-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.status-info { flex: 1; }
.status-info .status-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; }
.status-info .status-desc { font-size: 12px; color: var(--grey-text); margin-top: 1px; }
.status-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px; color: var(--red); flex-shrink: 0; }
.subform-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-text); }

/* ── Subform / Token ─────────────────────────────────────── */
.subform { background: var(--grey-bg); border-radius: 8px; padding: 14px; margin-top: 14px; display: none; }
.subform.visible { display: block; }
.token-box { background: var(--black); border-radius: 10px; padding: 16px; margin-top: 14px; display: none; }
.token-box.visible { display: block; }
.token-box-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 8px; }
.token-display { display: flex; align-items: center; gap: 10px; background: #1a1a1a; border-radius: 8px; padding: 12px 14px; }
.token-code { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; letter-spacing: 4px; color: var(--yellow); flex: 1; }
.token-copy { background: var(--yellow); color: var(--black); border: none; border-radius: 6px; padding: 6px 12px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; }
.token-hint { font-size: 12px; color: #888; margin-top: 8px; line-height: 1.4; }

/* ── Recap ───────────────────────────────────────────────── */
.recap-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 14px; }
.recap-header { background: var(--black); padding: 10px 16px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--yellow); }
.recap-body { padding: 14px 16px; }
.recap-row { display: flex; justify-content: space-between; align-items: flex-start; padding: 7px 0; border-bottom: 1px solid var(--grey-bg); font-size: 14px; gap: 10px; }
.recap-row:last-child { border-bottom: none; }
.recap-key { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--grey-text); flex-shrink: 0; }
.recap-val { text-align: right; font-weight: 600; }
.recap-price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; background: var(--black); }
.recap-price-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: #888; }
.recap-price-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; color: var(--yellow); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-row { display: flex; gap: 10px; margin-top: 20px; }
.btn { flex: 1; padding: 14px 10px; border-radius: 8px; border: none; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 0.5px; cursor: pointer; transition: opacity 0.2s, transform 0.1s; }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:disabled { background: #ccc; cursor: not-allowed; }
.btn-secondary { background: var(--black); color: var(--white); flex: 0 0 auto; padding: 14px 18px; }
.notice { background: #fff9e6; border: 1px solid #ffe082; border-radius: 8px; padding: 10px 14px; font-size: 13px; color: #5d4037; margin-bottom: 14px; }

/* ── Paiement ────────────────────────────────────────────── */
.pay-summary { background: var(--black); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 20px; text-align: center; }
.pay-summary-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 4px; }
.pay-summary-amount { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 48px; color: var(--yellow); line-height: 1; }
.pay-summary-detail { font-size: 12px; color: #666; margin-top: 6px; }
.pay-methods { margin-bottom: 16px; }
.pay-method-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-text); margin-bottom: 10px; }
.pay-method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-method-option { background: var(--white); border: 2px solid #ddd; border-radius: var(--radius); padding: 14px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s; }
.pay-method-option input { display: none; }
.pay-method-option.selected { border-color: var(--red); box-shadow: 0 2px 12px rgba(212,0,0,0.10); }
.pay-method-logo { height: 32px; display: flex; align-items: center; justify-content: center; }
.pay-method-logo img { max-height: 32px; max-width: 80px; object-fit: contain; }
.pay-method-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; color: var(--grey-text); }
.pay-method-option.selected .pay-method-name { color: var(--red); }
.pay-secure { background: #f0f7f0; border: 1px solid #c8e6c9; border-radius: 8px; padding: 10px 14px; font-size: 12px; color: #2e7d32; margin-bottom: 4px; line-height: 1.5; }
.pay-fail-notice { display: none; background: #fce4ec; border: 1px solid #ef9a9a; border-radius: 8px; padding: 12px 14px; font-size: 13px; color: #c62828; margin-top: 16px; text-align: center; line-height: 1.5; }
.pay-fail-notice.visible { display: block; }

/* ── Success ─────────────────────────────────────────────── */
.success-screen { text-align: center; padding: 30px 10px; display: none; }
.success-screen.active { display: block; }
.success-icon { font-size: 60px; margin-bottom: 16px; }
.success-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 32px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.success-title span { color: var(--red); }
.success-sub { font-size: 15px; color: var(--grey-text); line-height: 1.5; margin-bottom: 24px; }
.success-diab { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px; letter-spacing: 2px; margin-top: 30px; }
.success-diab .y { color: var(--yellow); }
.success-diab .r { color: var(--red); }

/* ── Mock Mollie overlay ─────────────────────────────────── */
.mollie-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; padding: 16px; }
.mollie-overlay.active { display: flex; }
.mollie-modal { background: #fff; border-radius: 14px; width: 100%; max-width: 400px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); animation: mollieIn 0.25s ease; }
@keyframes mollieIn { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.mollie-header { background: #f7f7f7; border-bottom: 1px solid #eee; padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; }
.mollie-secure { font-size: 11px; color: #43a047; font-weight: 600; }
.mollie-merchant { padding: 14px 20px 4px; font-size: 12px; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.mollie-amount-block { padding: 8px 20px 14px; border-bottom: 1px solid #f0f0f0; }
.mollie-amount-label { font-size: 12px; color: #aaa; margin-bottom: 2px; }
.mollie-amount-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 36px; color: #111; }
.mollie-method-block { padding: 12px 20px; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 10px; }
.mollie-method-label { font-size: 12px; color: #aaa; flex-shrink: 0; }
.mollie-method-name { font-weight: 700; font-size: 15px; color: #111; }
.mollie-desc { padding: 10px 20px; font-size: 12px; color: #888; border-bottom: 1px solid #f0f0f0; }
.mollie-simulate-title { text-align: center; font-size: 11px; color: #bbb; letter-spacing: 1px; text-transform: uppercase; padding: 14px 20px 8px; }
.mollie-simulate-btns { display: flex; gap: 10px; padding: 0 20px 16px; }
.mollie-btn { flex: 1; padding: 13px 10px; border: none; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: opacity 0.2s; }
.mollie-btn:active { opacity: 0.8; }
.mollie-btn-success { background: #43a047; color: #fff; }
.mollie-btn-fail { background: #e53935; color: #fff; }
.mollie-footer { padding: 0 20px 16px; text-align: center; }
.mollie-cancel { font-size: 13px; color: #aaa; cursor: pointer; text-decoration: underline; }

/* ── Panier ──────────────────────────────────────────────── */
.cart-badge-wrap { position: fixed; bottom: 24px; right: 20px; z-index: 200; }
.cart-fab {
  display: flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  padding: 12px 20px; border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 0.5px;
  cursor: pointer; border: none;
  transition: transform 0.15s;
}
.cart-fab:active { transform: scale(0.97); }
.cart-fab-count {
  background: var(--red); color: var(--white);
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 12px; display: inline-flex;
  align-items: center; justify-content: center;
}
.cart-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 10px 0;
  border-bottom: 1px solid var(--grey-bg);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name { font-weight: 600; font-size: 14px; }
.cart-item-detail { font-size: 12px; color: var(--grey-text); margin-top: 2px; }
.cart-item-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cart-item-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px; color: var(--red); }
.cart-item-remove { background: none; border: none; color: #ccc; font-size: 16px; cursor: pointer; padding: 2px 4px; }
.cart-item-remove:hover { color: var(--red); }
.cart-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0 0; margin-top: 8px;
  border-top: 1px solid #eee;
}
.cart-total-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--grey-text); }
.cart-total-val { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; color: var(--black); }

/* Bouton "Ajouter une personne" */
.btn-add { background: #111; color: var(--white); }

/* ── Layout avec sidebar panier ──────────────────────────── */
.page-layout {
  display: flex;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}
.page-layout .container {
  flex: 1;
  min-width: 0;
  max-width: 480px;
  padding: 20px 16px 40px;
}

/* ── Sidebar panier (PC uniquement) ──────────────────────── */
.cart-sidebar {
  display: none; /* masqué sur mobile */
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 80px; /* sous le header sticky */
  margin: 20px 16px 0 8px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

@media (min-width: 780px) {
  .cart-sidebar { display: flex; flex-direction: column; }
  .page-layout { max-width: 760px; }
  .page-layout .container { max-width: 480px; }
}

.cart-sidebar-header {
  background: var(--black);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-sidebar-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.5px; color: var(--white);
}
.cart-sidebar-count {
  background: var(--red); color: var(--white);
  width: 22px; height: 22px; border-radius: 50%;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; justify-content: center;
}

.cart-sidebar-body {
  padding: 10px 14px;
  flex: 1;
  min-height: 80px;
}
.cart-empty {
  font-size: 13px; color: #bbb;
  text-align: center; padding: 20px 0;
}

/* Items panier */
.cart-item {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 8px; padding: 8px 0;
  border-bottom: 1px solid var(--grey-bg);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-name { font-weight: 600; font-size: 13px; }
.cart-item-detail { font-size: 11px; color: var(--grey-text); margin-top: 1px; }
.cart-item-right { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.cart-item-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; color: var(--red);
}
.cart-item-remove {
  background: none; border: none; color: #ccc;
  font-size: 14px; cursor: pointer; padding: 0 2px;
  line-height: 1;
}
.cart-item-remove:hover { color: var(--red); }

.cart-sidebar-footer {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--grey-bg);
}
.cart-sidebar-total {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 13px; font-weight: 600;
}
.cart-sidebar-total-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 20px; color: var(--black);
}

/* FAB mobile (quand sidebar masquée) */
.cart-fab-wrap {
  display: flex;
  position: fixed; bottom: 20px; right: 16px; z-index: 200;
}
@media (min-width: 780px) {
  .cart-fab-wrap { display: none; }
}
.cart-fab {
  display: flex; align-items: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 11px 18px; border-radius: 30px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  cursor: pointer; border: none;
}