/* Consent banner. Reject and Accept are deliberately the same size and weight —
   making Reject harder than Accept is the dark pattern regulators act on. */
#sbs-consent {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    background: var(--bg-card, #14141a);
    border-top: 1px solid var(--border-subtle, rgba(255,255,255,.12));
    color: #fff;
    font-size: var(--font-sm, 14px);
    line-height: 1.4;
}
.sbs-consent__text { margin: 0; flex: 1 1 260px; }
/* In the column layout below, `flex: 1 1 260px` would make 260px a HEIGHT, so
   the bar grew to half the screen. Reset the basis when the axis flips. */
.sbs-consent__text a { color: var(--accent-gold, #d4af37); }
.sbs-consent__actions { display: flex; gap: 8px; flex: 0 0 auto; }
.sbs-consent__btn {
    /* 16px minimum: anything smaller makes iOS Safari zoom the page on tap. */
    font: inherit;
    font-size: 16px;
    padding: 10px 18px;
    min-height: 44px;              /* Apple's minimum touch target */
    border-radius: 10px;
    border: 1px solid var(--border-subtle, rgba(255,255,255,.25));
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.sbs-consent__btn--yes {
    background: var(--accent-gold, #d4af37);
    border-color: var(--accent-gold, #d4af37);
    color: #000;
}
.sbs-consent__btn:focus-visible { outline: var(--focus-ring, 2px solid #fff); outline-offset: 2px; }
.sbs-cookie-settings {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 9998;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid var(--border-subtle, rgba(255,255,255,.25));
    border-radius: 999px;
    background: var(--bg-card, #14141a);
    color: #fff;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.28);
}
.sbs-cookie-settings:focus-visible { outline: var(--focus-ring, 2px solid #fff); outline-offset: 2px; }
@media (max-width: 420px) {
    .sbs-cookie-settings { left: 12px; right: auto; }
}
@media (max-width: 420px) {
    #sbs-consent { flex-direction: column; align-items: stretch; }
    .sbs-consent__text { flex: 0 0 auto; }
    .sbs-consent__actions { justify-content: stretch; }
    .sbs-consent__btn { flex: 1; }
}
