  :root {
    --tm-accent: #7B2D3B;
    --tm-blue:   #1a1a1a;
    --tm-dark:   #1a1a1a;
    --tm-green:  #2d6b4f;
    --tm-red:    #7B2D3B;
    --tm-purple: #7B2D3B;
    --tm-bg:     #ffffff;
    --tm-border: #e8e8e8;
    --tm-sub:    #6b7280;
  }

  *, *::before, *::after { box-sizing: border-box; }

  .bb-page-body {
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    background: var(--tm-bg);
    color: var(--tm-dark);
    margin: 0;
    padding: 0;
  }

  /* ══ HERO ══ */
  .tm-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 7;
    overflow: hidden;
    background: var(--tm-dark);
  }
  @media (max-width: 767px) {
    .tm-hero { aspect-ratio: unset; min-height: 360px; }
  }
  .tm-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    opacity: .55;
  }
  .tm-hero__placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    opacity: .55;
  }
  .tm-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,.05) 0%, rgba(26,26,26,.88) 100%);
    pointer-events: none;
  }
  .tm-hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .tm-hero__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .tm-badge--genre {
    background: var(--tm-accent);
    color: #fff;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .tm-badge--live {
    background: var(--tm-red);
    color: #fff;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .tm-badge--live::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
    animation: tmPulse 1.4s ease-in-out infinite;
  }
  @keyframes tmPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .35; transform: scale(.65); }
  }
  .tm-hero__title {
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5.5vw, 62px);
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.03;
    letter-spacing: .01em;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
  }
  .tm-hero__sub {
    font-size: clamp(13px, 2vw, 17px);
    color: rgba(255,255,255,.82);
    margin: 0;
    letter-spacing: .02em;
  }
  .tm-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .tm-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.48);
    color: #fff;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background .2s, border-color .2s;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .tm-hero__btn:hover {
    background: rgba(255,255,255,.24);
    border-color: rgba(255,255,255,.75);
  }
  .tm-hero__btn svg { flex-shrink: 0; }

  /* ══ INFO BAR ══ */
  .tm-infobar {
    background: var(--tm-dark);
    border-bottom: 3px solid var(--tm-accent);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tm-infobar::-webkit-scrollbar { display: none; }
  .tm-infobar__inner {
    display: flex;
    align-items: stretch;
    min-width: max-content;
    padding: 0 12px;
  }
  .tm-infobar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 20px;
    color: rgba(255,255,255,.9);
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,.1);
    white-space: nowrap;
  }
  .tm-infobar__item:last-child { border-right: none; }
  .tm-infobar__item svg { color: #fff; flex-shrink: 0; }
  .tm-infobar__label {
    color: rgba(255,255,255,.48);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-right: 3px;
  }

  /* ══ SECTION WRAPPER ══ */
  .tm-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 16px;
  }

  /* ══ ACCORDION INFO ══ */
  .tm-info-accordion {
    margin: 24px auto;
    max-width: 880px;
    padding: 0 16px;
  }
  .tm-info-accordion__inner {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(26,26,26,.22);
  }
  .tm-info-accordion__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    color: #fff;
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .06em;
    text-transform: uppercase;
    gap: 10px;
  }
  .tm-info-accordion__btn-left {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .tm-chevron {
    flex-shrink: 0;
    transition: transform .3s ease;
  }
  .tm-info-accordion__btn[aria-expanded="true"] .tm-chevron {
    transform: rotate(180deg);
  }
  .tm-info-accordion__panel {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
  }
  .tm-info-accordion__panel.is-open {
    max-height: 700px;
    padding: 2px 20px 20px;
  }
  .tm-info-accordion__panel p,
  .tm-info-accordion__panel li {
    color: rgba(255,255,255,.88);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 8px;
  }

  /* ══ CTA ROW ══ */
  .tm-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 880px;
    margin: 0 auto 24px;
    padding: 0 16px;
  }
  .tm-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 13px 22px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: filter .2s, transform .15s;
    white-space: nowrap;
    line-height: 1;
  }
  .tm-cta-btn:hover { filter: brightness(1.09); transform: translateY(-1px); }
  .tm-cta-btn--blue  { background: var(--tm-blue); color: #fff; border-color: var(--tm-blue); }
  .tm-cta-btn--white { background: #fff; color: var(--tm-dark); border-color: var(--tm-dark); }

  /* ══ VENUE MAP ══ */
  .tm-venue-map {
    max-width: 880px;
    margin: 0 auto 24px;
    padding: 0 16px;
  }
  .tm-venue-map__label {
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--tm-sub);
    margin-bottom: 7px;
  }
  .tm-venue-map__img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
    display: block;
  }
  .tm-venue-map__note {
    font-size: 11px;
    color: var(--tm-sub);
    margin-top: 6px;
    font-style: italic;
  }

  /* ══ UNLOCKED OFFER ══ */
  .tm-unlocked {
    max-width: 880px;
    margin: 0 auto 20px;
    padding: 0 16px;
  }
  .tm-unlocked__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #5e1f2c 0%, #7B2D3B 100%);
    color: #fff;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 10px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(123,45,59,.38);
  }

  /* ══ TICKET SECTION ══ */
  .tm-tickets {
    max-width: 880px;
    margin: 0 auto 20px;
    padding: 0 16px;
  }
  .tm-tickets__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .tm-tickets__title {
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 900;
    font-size: clamp(22px, 4vw, 30px);
    text-transform: uppercase;
    color: var(--tm-dark);
    margin: 0;
    letter-spacing: .02em;
  }
  .tm-tickets__count-badge {
    background: var(--tm-dark);
    color: #fff;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 20px;
  }

  /* Filter pills */
  .tm-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }
  .tm-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid var(--tm-border);
    color: var(--tm-dark);
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
    white-space: nowrap;
    line-height: 1;
  }
  .tm-filter-pill.is-active,
  .tm-filter-pill:hover {
    background: var(--tm-blue);
    border-color: var(--tm-blue);
    color: #fff;
  }

  /* ══ TICKET LIST — Ticketmaster simple rows ══ */
  #ticketList {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border: 1.5px solid var(--tm-border);
    border-radius: 10px;
    overflow: hidden;
  }

  .ticket-card {
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--tm-border);
    transition: background .15s;
  }
  .ticket-card:last-child { border-bottom: none; }
  .ticket-card:hover { background: #faf8f8; }

  /* Row layout */
  .tm-trow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
  }
  .tm-trow__left {
    display: flex;
    align-items: center;
    gap: 11px;
    flex: 1;
    min-width: 0;
  }
  .tm-trow__dot {
    flex-shrink: 0;
  }
  .tm-trow__dot--standard { color: var(--tm-blue); }
  .tm-trow__dot--vip      { color: #7B2D3B; }
  .tm-trow__dot--premium  { color: var(--tm-purple); }
  .tm-trow__dot--standing { color: var(--tm-green); }

  .tm-trow__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .tm-trow__name {
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--tm-dark);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tm-trow__price {
    font-size: 13px;
    color: var(--tm-sub);
    font-weight: 500;
  }
  .tm-trow__sold {
    font-size: 13px;
    color: var(--tm-red);
    font-style: italic;
  }

  /* Stepper — pill with blue + button */
  .tm-trow__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    flex-shrink: 0;
  }
  .ticket-card__stepper {
    display: flex;
    align-items: center;
    border: 1.5px solid #c8cdd5;
    border-radius: 50px;
    padding: 3px 3px 3px 0;
    gap: 0;
    background: #fff;
    height: 46px;
  }
  .tm-minus {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    border-radius: 50%;
    transition: color .15s, background .15s;
  }
  .tm-minus:disabled { opacity: .35; cursor: not-allowed; }
  .tm-minus:hover:not(:disabled) { color: var(--tm-dark); background: rgba(0,0,0,.05); }
  .ticket-card__qty {
    min-width: 32px;
    text-align: center;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #111;
    user-select: none;
    padding: 0 4px;
    line-height: 1;
  }
  .tm-plus {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--tm-blue);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    border-radius: 50%;
    transition: background .15s;
  }
  .tm-plus:disabled { opacity: .4; cursor: not-allowed; }
  .tm-plus:hover:not(:disabled) { background: #333; }

  .ticket-card__consec {
    display: none;
    font-size: 11px;
    background: #f0e8e8;
    color: var(--tm-accent);
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    white-space: nowrap;
  }

  /* Sold-out state */
  .ticket-card[data-available="false"] { opacity: .55; }
  .ticket-card[data-available="false"] .ticket-card__stepper { display: none; }

  /* Best-available highlight */
  @keyframes tmHighlight {
    0%   { outline-color: var(--tm-blue); outline-offset: 2px; }
    80%  { outline-color: var(--tm-blue); }
    100% { outline-color: transparent; }
  }
  .ticket-card--highlight {
    animation: tmHighlight 1.8s ease-out forwards;
    outline: 2px solid transparent;
  }

  /* ══ FEES NOTE ══ */
  .tm-fees-note {
    margin-top: 14px;
    font-size: 12px;
    color: var(--tm-sub);
    line-height: 1.65;
  }

  /* ══ CART PREVIEW ══ */
  .tm-cart-preview {
    background: #fff;
    border: 1.5px solid var(--tm-border);
    border-radius: 10px;
    padding: 14px 18px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }
  .tm-cart-preview__count {
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--tm-dark);
  }
  .tm-cart-preview__limit {
    font-size: 12px;
    color: var(--tm-sub);
    font-weight: 600;
  }

  /* ══ TRUST BAND ══ */
  .tm-trust {
    max-width: 880px;
    margin: 0 auto 16px;
    padding: 0 16px;
  }
  .tm-trust__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--tm-border);
    border-bottom: 1px solid var(--tm-border);
    padding: 16px 0;
  }
  .tm-trust__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
    white-space: nowrap;
  }
  .tm-trust__check {
    width: 18px;
    height: 18px;
    background: var(--tm-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ══ STICKY FOOTER ══ */
  .tm-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: #fff;
    border-top: 3px solid var(--tm-accent);
    box-shadow: 0 -4px 22px rgba(0,0,0,.12);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .tm-sticky-footer.is-visible { transform: translateY(0); }
  .tm-sticky-footer__count {
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--tm-dark);
  }
  .tm-sticky-footer__limit {
    font-size: 12px;
    color: var(--tm-sub);
    margin-top: 1px;
  }
  .tm-sticky-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tm-accent);
    color: #fff;
    font-family: 'Barlow', system-ui, -apple-system, sans-serif;
    font-weight: 900;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(123,45,59,.48);
    white-space: nowrap;
    line-height: 1;
  }
  .tm-sticky-footer__cta:hover { background: #5e1f2c; transform: translateY(-1px); }
  .tm-sticky-footer__cta:disabled { opacity: .6; cursor: not-allowed; transform: none; }

  /* ══ TABS ══ */
  .tm-tabs {
    max-width: 880px;
    margin: 24px auto 0;
    padding: 0 16px 88px;
  }
  .tm-tabs__nav {
    display: flex;
    border-bottom: 2px solid var(--tm-border);
    margin-bottom: 20px;
  }
  .tm-tab-btn {
    padding: 11px 22px;
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    color: var(--tm-sub);
    transition: color .2s, border-color .2s;
    line-height: 1;
  }
  .tm-tab-btn.is-active {
    color: var(--tm-blue);
    border-bottom-color: var(--tm-blue);
  }
  .tm-tab-btn:hover:not(.is-active) { color: var(--tm-dark); }

  /* Fan-to-fan card */
  .tm-f2f-card {
    border: 1.5px solid var(--tm-border);
    border-radius: 12px;
    overflow: hidden;
    max-width: 480px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
  }
  .tm-f2f-card__top {
    background: linear-gradient(90deg, #1a1a1a 0%, #333333 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .tm-f2f-card__top-title {
    font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .tm-f2f-card__body {
    background: #fff;
    padding: 16px 20px;
  }
  .tm-f2f-card__body hr {
    border: none;
    border-top: 1px solid var(--tm-border);
    margin: 10px 0;
  }
  .tm-f2f-card__body p {
    font-size: 13px;
    color: #555;
    line-height: 1.65;
    margin: 0;
  }

  /* ══ RESPONSIVE ══ */
  @media (max-width: 540px) {
    .tm-hero__content { padding: 16px 16px 18px; }
    .tm-cta-row { flex-direction: column; }
    .tm-cta-btn { justify-content: center; }
    .tm-sticky-footer { flex-wrap: wrap; gap: 8px; }
    .tm-sticky-footer__cta { flex: 1 1 100%; justify-content: center; }
  }
  /* ── FAN WALLET DOWNLOAD BLOCK ──────────────────────────────── */
  .tm-fanwallet { max-width: 880px; margin: 0 auto 24px; padding: 0 16px; }
  .tm-fanwallet__inner {
    background: var(--tm-blue);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .tm-fanwallet__info { display: flex; align-items: center; gap: 16px; color: #fff; }
  .tm-fanwallet__icon { flex-shrink: 0; }
  .tm-fanwallet__label { font-size: 13px; opacity: .85; margin: 0 0 2px; font-weight: 500; }
  .tm-fanwallet__name { font-size: 22px; font-weight: 900; margin: 0 0 2px; letter-spacing: .04em; color: #fff; }
  .tm-fanwallet__sub { font-size: 12px; opacity: .75; margin: 0; }
  .tm-fanwallet__stores { display: flex; gap: 10px; flex-wrap: wrap; }
  .tm-store-btn {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.12);
    border: 1.5px solid rgba(255,255,255,.4);
    border-radius: 10px; padding: 8px 16px;
    color: #fff; text-decoration: none;
    transition: background .2s, border-color .2s;
    min-width: 145px;
  }
  .tm-store-btn:hover { background: rgba(255,255,255,.22); border-color: #fff; }
  .tm-store-btn div { display: flex; flex-direction: column; }
  .tm-store-btn__sub { font-size: 10px; opacity: .8; line-height: 1.2; }
  .tm-store-btn__name { font-size: 15px; font-weight: 700; line-height: 1.2; }
  @media (max-width: 600px) {
    .tm-fanwallet__inner { flex-direction: column; align-items: flex-start; }
    .tm-fanwallet__stores { width: 100%; }
    .tm-store-btn { flex: 1; }
  }

  /* ── SEATMAP INLINE SECTION (pleine largeur) ─────────────────── */
  .tm-seatmap-section { max-width: 100%; margin: 0 0 16px; padding: 0; }
  #tm-seatmap-inline { min-height: 120px; scroll-margin-top: 96px; }
  .tm-seatmap-skel {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
    min-height: 240px; color: var(--tm-sub); font-size: 13px; background: #faf9fb;
  }
  .tm-seatmap-skel__spin {
    width: 30px; height: 30px; border-radius: 50%;
    border: 3px solid #e4e2e6; border-top-color: var(--tm-accent);
    animation: tmSpin .8s linear infinite;
  }
  @keyframes tmSpin { to { transform: rotate(360deg); } }

  /* ── HEADER COMPACT STICKY (style billetterie) ───────────────── */
  .cdp-sticky { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
  .cdp-head { max-width: 880px; margin: 0 auto; display: flex; align-items: center; gap: 10px; padding: 10px 14px; }
  .cdp-head__back { flex: 0 0 auto; width: 26px; height: 30px; display: flex; align-items: center; justify-content: center; color: #1a1a1a; text-decoration: none; }
  .cdp-head__back:hover { color: #555; }
  .cdp-head__photo { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 10px; object-fit: cover; background: #eee; }
  .cdp-head__info { flex: 1; min-width: 0; }
  .cdp-head__title { font-family: 'Oswald', 'Arial Narrow', Impact, sans-serif; font-weight: 800; font-size: clamp(18px, 4.6vw, 24px); line-height: 1.05; margin: 0 0 2px; color: #1a1a1a; letter-spacing: .01em; }
  .cdp-head__date { font-size: 13px; font-weight: 700; color: #1a1a1a; margin: 0 0 1px; }
  .cdp-head__venue { font-size: 12px; color: var(--tm-sub); margin: 0; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cdp-head__actions { flex: 0 0 auto; display: flex; gap: 6px; }
  .cdp-head__actions button { width: 30px; height: 30px; border: 1px solid var(--tm-border); border-radius: 50%; background: #fff; color: #1a1a1a; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; padding: 0; }
  .cdp-head__actions button:hover { background: #f6f5f7; }
  .cdp-head__actions button svg { width: 14px; height: 14px; }
  .cdp-head__actions .cdp-fav.is-fav { color: var(--tm-accent); border-color: var(--tm-accent); }

  /* ── BARRE VERTE (fine) ──────────────────────────────────────── */
  .cdp-greenbar { background: #e6f4ea; border-top: 1px solid #cfe9d6; border-bottom: 1px solid #cfe9d6; }
  .cdp-greenbar__inner { max-width: 880px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 6px 16px; font-size: 12.5px; font-weight: 700; color: #1d7a3a; text-align: center; }
  .cdp-greenbar__inner svg { flex-shrink: 0; width: 13px; height: 13px; }

  /* ── GARANTIES (style billetterie) ───────────────────────────── */
  .prod-guarantees { max-width: 880px; margin: 6px auto 26px; padding: 0 16px; display: flex; flex-direction: column; }
  .prod-guarantee { display: flex; gap: 12px; align-items: flex-start; padding: 16px 2px; border-top: 1px solid var(--tm-border); }
  .prod-guarantee:first-child { border-top: none; }
  .prod-guarantee__ic { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .prod-guarantee__ic--shield { background: #eef4ff; color: #2b62c4; }
  .prod-guarantee__ic--ticket { background: #fdeef0; color: var(--tm-accent); }
  .prod-guarantee__t { font-size: 14px; font-weight: 800; margin: 0 0 3px; color: #1a1a1a; }
  .prod-guarantee__s { font-size: 12.5px; color: var(--tm-sub); line-height: 1.5; margin: 0; }

  /* Ligne d'info sous le selecteur de quantite — discrete par defaut,
     coloree seulement quand le stock de la zone le justifie. */
  .sm-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 2px 16px 0;
    font-size: 12.5px;
    line-height: 1.4;
    color: #7a7782;
  }
  .sm-note i { font-style: normal; opacity: .45; margin: 0 6px; }
  .sm-note__ico { display: inline-flex; flex: 0 0 auto; }
  .sm-note--warm { color: #a35a17; }
  .sm-note--hot { color: #c0233f; font-weight: 600; }
  /* Le calque d'etiquettes ne doit jamais intercepter les clics sur les zones */
  .sm-labels { pointer-events: none; }

  /* Panneau "plafond atteint" — z-index au-dessus du tiroir du plan (9001) */
  .sdf-cap { position: fixed; inset: 0; z-index: 10000; background: rgba(9,13,36,.66);
    backdrop-filter: blur(3px);
    display: flex; align-items: center; justify-content: center; padding: 18px; }
  .sdf-cap[hidden] { display: none; }
  .sdf-cap__box { background: #fff; border-radius: 18px; width: min(430px, 100%);
    padding: 22px 20px 18px; text-align: center; box-shadow: 0 24px 60px rgba(6,10,30,.42);
    max-height: 92dvh; overflow: auto; }
  .sdf-cap__ico { width: 52px; height: 52px; margin: 0 auto 12px; border-radius: 50%;
    display: grid; place-items: center; background: #fdecef; color: #c0233f; }
  .sdf-cap__t { margin: 0 0 8px; font-size: 20px; }
  .sdf-cap__p { margin: 0 0 14px; font-size: 14px; color: #5b6178; line-height: 1.5; }
  /* Jauge : on voit d'un coup d'oeil que le panier a atteint la limite */
  .sdf-cap__jauge { text-align: left; background: #f5f6fa; border-radius: 12px;
    padding: 12px 14px; margin-bottom: 18px; }
  .sdf-cap__jrow { display: flex; justify-content: space-between; align-items: baseline;
    gap: 12px; font-size: 13px; color: #5b6178; }
  .sdf-cap__jrow b { font-size: 15px; font-weight: 800; color: #0c1030; font-variant-numeric: tabular-nums; }
  .sdf-cap__jrow--max { margin-top: 7px; }
  .sdf-cap__jrow--max b { color: #5b6178; font-size: 13.5px; }
  .sdf-cap__bar { height: 7px; border-radius: 99px; background: #e2e5ee; margin: 9px 0 0; overflow: hidden; }
  .sdf-cap__bar i { display: block; height: 100%; border-radius: 99px; background: var(--red); }
  .sdf-cap__go { display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%; min-height: 52px; border: 0; border-radius: 999px;
    background: var(--red); color: #fff; font: inherit; font-size: 16px; font-weight: 700; cursor: pointer; }
  .sdf-cap__go[disabled] { opacity: .6; cursor: wait; }
  .sdf-cap__alt { display: block; margin-top: 12px; font-size: 14px; font-weight: 600;
    color: var(--navy); text-decoration: underline; }
  .sdf-cap__close { margin-top: 10px; background: none; border: 0; color: #7a7782;
    font: inherit; font-size: 13.5px; cursor: pointer; }
  /* etoile du bandeau "les plus populaires" : SVG, jamais de pictogramme */
  .sm-pop__seclabel { display: flex; align-items: center; gap: 6px; }
  .sm-pop__star { flex: 0 0 auto; }
  /* Etiquettes de prix du plan : plus lisibles, flamme sur les zones qui se vident */
  .sm-pricepill { stroke-width: 4; filter: drop-shadow(0 3px 5px rgba(0,0,0,.22)); }
  .sm-pricepill.is-hot { fill: #fff5f2; stroke: #f0a58c; }
  .sm-priceflame { fill: #e8461f; pointer-events: none; }
  .sm-pricetxt { font-weight: 800; }
  .sm-pricebare { fill: #1c1a22; font-weight: 800; font-family: 'Inter', Arial, sans-serif;
    paint-order: stroke; stroke: #fff; stroke-width: 7px; stroke-linejoin: round; pointer-events: none; }
  .sm-lowtxt { font-weight: 800; paint-order: stroke; stroke: #fff; stroke-width: 5px; stroke-linejoin: round; }
  .sm-stepper button[disabled] { opacity: .34; cursor: not-allowed; }
