/* Seating Plan Renderer — buyer side.
   Always a single column: a big map on top, sidebar below. We don't try
   to put the sidebar next to the map because Pretix' event page puts the
   shop content into a ~700px column, so a two-column layout would squeeze
   the map down to ~300px. */
.pretix-seating-renderer {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.25rem 0 2.5rem;
    width: 100%;
    font-feature-settings: "ss01", "cv02";
}

.pretix-seating-renderer * {
    box-sizing: border-box;
}

/* Holds only the hidden ``item_<id>`` / ``seat_<id>`` cart inputs that
   seating.js injects on selection. It must never render a box: as a flex/grid
   child it would otherwise add a phantom gap (column layout) or an empty track
   (the West Live desktop grid, where the renderer is ``display: contents``).
   ``display: none`` does not stop the hidden inputs inside from submitting. */
.pretix-seating-renderer .seating-hidden-inputs {
    display: none;
}

.pretix-seating-renderer .seating-stage {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    min-height: 640px;
    height: 75vh;
    max-height: 900px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
}

.pretix-seating-renderer .seating-toolbar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem .85rem;
    background: rgba(248, 250, 252, .9);
    backdrop-filter: saturate(1.1) blur(4px);
    border-bottom: 1px solid #eef2f7;
}

.pretix-seating-renderer .seating-toolbar .btn {
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.pretix-seating-renderer .seating-toolbar .btn:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
}

.pretix-seating-renderer .seating-toolbar .seating-hint {
    margin-left: auto;
    color: #6b7280;
    font-size: 12px;
}

.pretix-seating-renderer .seating-svg-wrapper {
    position: relative;
    flex: 1 1 auto;
    min-height: 560px;
    overflow: hidden;
    background: #ffffff;
    cursor: grab;
    /* The map is panned/zoomed by JS (seating.js touch handlers). Tell the
       browser not to treat touch-drags / pinches here as page scroll or zoom,
       so dragging the map pans the map instead of moving the whole page;
       overscroll-behavior stops any scroll-chaining to the page. */
    touch-action: none;
    overscroll-behavior: contain;
}

.pretix-seating-renderer .seating-svg-wrapper.is-panning {
    cursor: grabbing;
}

.pretix-seating-renderer #pretix-seating-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    user-select: none;
    -webkit-user-select: none;
}

.pretix-seating-renderer .seat--unavailable {
    opacity: .55;
    cursor: not-allowed;
}

.pretix-seating-renderer .plan-area {
    pointer-events: none;
}

.pretix-seating-renderer .plan-area--mapped {
    pointer-events: auto;
    transition: filter .15s ease, opacity .15s ease;
}

.pretix-seating-renderer .plan-area--clickable {
    cursor: pointer;
}

.pretix-seating-renderer .plan-area--clickable:hover,
.pretix-seating-renderer .plan-area--clickable:focus {
    filter: brightness(.9);
    outline: none;
}

.pretix-seating-renderer .plan-area--clickable:focus-visible,
.pretix-seating-renderer .plan-area--selected {
    stroke: #0f172a;
    stroke-width: 3px;
    vector-effect: non-scaling-stroke;
}

.pretix-seating-renderer .plan-area--selected {
    filter: brightness(.94) saturate(1.08);
}

.pretix-seating-renderer .plan-area--unavailable {
    cursor: not-allowed;
    opacity: .7;
    filter: saturate(.2);
}

/* Chair glyphs are a click-through sibling of the selected source geometry.
   Mirror only its colour treatment here: applying the general selected-area
   stroke to this group would add an unintended outline to every chair. */
.pretix-seating-renderer .plan-area-chair-pattern--selected {
    filter: brightness(.94) saturate(1.08);
}

.pretix-seating-renderer .plan-area--clickable:hover + .plan-area-chair-pattern,
.pretix-seating-renderer .plan-area--clickable:focus + .plan-area-chair-pattern {
    filter: brightness(.9);
}

.pretix-seating-renderer .plan-area-chair-pattern,
.pretix-seating-renderer .plan-area-chair,
.pretix-seating-renderer .plan-area--counter-marker {
    pointer-events: none;
}

/* A separately drawn counter marker is a coordinate from the editor, not a
   map decoration. Keep its SVG geometry alive for pan/zoom positioning and
   concave-shape hit testing, but do not let its fill grow or shrink behind
   the HTML quantity badge. */
.pretix-seating-renderer .plan-area--counter-marker {
    fill-opacity: 0;
    stroke-opacity: 0;
}

/* Custom per-zone counters sit in an HTML layer: unlike SVG text, their
   numerals do not become microscopic when a buyer zooms the full venue out.
   The editor-drawn marker is an invisible anchor; this is only a read-only
   quantity label, never an additional touch target. */
.pretix-seating-renderer .seating-area-counters {
    position: absolute;
    z-index: 11;
    inset: 0;
    pointer-events: none;
}

.pretix-seating-renderer .seating-area-counter {
    position: absolute;
    display: grid;
    min-width: 34px;
    height: 34px;
    padding: 0 7px;
    place-items: center;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .52);
    border-radius: 9px;
    box-shadow: 0 3px 8px rgba(15, 23, 42, .2);
    color: #0f172a;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
    transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.pretix-seating-renderer .seating-area-counter--selected {
    background: #0f172a;
    border-color: #0f172a;
    box-shadow: 0 4px 10px rgba(15, 23, 42, .28);
    color: #ffffff;
}

.pretix-seating-renderer .seating-area-counter__count {
    min-width: 1ch;
    text-align: center;
}

/* Keep the one polite status announcement independent from whichever visual
   confirmation is present (custom marker, bottom fallback, or both). */
.pretix-seating-renderer .seating-area-selection-status {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    margin: -1px;
    white-space: nowrap;
}

/* Area-only maps need feedback that does not shrink with the SVG viewBox.
   This fixed-pixel capsule also covers embedded product pages, where no
   selection rail is rendered beside the map. */
.pretix-seating-renderer .seating-area-selection-summary {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 32px);
    min-height: 56px;
    padding: 6px 12px 6px 6px;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(15, 23, 42, .18);
    color: #0f172a;
    font-size: 13px;
    line-height: 1.25;
    pointer-events: none;
}

.pretix-seating-renderer .seating-area-selection-summary[hidden],
.pretix-seating-renderer .seating-area-discovery[hidden],
.pretix-seating-renderer .seating-area-counter[hidden] {
    display: none !important;
}

.pretix-seating-renderer .seating-area-selection-summary__count {
    display: grid;
    flex: 0 0 auto;
    min-width: 44px;
    min-height: 44px;
    padding: 0 8px;
    place-items: center;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    font-size: 18px;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
}

.pretix-seating-renderer .seating-area-selection-summary__copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.pretix-seating-renderer .seating-area-selection-summary__label {
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.pretix-seating-renderer .seating-area-selection-summary__name {
    overflow-wrap: anywhere;
    color: #0f172a;
    font-weight: 600;
}

.pretix-seating-renderer .seating-area-selection-summary__price {
    flex: 0 1 auto;
    margin-left: 2px;
    color: #0f172a;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-align: right;
}

/* First-load discovery cue for a large standing/GA zone. It is a purely
   visual layer: clicks and drag gestures always pass through to the map. */
.pretix-seating-renderer .seating-area-discovery {
    position: absolute;
    z-index: 12;
    display: grid;
    width: 108px;
    height: 108px;
    place-items: center;
    transform: translate(-50%, -50%);
    color: #0f172a;
    pointer-events: none;
}

.pretix-seating-renderer .seating-area-discovery__ripple {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 1.5px solid currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: seating-area-discovery-ripple 1.05s cubic-bezier(.16, 1, .3, 1) 2 both;
}

.pretix-seating-renderer .seating-area-discovery__ripple--two {
    animation-delay: .28s;
}

.pretix-seating-renderer .seating-area-discovery__hand {
    position: relative;
    z-index: 1;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .22);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(15, 23, 42, .18);
    color: #0f172a;
    font-size: 27px;
    line-height: 1;
    isolation: isolate;
    transform-origin: 50% 60%;
    /* The contained target ring makes the pointer read as a tap affordance,
       not a floating icon. Motion remains compositor-only over dense SVG maps. */
    will-change: transform;
    animation: seating-area-discovery-hand 1.05s cubic-bezier(.42, 0, .58, 1) 2 both;
}

.pretix-seating-renderer .seating-area-discovery__hand::before {
    position: relative;
    z-index: 1;
}

.pretix-seating-renderer .seating-area-discovery__hand::after {
    position: absolute;
    z-index: 0;
    inset: 6px;
    border: 1px solid currentColor;
    border-radius: inherit;
    content: '';
    opacity: .16;
}

.pretix-seating-renderer .seating-area-discovery__label {
    position: absolute;
    top: 70px;
    left: 50%;
    display: none;
    width: max-content;
    max-width: min(240px, calc(100vw - 32px));
    padding: 5px 8px;
    transform: translateX(-50%);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(15, 23, 42, .16);
    color: #0f172a;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
}

@keyframes seating-area-discovery-ripple {
    0% { transform: scale(.35); opacity: .72; }
    80%, 100% { transform: scale(2.7); opacity: 0; }
}

@keyframes seating-area-discovery-hand {
    0%, 100% { transform: translate3d(0, -3px, 0) scale(1); }
    42% { transform: translate3d(0, 1.5px, 0) scale(.985); }
    53% { transform: translate3d(0, 2px, 0) scale(.965); }
    65% { transform: translate3d(0, 1.3px, 0) scale(.982); }
}

@media (max-width: 600px) {
    .pretix-seating-renderer .seating-area-selection-summary {
        bottom: 10px;
        gap: 8px;
        max-width: calc(100% - 24px);
        min-height: 50px;
        padding: 5px 10px 5px 5px;
    }

    /* The map title already identifies the zone. On a phone, repeating a
       long product name in the fallback confirmation turns a concise status
       into a card that obscures the map and breaks mid-word. */
    .pretix-seating-renderer .seating-area-selection-summary__count {
        min-width: 40px;
        min-height: 40px;
        font-size: 16px;
    }

    .pretix-seating-renderer .seating-area-selection-summary__copy {
        display: inline-flex;
        flex: 1 1 auto;
        align-items: baseline;
        gap: 4px;
        overflow: hidden;
    }

    .pretix-seating-renderer .seating-area-selection-summary__label,
    .pretix-seating-renderer .seating-area-selection-summary__price {
        white-space: nowrap;
    }

    .pretix-seating-renderer .seating-area-selection-summary__name {
        display: none !important;
    }

    .pretix-seating-renderer .seating-area-selection-summary__price {
        flex: 0 0 auto;
        margin-left: auto;
        font-size: 13px;
    }

    .pretix-seating-renderer .seating-area-discovery__label {
        display: block;
    }
}

/* iOS synthesises a mouseover after a tap and can leave the hover tooltip on
   top of the zone. The selected-count feedback is the touch-specific cue, so
   keep this desktop-only affordance out of the mobile canvas. */
@media (max-width: 900px), (hover: none) and (pointer: coarse) {
    .pretix-seating-renderer .seating-tooltip {
        display: none !important;
    }

    /* Avoid Safari's non-scaling-stroke ghost segments on closed decorative
       contours such as the stage. Open lines keep their stable stroke width. */
    .pretix-seating-renderer .plan-area--closed-line {
        vector-effect: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pretix-seating-renderer .plan-area--clickable,
    .pretix-seating-renderer .seating-area-counter,
    .pretix-seating-renderer .seating-area-discovery__ripple,
    .pretix-seating-renderer .seating-area-discovery__hand {
        transition: none;
        animation: none;
    }

    .pretix-seating-renderer .seating-area-discovery__ripple {
        transform: scale(1.8);
        opacity: .65;
    }

    .pretix-seating-renderer .seating-area-discovery__label {
        display: block;
    }
}

@media (forced-colors: active) {
    .pretix-seating-renderer .plan-area--clickable:focus-visible,
    .pretix-seating-renderer .plan-area--selected {
        stroke: Highlight;
    }

    .pretix-seating-renderer .seating-area-selection-summary,
    .pretix-seating-renderer .seating-area-counter,
    .pretix-seating-renderer .seating-area-discovery__hand,
    .pretix-seating-renderer .seating-area-discovery__label {
        background: Canvas;
        border-color: ButtonText;
        color: ButtonText;
        box-shadow: none;
    }

    .pretix-seating-renderer .seating-area-selection-summary__count {
        background: Highlight;
        color: HighlightText;
    }

    .pretix-seating-renderer .seating-area-counter--selected {
        background: Highlight;
        border-color: Highlight;
        color: HighlightText;
    }
}

.pretix-seating-renderer .row-label {
    pointer-events: none;
}

.pretix-seating-renderer .seating-tooltip {
    position: absolute;
    display: none;
    pointer-events: none;
    background: rgba(15, 23, 42, .92);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    z-index: 20;
    max-width: 220px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

/* Sidebar — horizontal grid on desktop, stacks on narrow screens */
.pretix-seating-renderer .seating-sidebar {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(220px, 1.2fr) minmax(220px, 1fr);
    gap: 1.5rem;
    padding: 1.35rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    align-items: start;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .05);
}

.pretix-seating-renderer .seating-sidebar-col + .seating-sidebar-col {
    position: relative;
}
@media (min-width: 721px) {
    .pretix-seating-renderer .seating-sidebar-col + .seating-sidebar-col::before {
        content: "";
        position: absolute;
        left: -.75rem;
        top: .25rem;
        bottom: .25rem;
        width: 1px;
        background: linear-gradient(180deg, transparent, #e5e7eb 25%, #e5e7eb 75%, transparent);
    }
}

@media (max-width: 720px) {
    .pretix-seating-renderer .seating-sidebar {
        grid-template-columns: 1fr;
    }
}

.pretix-seating-renderer .seating-sidebar-title {
    margin: 0 0 .5rem;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pretix-seating-renderer .seating-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

/* Price-pill strip — populated by seating.js (renderPricePills), shown only on
   the West Live mobile seat page (kvit-ui.css). Hidden in every other context. */
.pretix-seating-renderer .seating-pricepills { display: none; }

.pretix-seating-renderer .seating-legend,
.pretix-seating-renderer .seating-categories,
.pretix-seating-renderer .seating-selection {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pretix-seating-renderer .seating-legend {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .9rem;
    font-size: 12px;
    color: #4b5563;
}

.pretix-seating-renderer .seating-legend li {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.pretix-seating-renderer .legend-swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}
.pretix-seating-renderer .legend-swatch--available { background: #22c55e; }
.pretix-seating-renderer .legend-swatch--selected { background: #0f172a; }
.pretix-seating-renderer .legend-swatch--unavailable { background: #cbd5e1; }

.pretix-seating-renderer .seating-categories li {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .45rem .1rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13.5px;
}
.pretix-seating-renderer .seating-categories li:last-child { border-bottom: 0; }
.pretix-seating-renderer .seating-categories .legend-item--unavailable {
    opacity: .62;
}
.pretix-seating-renderer .seating-categories .legend-swatch {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px rgba(15, 23, 42, .06);
}
.pretix-seating-renderer .seating-categories .legend-label {
    flex: 1 1 auto;
    color: #0f172a;
    font-weight: 500;
}
.pretix-seating-renderer .seating-categories .legend-price {
    color: #475569;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.pretix-seating-renderer .seating-selection {
    max-height: 220px;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.pretix-seating-renderer .seating-selection-empty {
    color: #9ca3af;
    font-size: 13px;
    padding: .5rem 0;
}

.pretix-seating-renderer .seating-selection-item {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr) max-content 44px;
    gap: .5rem;
    align-items: center;
    padding: .35rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}

.pretix-seating-renderer .seating-selection-swatch {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.pretix-seating-renderer .seating-selection-info {
    color: #1f2937;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pretix-seating-renderer .seating-selection-price {
    color: #1f2937;
    font-variant-numeric: tabular-nums;
}

.pretix-seating-renderer .seating-selection-remove {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    color: #64748b;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.pretix-seating-renderer .seating-selection-remove:hover {
    color: #dc2626;
    border-color: #fecaca;
    background: #fef2f2;
}
.pretix-seating-renderer .seating-selection-remove:focus-visible,
.pretix-seating-renderer .seating-selection-step:focus-visible,
.pretix-seating-renderer .legend-item--area:focus-visible {
    outline: 3px solid rgba(15, 23, 42, .35);
    outline-offset: 2px;
}

/* Area/GA selection line with a quantity stepper gets a 5th column. */
.pretix-seating-renderer .seating-selection-item--stepper {
    grid-template-columns: 14px minmax(0, 1fr) max-content max-content 44px;
}
.pretix-seating-renderer .seating-selection-stepper {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pretix-seating-renderer .seating-selection-step {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
}
.pretix-seating-renderer .seating-selection-step:hover { border-color: #9ca3af; }
.pretix-seating-renderer .seating-selection-qty {
    min-width: 16px;
    text-align: center;
    font-variant-numeric: tabular-nums;
}

.pretix-seating-renderer .seating-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .75rem .9rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-weight: 600;
    margin-top: .25rem;
}

.pretix-seating-renderer .seating-total-label {
    color: #64748b;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.pretix-seating-renderer .seating-total-value {
    font-size: 20px;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}

.pretix-seating-renderer .seating-submit {
    width: 100%;
    border-radius: 10px;
    padding: .75rem 1rem;
    font-weight: 600;
    letter-spacing: .01em;
    box-shadow: 0 6px 16px rgba(20, 184, 166, .25);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.pretix-seating-renderer .seating-submit:not(:disabled):hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(20, 184, 166, .32);
}
.pretix-seating-renderer .seating-submit:disabled {
    box-shadow: none;
    opacity: .55;
}

/* Mobile fine-tuning */
@media (max-width: 600px) {
    .pretix-seating-renderer .seating-stage {
        min-height: 520px;
        height: 70vh;
    }
    .pretix-seating-renderer .seating-svg-wrapper {
        min-height: 440px;
    }
}

/* Fullscreen seatingframe variant — make it fill the viewport */
body.full-screen-seating .pretix-seating-renderer {
    margin: 0;
    height: 100vh;
    min-height: 0;
}
body.full-screen-seating .pretix-seating-renderer .seating-stage {
    height: calc(100vh - 180px);
    max-height: none;
}

body.full-screen-seating .pretix-seating-frame-cta {
    padding: 0 1rem 1.25rem;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile / narrow iframe: keep "Add to cart" visible above the thumb zone */
@media (max-width: 900px) {
    /* Let map + sidebar define document height so the bar can stick while scrolling */
    body.full-screen-seating .pretix-seating-renderer {
        height: auto;
        min-height: 0;
    }

    body.full-screen-seating .pretix-seating-frame-cta {
        position: sticky;
        bottom: 0;
        z-index: 200;
        margin-top: 0.5rem;
        padding: 0.75rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
        background: linear-gradient(
            to top,
            rgba(255, 255, 255, 0.98) 55%,
            rgba(255, 255, 255, 0.88) 85%,
            rgba(255, 255, 255, 0)
        );
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.08);
    }

    body.full-screen-seating .pretix-seating-frame-cta .btn-lg {
        min-height: 48px;
        font-size: 16px;
    }
}

/* Buyer notice on the seat-selection sidebar: the shown total excludes the
   service charge (added later in the cart). Rendered in map.html only when
   prices are displayed net (gated on event.settings.display_net_prices), so
   it never appears on events whose prices already include the fee. */
.seating-fee-note {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin: 12px 0 0;
    font-size: 12.5px;
    line-height: 1.4;
    color: #475569;
}

.seating-fee-note--prices {
    display: none;
}

.seating-fee-note .fa {
    margin-top: 1px;
    color: #dc2626;
    flex: 0 0 auto;
}
