:root {
    --entry-widget-blue: #0d6efd;
    --entry-widget-blue-hover: #0b5ed7;
    --entry-widget-border: #e0e0e0;
    --brand-logo: #2068b2;
    --blue: #2068b2;
    --blue-dark: #1a528f;
    --blue-light: #3b82c4;
    --yellow: #facc15;
    --yellow-hover: #eab308;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --danger: #dc2626;
    --success: #16a34a;
    --font: "Plus Jakarta Sans", system-ui, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(30, 58, 138, 0.12);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
}

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

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    overflow-x: clip;
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: var(--font);
    background: var(--gray-50);
    color: var(--gray-900);
    line-height: 1.55;
    display: flex;
    flex-direction: column;
    overflow-x: clip;
}

body.nav-drawer-open {
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 0.5rem 1rem;
    background: var(--yellow);
    color: var(--gray-900);
}

.skip-link:focus {
    left: 0.5rem;
    top: 0.5rem;
}

.wrap {
    width: min(1180px, 100% - 2rem);
    max-width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}

/* ——— Header ——— */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    padding-top: max(0.9rem, env(safe-area-inset-top));
    flex-wrap: nowrap;
}

.header-drawer {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
}

.nav-toggle {
    display: none;
    flex-shrink: 0;
}

.header-backdrop {
    display: none;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
    margin-inline-end: clamp(1.25rem, 3vw, 2.25rem);
}

.logo__img {
    height: 2.35rem;
    width: auto;
    max-width: min(240px, 55vw);
    object-fit: contain;
    display: block;
}

.logo:hover .logo__img,
.logo:focus-visible .logo__img {
    opacity: 0.9;
}

.logo:focus-visible {
    outline: 2px solid var(--brand-logo);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav--main {
    display: flex;
    align-items: center;
    gap: 1.35rem;
    flex-wrap: wrap;
}

.nav--main a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav--main a:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.nav-signin {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-signin:hover {
    color: var(--blue);
}

/* ——— Buttons ——— */
.btn {
    display: inline-block;
    margin-top: 0;
    padding: 0.65rem 1.35rem;
    border: none;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s, transform 0.1s;
}

.btn:hover {
    background: var(--blue-light);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--gray-900);
}

.btn-yellow:hover {
    background: var(--yellow-hover);
    color: var(--gray-900);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-hero {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
    margin-top: 1.25rem;
}

.btn-block {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
}

.btn-gift {
    margin-top: 1rem;
}

.btn-small {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}

/* ——— Main ——— */
.main {
    padding: 2rem 0 4rem;
    flex: 1;
}

.main--full {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    margin-inline: 0;
}

.page-home__content {
    padding: 2.5rem 0 4rem;
}

.page-stack {
    max-width: 720px;
}

.page-stack h1 {
    margin-top: 0;
}

/* ——— Hero ——— */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    padding: 3rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 820px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__visual {
        min-height: 180px;
    }
}

.hero__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero__sub {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 36ch;
    margin: 0;
}

@media (max-width: 820px) {
    .hero__sub {
        margin-inline: auto;
    }
}

.hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
    align-items: center;
}

.hero__actions .btn-hero {
    margin-top: 0;
}

@media (max-width: 820px) {
    .hero__actions {
        justify-content: center;
    }
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--white);
    background: transparent;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border-color: var(--white);
}

.hero__visual {
    position: relative;
    min-height: 220px;
}

.hero-float {
    position: absolute;
    font-size: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-lg);
    animation: float 5s ease-in-out infinite;
}

.hero-float--1 { top: 10%; left: 10%; animation-delay: 0s; }
.hero-float--2 { top: 40%; right: 15%; animation-delay: 0.5s; }
.hero-float--3 { bottom: 15%; left: 25%; animation-delay: 1s; }
.hero-float--4 { top: 20%; right: 35%; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ——— Stats ——— */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.35rem 0;
}

.stats-bar__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--gray-700);
}

@media (max-width: 640px) {
    .stats-bar__inner {
        grid-template-columns: 1fr;
    }
}

.stat-item strong {
    display: block;
    font-size: 1.35rem;
    color: var(--blue);
    font-weight: 800;
}

/* ——— Sections & grids ——— */
.section-competitions {
    margin-bottom: 3rem;
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--gray-900);
}

.section-heading--compact {
    margin-bottom: 1rem;
}

.how-to-enter {
    margin-bottom: 2.5rem;
    padding: 1.5rem 1.75rem;
}

.how-to-enter__list {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
    color: var(--gray-700);
}

.how-to-enter__list li {
    margin-bottom: 0.65rem;
}

.how-to-enter__list li strong {
    color: var(--gray-900);
}

.how-to-enter__note {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.entry-post-panel {
    margin-top: 0.5rem;
    padding: 1.25rem 1.35rem;
    background: var(--gray-50);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius);
}

.entry-post-panel__title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
}

.entry-post-panel__steps {
    margin: 0 0 0.85rem;
    padding-left: 1.25rem;
    color: var(--gray-700);
}

.entry-post-panel__steps li {
    margin-bottom: 0.5rem;
}

.entry-post-panel__address {
    margin: 0 0 1rem;
    padding: 1rem 1.15rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    color: var(--gray-900);
}

.entry-post-panel__ref {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.entry-post-panel__hint {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.entry-pay-panel {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(32, 104, 178, 0.2);
}

.entry-pay-panel__title {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
}

.entry-pay-panel__lede {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.45;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Tabbed entry card (online vs postal) — competition detail */
.entry-method-card {
    margin-top: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

/* Competition entry widget (reference layout: closes line, sold row, blue CTA) */
.entry-method-card--widget {
    background: var(--white);
    border: 1px solid var(--entry-widget-border);
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.entry-widget-head {
    padding: 1.1rem 1.25rem 0.85rem;
    text-align: center;
    border-bottom: 1px solid var(--entry-widget-border);
    background: var(--white);
}

.entry-widget-closes {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.entry-widget-closes__when {
    color: var(--entry-widget-blue);
    font-weight: 800;
}

.entry-widget-progress {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: var(--gray-200);
    overflow: hidden;
    margin: 0 0 0.65rem;
}

.entry-widget-progress__fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--entry-widget-blue);
    transition: width 0.25s ease;
}

.entry-widget-sold-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.entry-widget-sold-pct {
    color: var(--gray-700);
}

.entry-widget-sold-counts {
    color: var(--gray-700);
    font-variant-numeric: tabular-nums;
}

.entry-method-card--widget .entry-method-tabs {
    background: var(--gray-100);
    padding: 0.4rem 0.4rem 0;
}

.entry-method-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--gray-100);
    padding: 0.5rem 0.5rem 0;
}

.entry-method-tabs--static {
    grid-template-columns: 1fr;
    padding-bottom: 0;
}

.entry-method-tab {
    margin: 0;
    padding: 0.85rem 0.75rem;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-900);
    background: var(--white);
    border: 3px solid transparent;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    transition:
        border-color 0.15s ease,
        background 0.15s ease;
}

.entry-method-card--widget .entry-method-tab {
    background: var(--gray-100);
    color: var(--gray-600);
    border-color: transparent;
}

.entry-method-card--widget .entry-method-tab:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}

.entry-method-tab:hover {
    background: var(--gray-50);
}

.entry-method-tab[aria-selected="true"],
.entry-method-tab.is-active {
    border-color: var(--gray-900);
    border-bottom-color: transparent;
    background: var(--white);
    position: relative;
    z-index: 1;
    margin-bottom: -1px;
    padding-bottom: calc(0.85rem + 1px);
}

.entry-method-card--widget .entry-method-tab[aria-selected="true"],
.entry-method-card--widget .entry-method-tab.is-active {
    border-color: transparent;
    background: var(--white);
    color: var(--gray-900);
    box-shadow: 0 -1px 0 var(--white);
}

.entry-method-tab:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
    z-index: 2;
}

.entry-method-card--widget .entry-method-tab--fake {
    background: var(--white);
    color: var(--gray-900);
    border-color: transparent;
}

.entry-method-tab--fake {
    cursor: default;
    pointer-events: none;
    border-color: var(--gray-900);
    border-bottom-color: transparent;
    margin-bottom: -1px;
    padding-bottom: calc(0.85rem + 1px);
}

.entry-method-card--widget .entry-method-body {
    border: none;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.entry-method-body {
    background: var(--white);
    border: 1px solid rgba(32, 104, 178, 0.25);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin: 0 0.5rem 0.5rem;
    min-height: 0;
}

.entry-method-tabs--static + .entry-method-body {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    margin-top: -1px;
}

.entry-method-card--widget .entry-method-panel__pad {
    padding: 1.15rem 1.25rem 1.2rem;
}

.entry-method-panel__pad {
    padding: 1.1rem 1.15rem 1.25rem;
}

/* Formerly a max-height scroll region; grow with content so the page scrolls once, not inside the card */
.entry-method-panel__pad--scroll {
    max-height: none;
    overflow: visible;
}

.entry-method-guest-hint {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.entry-method-guest-hint a {
    color: var(--blue);
    font-weight: 700;
}

.entry-method-inline-alert {
    margin: 0 1.15rem 0.75rem;
    border-radius: var(--radius);
}

.entry-post-panel--embedded {
    margin: 0;
}

.entry-post-panel--embedded .entry-post-panel__title {
    font-size: 1.05rem;
    margin-top: 0;
}

/* Postal route — full legal copy (competition tab) */
.entry-post-panel--legal {
    padding: 1.15rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--entry-widget-border, #e0e0e0);
    border-radius: var(--radius);
    color: var(--gray-800, #1e293b);
    line-height: 1.55;
}

.entry-post-legal-lead {
    margin: 0 0 0.85rem;
    font-size: 0.95rem;
}

.entry-post-legal-intro {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
}

.entry-post-legal-list {
    margin: 0 0 0.5rem;
    padding-left: 1.35rem;
    font-size: 0.9rem;
}

.entry-post-legal-list--alpha {
    list-style-type: lower-alpha;
}

.entry-post-legal-list--alpha > li {
    margin-bottom: 0.65rem;
    padding-left: 0.35rem;
}

.entry-post-legal-list--roman {
    list-style-type: upper-roman;
    margin: 0.5rem 0 0.25rem;
    padding-left: 1.35rem;
}

.entry-post-legal-list--roman > li {
    margin-bottom: 0.35rem;
}

.entry-post-legal-address {
    display: block;
    margin: 0.4rem 0 0;
    padding: 0.65rem 0.85rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.45;
    color: var(--gray-900);
}

.entry-post-legal-missing {
    color: var(--danger, #dc2626);
}

.entry-post-legal-list a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
}

.entry-post-legal-meta {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.45;
}

.entry-method-card--widget .entry-checkout-footer {
    border-top: 1px solid var(--entry-widget-border);
    background: var(--white);
    border-radius: 0;
    padding: 1.1rem 1.25rem 1.25rem;
}

.entry-checkout-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.15rem 1.15rem;
    background: var(--gray-50);
    border-radius: 0 0 calc(var(--radius-lg) - 6px) calc(var(--radius-lg) - 6px);
}

.entry-checkout-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.entry-checkout-total__label {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-900);
}

.entry-checkout-total__muted {
    font-weight: 600;
    color: var(--gray-500);
}

.entry-checkout-total__amount {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gray-900);
}

.entry-checkout-submit--widget {
    flex-direction: row;
    background: var(--entry-widget-blue) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(13, 110, 253, 0.35) !important;
    border: none !important;
}

.entry-checkout-submit--widget:hover {
    background: var(--entry-widget-blue-hover) !important;
    color: var(--white) !important;
    filter: none !important;
}

.entry-checkout-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 0;
    padding: 0.95rem 1.25rem;
    border-radius: 12px;
    background: #0ea5e9;
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    border: none;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
    transition:
        background 0.15s ease,
        transform 0.1s ease,
        box-shadow 0.15s ease;
}

.entry-checkout-submit:hover {
    background: #0284c7;
    color: var(--white);
}

.entry-checkout-submit:active {
    transform: scale(0.99);
}

.entry-checkout-submit__icon {
    display: inline-flex;
    flex-shrink: 0;
    opacity: 0.95;
}

.entry-method-card .entry-pack-fieldset {
    display: block;
    margin-top: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    padding: 0;
    border: none;
}

.entry-method-card .entry-pack-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-inline-size: 0;
    gap: 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.entry-method-card .entry-pack-btn {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-inline-size: 0;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    height: 100%;
    align-self: stretch;
    justify-self: stretch;
}

.entry-method-card .entry-pack-btn__face {
    display: flex;
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 0.35rem 0.25rem;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    min-height: 3.15rem;
    height: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 0;
    /* Divider + light inner frame so every segment matches the selected state footprint */
    box-shadow:
        1px 0 0 var(--gray-200),
        inset 0 0 0 1px var(--gray-200);
    background: var(--white);
    padding: 0.55rem 0.35rem;
    text-align: center;
    white-space: normal;
}

.entry-method-card .entry-pack-btn:first-child .entry-pack-btn__face {
    border-top-left-radius: calc(var(--radius) - 1px);
    border-bottom-left-radius: calc(var(--radius) - 1px);
}

.entry-method-card .entry-pack-btn:last-child .entry-pack-btn__face {
    box-shadow: inset 0 0 0 1px var(--gray-200);
    border-top-right-radius: calc(var(--radius) - 1px);
    border-bottom-right-radius: calc(var(--radius) - 1px);
}

.entry-method-card .entry-pack-btn:hover .entry-pack-btn__face {
    background: var(--gray-50);
}

.entry-method-card .entry-pack-btn:active .entry-pack-btn__face {
    transform: none;
}

.entry-method-card .entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__face {
    background: var(--white);
    box-shadow:
        1px 0 0 var(--gray-200),
        inset 0 0 0 2px var(--gray-900);
}

.entry-method-card .entry-pack-btn:last-child:has(.entry-pack-btn__input:checked) .entry-pack-btn__face {
    box-shadow: inset 0 0 0 2px var(--gray-900);
}

.entry-method-card .entry-pack-btn__num {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.entry-method-card .entry-pack-btn__label {
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    flex-shrink: 0;
}

.entry-method-card .entry-pack-btn__price {
    font-size: 0.78rem;
    margin-top: 0;
    flex-shrink: 0;
}

.entry-method-card .entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__num,
.entry-method-card .entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__price {
    color: var(--gray-900);
}

@media (max-width: 520px) {
    .entry-method-card .entry-pack-buttons {
        grid-template-columns: 1fr;
    }

    .entry-method-card .entry-pack-btn__face {
        flex-direction: column;
        gap: 0.2rem;
        white-space: normal;
        min-height: 4.25rem;
        box-shadow: inset 0 0 0 1px var(--gray-200);
    }

    .entry-method-card .entry-pack-btn:first-child .entry-pack-btn__face {
        border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
    }

    .entry-method-card .entry-pack-btn:last-child .entry-pack-btn__face {
        border-radius: 0 0 calc(var(--radius) - 1px) calc(var(--radius) - 1px);
    }

    .entry-method-card .entry-pack-btn:not(:last-child) .entry-pack-btn__face {
        box-shadow:
            0 1px 0 var(--gray-200),
            inset 0 0 0 1px var(--gray-200);
    }

    .entry-method-card .entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__face {
        box-shadow:
            0 1px 0 var(--gray-200),
            inset 0 0 0 2px var(--gray-900);
    }

    .entry-method-card .entry-pack-btn:last-child:has(.entry-pack-btn__input:checked) .entry-pack-btn__face {
        box-shadow: inset 0 0 0 2px var(--gray-900);
    }
}

/* ——— Entry quantity slider + stepper (competition checkout) ——— */
.entry-qty-picker {
    --bubble-pct: 0%;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.entry-method-card .entry-pack-fieldset .entry-pack-legend {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-700);
}

.entry-qty-slider-block {
    margin-bottom: 1rem;
}

.entry-qty-slider-track-wrap {
    position: relative;
    padding: 2.85rem 0 0.35rem;
}

.entry-qty-bubble__inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.entry-qty-bubble__icon {
    display: inline-flex;
    opacity: 0.95;
}

.entry-qty-slider-bubble {
    position: absolute;
    left: var(--bubble-pct);
    top: 0;
    transform: translateX(-50%);
    box-sizing: border-box;
    min-width: 2.85rem;
    min-height: 2.125rem;
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
    background: var(--entry-widget-blue);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.35);
    pointer-events: none;
}

.entry-method-card--widget .entry-qty-slider {
    background: linear-gradient(
        to right,
        var(--entry-widget-blue) 0%,
        var(--entry-widget-blue) var(--bubble-pct),
        var(--gray-200) var(--bubble-pct),
        var(--gray-200) 100%
    );
}

.entry-method-card--widget .entry-qty-slider::-webkit-slider-thumb {
    border-color: var(--entry-widget-blue);
}

.entry-method-card--widget .entry-qty-slider::-moz-range-progress {
    background: var(--entry-widget-blue);
}

.entry-method-card--widget .entry-qty-slider::-moz-range-thumb {
    border-color: var(--entry-widget-blue);
}

.entry-qty-slider-bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--entry-widget-blue);
}

.entry-qty-slider {
    display: block;
    width: 100%;
    height: 10px;
    margin: 0;
    border-radius: 999px;
    background: linear-gradient(
        to right,
        var(--blue) 0%,
        var(--blue) var(--bubble-pct),
        var(--gray-200) var(--bubble-pct),
        var(--gray-200) 100%
    );
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.entry-qty-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
}

.entry-qty-slider::-moz-range-track {
    height: 10px;
    border-radius: 999px;
    background: var(--gray-200);
}

.entry-qty-slider::-moz-range-progress {
    height: 10px;
    border-radius: 999px;
    background: var(--blue);
}

.entry-qty-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue);
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
}

.entry-qty-slider-extents {
    display: flex;
    justify-content: space-between;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
}

.entry-qty-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-top: 0.25rem;
}

.entry-qty-per-line {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.entry-qty-per-line__amount {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.entry-method-card--widget .entry-qty-per-line__label {
    text-transform: none;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--gray-600);
}

.entry-qty-per-line__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.entry-method-card--widget .entry-qty-stepper {
    border: 1px solid var(--entry-widget-border);
    border-radius: 10px;
}

.entry-qty-stepper {
    display: inline-flex;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--blue-light);
    background: var(--white);
}

.entry-method-card--widget .entry-qty-stepper__btn {
    color: var(--gray-800, #1e293b);
    background: var(--gray-50);
}

.entry-qty-stepper__btn {
    width: 2.5rem;
    min-height: 2.65rem;
    border: 0;
    background: var(--gray-50);
    color: var(--blue);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease;
}

.entry-qty-stepper__btn:hover {
    background: var(--gray-200);
}

.entry-qty-stepper__btn:active {
    transform: scale(0.98);
}

.entry-qty-stepper__input {
    width: 4.5rem;
    min-height: 2.65rem;
    border: 0;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    font-family: var(--font);
    color: var(--gray-900);
    -moz-appearance: textfield;
}

.entry-qty-stepper__input::-webkit-outer-spin-button,
.entry-qty-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 520px) {
    .entry-qty-row {
        flex-direction: column;
        align-items: stretch;
    }

    .entry-qty-stepper {
        justify-content: center;
        width: 100%;
    }

    .entry-qty-stepper__input {
        flex: 1 1 auto;
        max-width: 8rem;
    }
}

.faq-postal-address,
.contact-postal-address {
    margin: 0.5rem 0 0;
    padding: 1rem 1.15rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
}

.product-tagline {
    margin: -0.35rem 0 1rem;
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 500;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-pill {
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    font: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.filter-pill:hover,
.filter-pill.is-active {
    border-color: var(--blue);
    background: rgba(30, 58, 138, 0.06);
    color: var(--blue);
}

.competition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.35rem;
    padding-top: 0.85rem;
}

.competition-grid--featured {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.competition-tile {
    border-radius: 14px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transition: transform 0.2s ease;
    /* Room so the draw badge can sit half above the card without overlapping the row above */
    padding-top: 15px;
}

.competition-tile:hover {
    transform: translateY(-3px);
}

.competition-tile:hover .competition-tile__link {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
}

.competition-tile__link {
    position: relative;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 14px;
    overflow: visible;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    transition:
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.competition-tile__link:hover {
    border-color: rgba(32, 104, 178, 0.25);
}

.competition-tile__draw-badge {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    width: max-content;
    max-width: calc(100% - 1.5rem);
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.98);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.03em;
    color: var(--gray-900);
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 3px 14px rgba(15, 23, 42, 0.18);
    pointer-events: none;
}

.competition-tile__draw-badge--today {
    background: #dc2626;
    border-color: rgba(127, 29, 29, 0.5);
    color: var(--white);
    box-shadow: 0 2px 14px rgba(220, 38, 38, 0.35);
}

.competition-tile__draw-badge--tomorrow {
    background: #22c55e;
    border-color: rgba(21, 100, 45, 0.4);
    color: #052e16;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.3);
}

.competition-tile__draw-badge--scheduled {
    color: var(--gray-900);
}

.competition-tile__draw-badge--just-launched {
    color: var(--gray-900);
}

.competition-tile__visual {
    height: 188px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
    background: linear-gradient(145deg, var(--blue-light), var(--blue-dark));
}

.competition-tile__visual--photo {
    background: var(--gray-200);
}

.competition-tile__visual--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.competition-tile--tech .competition-tile__visual:not(.competition-tile__visual--photo) {
    background: linear-gradient(145deg, #6366f1, #4338ca);
}

.competition-tile--cash .competition-tile__visual:not(.competition-tile__visual--photo) {
    background: linear-gradient(145deg, #10b981, #047857);
}

.competition-tile--other .competition-tile__visual:not(.competition-tile__visual--photo) {
    background: linear-gradient(145deg, #ec4899, #be185d);
}

.competition-tile--custom .competition-tile__visual:not(.competition-tile__visual--photo) {
    background: linear-gradient(145deg, var(--blue-light), #7c3aed);
}

.competition-tile__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex: 1 1 auto;
    padding: 1rem 1.1rem 1.2rem;
    text-align: center;
    border-radius: 0 0 13px 13px;
    background: var(--white);
}

.competition-tile__title {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--gray-900);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.competition-tile__tagline {
    margin: 0.45rem 0 0;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--gray-500);
}

.competition-tile__price {
    margin: 0.55rem 0 0;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.competition-tile__sold {
    margin-top: 0.85rem;
    width: 100%;
    text-align: left;
}

.competition-tile__sold-label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue-light);
}

.competition-tile__progress {
    margin-top: 0.35rem;
    height: 8px;
    border-radius: 999px;
    background: var(--gray-200);
    overflow: hidden;
}

.competition-tile__progress-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
    transition: width 0.35s ease;
}

.competition-tile__cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    font-weight: 800;
    text-align: center;
    border-radius: 999px;
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
    line-height: 1.25;
}

.competition-tile__link:hover .competition-tile__cta {
    background: rgba(32, 104, 178, 0.06);
}

.competition-tile.is-hidden {
    display: none;
}

/* ——— Product / competition detail ——— */
.product-page {
    padding: 2rem 0 4rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

.product-visual {
    min-height: 320px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(145deg, var(--blue-light), var(--blue-dark));
}

.product-visual--photo {
    background: var(--gray-200);
}

.product-visual--photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.product-visual--grad-tech {
    background: linear-gradient(145deg, #6366f1, #4338ca);
}

.product-visual--grad-cash {
    background: linear-gradient(145deg, #10b981, #047857);
}

.product-visual--grad-custom {
    background: linear-gradient(145deg, var(--blue-light), #7c3aed);
}

.product-visual--grad-other {
    background: linear-gradient(145deg, #ec4899, #be185d);
}

.card--elevated {
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.product-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.5rem;
    font-weight: 800;
}

.product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 1.25rem;
}

.progress-block {
    margin-bottom: 1.25rem;
}

.progress-bar {
    height: 10px;
    background: var(--gray-200);
    border-radius: 999px;
    overflow: hidden;
}

.progress-bar__fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--blue-light));
    border-radius: 999px;
    transition: width 0.4s ease;
}

.progress-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

.product-desc {
    margin: 1rem 0;
}

.product-meta {
    margin-top: 1rem;
}

.product-cta-hint {
    margin: 0 0 0.75rem;
}

.product-cta-hint a {
    color: var(--blue);
    font-weight: 600;
}

.product-form {
    max-width: none;
}

.product-form .form-lede {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-500);
}

.entry-pack-fieldset {
    border: 0;
    margin: 1rem 0 0;
    padding: 0;
    min-width: 0;
    min-inline-size: 0;
}

.entry-pack-legend {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0 0 0.5rem;
    padding: 0;
}

.entry-pack-legend.visually-hidden {
    margin: 0;
    padding: 0;
}

/* Quantity: three clickable buttons (radios hidden, labels are the UI) */
.entry-pack-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

@media (max-width: 400px) {
    .entry-pack-buttons {
        gap: 0.35rem;
    }

    .entry-pack-btn__face {
        min-height: 4.75rem;
        padding: 0.65rem 0.35rem;
    }

    .entry-pack-btn__num {
        font-size: 1.45rem;
    }

    .entry-pack-btn__price {
        font-size: 0.85rem;
    }
}

.entry-pack-btn {
    display: block;
    margin: 0;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.entry-pack-btn__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.entry-pack-btn__face {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 5.5rem;
    padding: 0.85rem 0.5rem;
    border: 2px solid var(--blue);
    border-radius: var(--radius);
    background: var(--white);
    text-align: center;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.1s ease;
}

.entry-pack-btn:hover .entry-pack-btn__face {
    border-color: var(--blue-light);
    background: rgba(32, 104, 178, 0.06);
}

.entry-pack-btn:active .entry-pack-btn__face {
    transform: scale(0.98);
}

.entry-pack-btn:has(.entry-pack-btn__input:focus-visible) .entry-pack-btn__face {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
}

.entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__face {
    background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-hover) 100%);
    border-color: #ca8a04;
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
}

.entry-pack-btn__num {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-900);
}

.entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__num {
    color: var(--gray-900);
}

.entry-pack-btn__label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-600);
}

.entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__label {
    color: var(--gray-800);
}

.entry-pack-btn__price {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--blue);
    margin-top: 0.15rem;
}

.entry-pack-btn:has(.entry-pack-btn__input:checked) .entry-pack-btn__price {
    color: var(--gray-900);
}

/* ——— Cards (generic) ——— */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow);
}

.card--empty {
    text-align: center;
    color: var(--gray-500);
}

.competition-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.competition-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.15rem;
}

.competition-card h2 a {
    color: var(--gray-900);
    text-decoration: none;
}

.competition-card h2 a:hover {
    color: var(--blue);
}

.prize,
.prize-large {
    color: var(--blue);
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.prize-large {
    font-size: 1.2rem;
}

.meta {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.competition-detail .prose {
    margin: 1rem 0;
}

.meta-list {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.35rem 1.25rem;
    margin: 1.25rem 0 0;
    font-size: 0.95rem;
}

.meta-list dt {
    color: var(--gray-500);
    margin: 0;
}

.meta-list dd {
    margin: 0;
}

/* ——— Forms ——— */
.form {
    max-width: 420px;
}

/* Full-width checkout on competition card (.form max-width would win over .product-form — comes later) */
.form.entry-checkout-form {
    max-width: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.form label {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 600;
}

.form label:first-of-type {
    margin-top: 0;
}

.form .hint {
    font-weight: 500;
    color: var(--gray-500);
    font-size: 0.9em;
}

.form select {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-900);
    font: inherit;
}

.form input,
.form textarea {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-900);
    font: inherit;
}

.form select:focus,
.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form textarea {
    resize: vertical;
    min-height: 100px;
}

.form > button[type="submit"] {
    margin-top: 1.1rem;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.form-actions .btn {
    margin-top: 0;
}

.text-button {
    display: inline-block;
    margin: 0;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--blue);
    font: inherit;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.text-button:hover {
    text-decoration: underline;
}

.text-button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.competition-back-row {
    margin: 1.25rem 0 0;
}

/* ——— FAQ & results ——— */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item summary {
    font-weight: 700;
    cursor: pointer;
    padding: 0.25rem 0;
}

.faq-item p {
    margin: 0.5rem 0 0;
    color: var(--gray-700);
}

.faq-item .faq-answer {
    padding-bottom: 0.25rem;
}

.faq-item .faq-answer > p:first-child {
    margin-top: 0.35rem;
}

.faq-item .faq-answer ul {
    margin: 0.5rem 0 0;
    padding-left: 1.25rem;
    color: var(--gray-700);
}

.faq-item .faq-answer ul li {
    margin: 0.25rem 0;
}

.faq-item .faq-answer a {
    color: var(--blue);
    font-weight: 600;
}

.results-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.results-list__item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.results-list__date {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.results-list__announce {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--gray-800);
}

.results-list__announce--muted {
    color: var(--gray-500);
    font-style: italic;
}

/* ——— Alerts ——— */
.alert {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: var(--danger);
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: var(--success);
}

.lede {
    color: var(--gray-500);
    margin: 0 0 1.5rem;
    max-width: 55ch;
}

h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.prose h2 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.prose ul {
    padding-left: 1.25rem;
}

.prose a {
    color: var(--blue);
    font-weight: 600;
}

/* ——— Footer ——— */
.site-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.75rem 0;
    margin-top: auto;
    background: var(--white);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-inner p {
    margin: 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.footer-logo-link:focus-visible {
    outline: 2px solid var(--brand-logo);
    outline-offset: 4px;
    border-radius: 4px;
}

.footer-logo {
    height: 1.65rem;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
}

.footer-logo-link:hover .footer-logo {
    opacity: 0.92;
}

.footer-nav {
    display: flex;
    gap: 1rem;
}

.footer-nav a {
    color: var(--gray-500);
    font-weight: 600;
}

.footer-nav a:hover {
    color: var(--blue);
}

/* ——— Tables (admin) ——— */
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table th,
.table td {
    text-align: left;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    color: var(--gray-500);
    font-weight: 700;
    background: var(--gray-50);
}

.table a {
    color: var(--blue);
    font-weight: 600;
}

/* ——— Cookie banner ——— */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    z-index: 100;
}

.cookie-inner {
    width: min(1180px, 100% - 2rem);
    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: min(100%, 280px);
    color: var(--gray-700);
}

.cookie-banner a {
    color: var(--blue);
    font-weight: 600;
}

.cookie-banner[hidden] {
    display: none !important;
}

code {
    font-size: 0.9em;
    background: var(--gray-100);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
}

/* ——— Show landing (home) — blue primary (aligned with logo / --blue) ——— */
:root {
    --show-primary: var(--blue);
    --show-primary-light: var(--blue-light);
    --show-primary-dark: var(--blue-dark);
    --show-primary-deep: #0f2947;
    --show-bg-dark: #0a1628;
    --show-accent: #facc15;
    --show-accent-bright: #fde047;
    --show-font-display: "Bebas Neue", Impact, sans-serif;
}

body.page-show {
    background: var(--show-bg-dark);
    color: var(--gray-900);
}

body.page-show .main--full {
    padding-top: 0;
    padding-bottom: 0;
}

body.page-show #main.main.main--full {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

body.page-show .site-header {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.94) 0%, rgba(15, 41, 71, 0.92) 100%);
    border-bottom: 1px solid rgba(147, 197, 253, 0.35);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

body.page-show .entry-checkout-submit:not(.entry-checkout-submit--widget) {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.94) 0%, rgba(15, 41, 71, 0.92) 100%);
    color: var(--white);
    border: 1px solid rgba(147, 197, 253, 0.45);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

body.page-show .entry-checkout-submit:not(.entry-checkout-submit--widget):hover {
    background: linear-gradient(180deg, rgba(15, 41, 71, 0.98) 0%, rgba(24, 62, 100, 0.98) 100%);
    color: var(--white);
    filter: brightness(1.05);
}

body.page-show .entry-checkout-submit:not(.entry-checkout-submit--widget):active {
    filter: brightness(0.98);
}

body.page-show .entry-checkout-submit--widget {
    background: var(--entry-widget-blue) !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(13, 110, 253, 0.4) !important;
}

body.page-show .entry-checkout-submit--widget:hover {
    background: var(--entry-widget-blue-hover) !important;
    filter: none !important;
}

body.page-show .nav--main a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

body.page-show .nav--main a:hover {
    color: var(--show-accent-bright);
}

body.page-show .nav-signin {
    color: rgba(255, 255, 255, 0.85);
}

body.page-show .nav-signin:hover {
    color: var(--show-accent-bright);
}

body.page-show .btn-nav.btn-outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    background: transparent;
}

body.page-show .btn-nav.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

body.page-show .btn-nav.btn-yellow {
    background: linear-gradient(180deg, var(--show-accent-bright) 0%, var(--show-accent) 100%);
    color: var(--show-bg-dark);
    box-shadow: 0 2px 12px rgba(250, 204, 21, 0.35);
}

body.page-show .btn-nav.btn-yellow:hover {
    filter: brightness(1.05);
    color: var(--show-bg-dark);
}

/* ——— Mobile navigation (drawer) ≤1100px ——— */
@media (max-width: 1100px) {
    /*
     * backdrop-filter on .site-header creates a containing block for position:fixed
     * children, so the drawer was only as tall as the header bar on page-show.
     */
    body.page-show .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header-inner {
        position: relative;
        z-index: 102;
    }

    .logo {
        margin-inline-end: 0;
        position: relative;
        z-index: 105;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        margin-left: auto;
        padding: 0;
        border: none;
        border-radius: 10px;
        background: transparent;
        color: var(--gray-700);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 105;
    }

    .nav-toggle:focus-visible {
        outline: 2px solid var(--brand-logo);
        outline-offset: 2px;
    }

    .nav-toggle__bars {
        position: relative;
    }

    .nav-toggle__bars,
    .nav-toggle__bars::before,
    .nav-toggle__bars::after {
        display: block;
        width: 1.375rem;
        height: 2px;
        background: currentColor;
        border-radius: 1px;
        transition:
            transform 0.2s ease,
            opacity 0.2s ease,
            background 0.2s ease;
    }

    .nav-toggle__bars::before,
    .nav-toggle__bars::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .nav-toggle__bars::before {
        top: -7px;
    }

    .nav-toggle__bars::after {
        top: 7px;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__bars {
        background: transparent;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
        top: 0;
        transform: rotate(-45deg);
    }

    body.page-show .nav-toggle {
        color: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(0, 0, 0, 0.22);
    }

    body.page-show .nav-toggle:focus-visible {
        outline-color: var(--show-accent-bright);
    }

    .header-backdrop:not([hidden]) {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 99;
        background: rgba(10, 22, 40, 0.5);
        backdrop-filter: blur(3px);
    }

    .header-drawer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: calc(0.9rem + 0.9rem + 2.35rem + env(safe-area-inset-top, 0px));
        padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
        padding-inline: max(1.25rem, env(safe-area-inset-left, 0px)) max(1.25rem, env(safe-area-inset-right, 0px));
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1.25rem;
        flex: none;
        max-width: none;
        margin: 0;
        z-index: 100;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity 0.22s ease,
            visibility 0.22s ease,
            transform 0.22s ease;
        background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(15, 41, 71, 0.98) 45%, #0a1628 100%);
        border-bottom: 1px solid rgba(147, 197, 253, 0.28);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    }

    body:not(.page-show) .header-drawer {
        background: var(--white);
        border-bottom-color: var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .header-drawer.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .nav--main {
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        flex-wrap: nowrap;
    }

    .nav--main a {
        padding: 0.85rem 1rem;
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
    }

    body.page-show .nav--main a {
        color: rgba(255, 255, 255, 0.94);
    }

    body.page-show .nav--main a:hover,
    body.page-show .nav--main a:focus-visible {
        background: rgba(255, 255, 255, 0.1);
        color: var(--show-accent-bright);
    }

    body:not(.page-show) .nav--main a {
        color: var(--gray-900);
    }

    body:not(.page-show) .nav--main a:hover,
    body:not(.page-show) .nav--main a:focus-visible {
        background: var(--gray-100);
        color: var(--blue);
    }

    .nav-actions {
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(147, 197, 253, 0.28);
    }

    body:not(.page-show) .nav-actions {
        border-top-color: var(--gray-200);
    }

    .nav-actions .nav-signin {
        padding: 0.85rem 1rem;
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    body.page-show .nav-actions .nav-signin {
        color: rgba(255, 255, 255, 0.9);
    }

    body.page-show .nav-actions .nav-signin:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--show-accent-bright);
    }

    body:not(.page-show) .nav-actions .nav-signin {
        color: var(--gray-700);
    }

    body:not(.page-show) .nav-actions .nav-signin:hover {
        background: var(--gray-100);
        color: var(--blue);
    }

    .nav-actions .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
        min-height: 2.75rem;
        box-sizing: border-box;
    }

    body.page-show .btn-nav.btn-outline {
        border-color: rgba(255, 255, 255, 0.55);
        color: var(--white);
    }

    body.page-show .btn-nav.btn-yellow {
        width: 100%;
    }
}

body.page-show .site-footer {
    background: linear-gradient(180deg, var(--show-primary-deep) 0%, #050d18 100%);
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(147, 197, 253, 0.25);
}

body.page-show .footer-nav a,
body.page-show .footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

body.page-show .footer-nav a:hover {
    color: var(--show-accent-bright);
}

.show-hero {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 0;
    background: radial-gradient(ellipse 120% 80% at 50% 0%, var(--show-primary-dark) 0%, var(--show-primary-deep) 45%, var(--show-bg-dark) 100%);
    color: var(--white);
}

.show-hero--has-banner {
    background-image: linear-gradient(
            180deg,
            rgba(10, 22, 40, 0.9) 0%,
            rgba(15, 41, 71, 0.88) 42%,
            rgba(10, 22, 40, 0.94) 100%
        ),
        var(--hero-bg-image);
    background-size: cover, cover;
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
}

.show-hero--prize-focus.show-hero--has-banner {
    min-height: min(72vh, 560px);
    padding-top: 2rem;
    background-image: linear-gradient(
            105deg,
            rgba(5, 8, 14, 0.92) 0%,
            rgba(5, 8, 14, 0.55) 40%,
            rgba(5, 8, 14, 0.22) 68%,
            rgba(5, 8, 14, 0.05) 100%
        ),
        var(--hero-bg-image);
    background-size: cover, cover;
    background-position: center left, center center;
    background-repeat: no-repeat, no-repeat;
}

.show-hero__scrim {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 45%);
}

.show-hero--prize-focus .show-hero__glow,
.show-hero--prize-focus .show-hero__rays {
    opacity: 0.35;
}

.show-hero--prize-focus .show-hero__stage {
    display: none;
}

.show-hero--prize-focus .show-hero__grid {
    grid-template-columns: 1fr;
    justify-items: start;
    align-content: center;
    text-align: left;
    min-height: min(58vh, 440px);
    padding-bottom: 2.5rem;
}

.show-hero--prize-focus .show-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 38rem;
}

.show-hero--prize-focus .show-hero__title {
    font-weight: 800;
    text-shadow: 0 3px 28px rgba(0, 0, 0, 0.65);
}

.show-hero--prize-focus .show-hero__tagline {
    color: #7dd3fc;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.show-hero--has-banner .show-hero__glow {
    opacity: 0.45;
}

.show-hero__glow {
    position: absolute;
    inset: -20% -10% 30%;
    background: radial-gradient(ellipse at 50% 40%, rgba(147, 197, 253, 0.32) 0%, transparent 55%);
    pointer-events: none;
}

.show-hero__rays {
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        from 0deg at 50% 100%,
        transparent 0deg 8deg,
        rgba(255, 255, 255, 0.03) 8deg 9deg
    );
    pointer-events: none;
    mask-image: linear-gradient(to top, black, transparent 70%);
}

.show-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 2rem;
    z-index: 1;
}

@media (max-width: 900px) {
    .show-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .show-hero__actions {
        justify-content: center;
    }

    .show-hero__stage {
        min-height: 200px;
        order: -1;
    }

    .show-hero--prize-focus .show-hero__grid {
        justify-items: center;
        text-align: center;
        min-height: 0;
    }

    .show-hero--prize-focus .show-hero__copy {
        max-width: 100%;
    }

    .show-stats__inner {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .show-stats__block {
        justify-content: flex-start;
    }
}

.show-hero__eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--show-accent);
}

.show-hero__title {
    margin: 0;
    font-family: var(--show-font-display);
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.show-hero__tagline {
    margin: 0.75rem 0 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--show-accent-bright);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.show-hero__lead {
    margin: 1.25rem 0 0;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 900px) {
    .show-hero__lead {
        margin-inline: auto;
    }
}

.show-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.btn-show-hot {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(180deg, var(--show-primary-light) 0%, var(--show-primary-dark) 100%);
    border: 2px solid rgba(191, 219, 254, 0.55);
    box-shadow: 0 6px 24px rgba(32, 104, 178, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.12s, filter 0.12s;
}

.btn-show-hot--ticket {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.btn-show-hot__ticket {
    flex-shrink: 0;
    opacity: 0.95;
}

.btn-show-hot:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-show-outline {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.55);
    transition: background 0.15s, border-color 0.15s;
}

.btn-show-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--show-accent);
    color: var(--white);
}

.show-hero__stage {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-pot {
    position: relative;
    z-index: 2;
    padding: 1rem 1.5rem 1.25rem;
    background: linear-gradient(145deg, var(--show-primary) 0%, var(--show-primary-dark) 100%);
    border: 3px solid var(--show-accent);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.3);
    text-align: center;
    transform: rotate(-3deg);
    max-width: 280px;
}

.show-pot__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--show-accent);
}

.show-pot__value {
    display: block;
    margin-top: 0.35rem;
    font-family: var(--show-font-display);
    font-size: 1.65rem;
    line-height: 1.1;
    letter-spacing: 0.03em;
    color: var(--white);
}

.show-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.show-orb {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.show-orb--gold {
    top: 8%;
    right: 12%;
    background: radial-gradient(circle at 30% 30%, var(--show-accent-bright), #0ea5e9);
    color: var(--show-bg-dark);
}

.show-orb--red {
    bottom: 18%;
    left: 8%;
    background: radial-gradient(circle at 30% 30%, #93c5fd, var(--show-primary));
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
    line-height: 1;
}

.show-orb--yellow {
    top: 40%;
    right: 0;
    background: radial-gradient(circle at 30% 30%, #fef08a, #eab308);
    color: var(--show-bg-dark);
}

.show-coins {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: linear-gradient(90deg, transparent, rgba(147, 197, 253, 0.4), transparent);
    border-radius: 50%;
    filter: blur(8px);
}

.show-countdown {
    position: relative;
    z-index: 2;
    margin-top: 0.5rem;
    padding: 1rem 0 1.5rem;
    background: linear-gradient(180deg, var(--show-primary-dark) 0%, var(--show-primary-deep) 100%);
    border-top: 3px dashed rgba(147, 197, 253, 0.45);
    box-shadow: inset 0 12px 24px rgba(0, 0, 0, 0.25);
}

.show-countdown--empty .show-countdown__inner {
    justify-content: center;
    text-align: center;
}

.show-countdown__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 2rem;
}

.show-countdown__label {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.show-countdown__nums {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.show-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 3.25rem;
    padding: 0.5rem 0.65rem;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(147, 197, 253, 0.45);
    border-radius: 8px;
}

.show-countdown__val {
    font-family: var(--show-font-display);
    font-size: 1.75rem;
    line-height: 1;
    color: var(--white);
    letter-spacing: 0.05em;
}

.show-countdown__cap {
    margin-top: 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.show-countdown__sep {
    font-family: var(--show-font-display);
    font-size: 1.5rem;
    color: var(--show-accent);
    padding-bottom: 1rem;
}

.show-stats {
    background: #2d3238;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.35rem 0;
}

.show-stats__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 2rem;
    align-items: center;
}

.show-stats__block {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.show-stats__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 4px;
    color: var(--white);
}

.show-stats__icon svg {
    display: block;
}

.show-stats__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    text-align: left;
}

.show-stats__value {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.show-stats__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.3;
}

.show-band {
    position: relative;
    padding: 3.5rem 0;
    background: #f4f8fc;
    overflow: hidden;
}

.show-band__dots {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image: radial-gradient(circle, #e7e5e4 1px, transparent 1px);
    background-size: 14px 14px;
    pointer-events: none;
}

.show-band__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: center;
    z-index: 1;
}

@media (max-width: 900px) {
    .show-band__grid {
        grid-template-columns: 1fr;
    }

    .show-band__art {
        min-height: 220px;
    }
}

.show-band__art-link {
    display: block;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    outline-offset: 4px;
}

.show-band__art {
    position: relative;
    min-height: 280px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #e0f2fe 0%, #bfdbfe 45%, #93c5fd 100%);
    border: 3px solid var(--show-primary-light);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.show-band__art--photo {
    background: linear-gradient(160deg, rgba(15, 41, 71, 0.4), rgba(10, 22, 40, 0.55));
    overflow: hidden;
}

.show-band__art-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.show-band__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.52) 100%);
    pointer-events: none;
}

.show-band__jackpot {
    font-family: var(--show-font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    line-height: 0.95;
    text-align: center;
    color: var(--show-primary-deep);
    text-shadow: 2px 2px 0 rgba(147, 197, 253, 0.85);
    letter-spacing: 0.06em;
}

.show-band__art--photo .show-band__jackpot {
    position: relative;
    z-index: 2;
}

.show-band__jackpot--live:not(.show-band__jackpot--on-photo) {
    font-size: clamp(1.2rem, 4vw, 2rem);
    letter-spacing: 0.04em;
    line-height: 1.1;
    max-width: 95%;
    white-space: normal;
    word-break: break-word;
}

.show-band__jackpot--on-photo {
    color: var(--white);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
    padding: 0 1rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    font-size: clamp(1.1rem, 3.4vw, 1.85rem);
    letter-spacing: 0.03em;
    line-height: 1.12;
}

.show-band__balls {
    display: flex;
    gap: 0.65rem;
    align-items: flex-end;
}

.show-band__balls span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.show-band__balls span:nth-child(1) {
    background: linear-gradient(145deg, #3b82f6, #1d4ed8);
    transform: translateY(8px);
}

.show-band__balls span:nth-child(2) {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.35rem;
    background: linear-gradient(145deg, var(--show-primary-light), var(--show-primary-dark));
}

.show-band__balls span:nth-child(3) {
    background: linear-gradient(145deg, #22c55e, #15803d);
    transform: translateY(8px);
}

.show-band__shine {
    position: absolute;
    inset: 10% 15% auto;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
}

.show-band__title {
    margin: 0 0 1rem;
    font-family: var(--show-font-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--show-primary-deep);
}

.show-band__lede {
    margin: 0 0 1.5rem;
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.6;
}

.show-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.show-features__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.show-features__icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    border: 2px solid var(--show-primary-light);
    background: rgba(32, 104, 178, 0.08);
    position: relative;
}

.show-features__icon--trophy::after {
    content: "";
    position: absolute;
    inset: 22% 18%;
    border: 3px solid var(--show-primary-light);
    border-radius: 4px 4px 8px 8px;
    border-top: none;
    box-shadow: 0 -6px 0 0 var(--show-primary-light);
}

.show-features__icon--shield::after {
    content: "";
    position: absolute;
    inset: 18% 22%;
    border: 3px solid var(--show-primary-light);
    border-radius: 4px 4px 10px 10px;
}

.show-features__icon--mail::after {
    content: "";
    position: absolute;
    inset: 28% 16%;
    border: 3px solid var(--show-primary-light);
    border-radius: 4px;
    height: 42%;
}

.show-features__name {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--show-primary-light);
    margin-bottom: 0.2rem;
}

.show-features__desc {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.show-band__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-show-join {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(180deg, var(--show-primary-light) 0%, var(--show-primary) 100%);
    border: 2px solid rgba(191, 219, 254, 0.65);
    box-shadow: 0 4px 16px rgba(32, 104, 178, 0.35);
}

.btn-show-join:hover {
    filter: brightness(1.06);
    color: var(--white);
}

.btn-show-results {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(180deg, var(--show-primary) 0%, var(--show-primary-deep) 100%);
    border: 2px solid rgba(191, 219, 254, 0.45);
}

.btn-show-results:hover {
    filter: brightness(1.06);
    color: var(--white);
}

/* Full-bleed light band behind competition grids (wrap alone left dark gutters on wide screens) */
.page-home-listings {
    width: 100%;
    background: #f4f8fc;
    border-top: 1px solid rgba(32, 104, 178, 0.1);
}

/* No full-main tint: avoids a light band under the header (was padding + #f4f8fc). Listings use .page-home-listings. */
body.page-show .main.main--full {
    background-color: transparent;
}

/* Inner pages: same light content well as home competition grids */
.page-show-surface {
    width: 100%;
    flex: 1;
    background: #f4f8fc;
    border-top: 1px solid rgba(32, 104, 178, 0.1);
    padding: 2.5rem 0 4rem;
}

body.page-show .page-stack > h1.section-heading--show {
    font-family: var(--show-font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--show-primary-deep);
    margin: 0 0 1rem;
}

body.page-show .page-stack .lede {
    color: var(--gray-700);
}

body.page-show .page-stack a:not(.btn) {
    color: var(--show-primary);
    font-weight: 600;
}

body.page-show .page-stack a:not(.btn):hover {
    color: var(--show-primary-light);
}

body.page-show .product-page {
    padding-bottom: 0;
}

body.page-show .product-panel.card--elevated {
    border: 2px solid rgba(32, 104, 178, 0.2);
    box-shadow: 0 8px 32px rgba(15, 41, 71, 0.1);
}

body.page-show .product-panel .product-title {
    font-family: var(--show-font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--show-primary-deep);
    line-height: 1.05;
}

body.page-show .product-visual--grad-tech,
body.page-show .product-visual--grad-cash,
body.page-show .product-visual--grad-other,
body.page-show .product-visual--grad-custom {
    background: linear-gradient(145deg, var(--show-primary) 0%, var(--show-primary-deep) 100%) !important;
}

body.page-show .competition-list .competition-card {
    border: 1px solid rgba(32, 104, 178, 0.12);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.page-home__content--show {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
    background: transparent;
}

body.page-home .page-home__content--show .section-heading--show {
    font-family: var(--show-font-display);
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--show-primary-deep);
}

.card--show {
    border: 2px solid rgba(32, 104, 178, 0.2);
    box-shadow: 0 8px 32px rgba(15, 41, 71, 0.08);
}

.card--show-empty {
    text-align: center;
    font-weight: 600;
    color: var(--gray-700);
    border: 2px dashed rgba(32, 104, 178, 0.35);
    background: var(--white);
}

.section-competitions--show {
    margin-bottom: 2.5rem;
}

.section-competitions--show .active-competitions-note {
    margin-top: 1rem;
}

.filter-pills--show .filter-pill:hover,
.filter-pills--show .filter-pill.is-active {
    border-color: var(--show-primary-light);
    background: rgba(32, 104, 178, 0.08);
    color: var(--show-primary-light);
}

body.page-home .page-home__content--show .competition-tile__link {
    border-color: rgba(32, 104, 178, 0.14);
    box-shadow: 0 8px 30px rgba(15, 41, 71, 0.1);
}

body.page-home .page-home__content--show .competition-tile:hover .competition-tile__link {
    box-shadow: 0 14px 44px rgba(15, 41, 71, 0.14);
}

body.page-home .page-home__content--show .competition-tile__cta {
    border-color: var(--show-primary-light, var(--blue));
    color: var(--show-primary-light, var(--blue));
    background: transparent;
}

body.page-home .page-home__content--show .competition-tile__link:hover .competition-tile__cta {
    background: rgba(32, 104, 178, 0.08);
}

body.page-home .page-home__content--show .competition-tile__sold-label {
    color: var(--show-primary-light, var(--blue-light));
}

body.page-home .page-home__content--show .competition-tile__progress-fill {
    background: linear-gradient(
        90deg,
        var(--show-primary-dark, var(--blue-dark)) 0%,
        var(--show-primary-light, var(--blue-light)) 100%
    );
}

body.page-home .page-home__content--show .competition-tile__visual:not(.competition-tile__visual--photo) {
    background: linear-gradient(145deg, var(--show-primary) 0%, var(--show-primary-deep) 100%) !important;
}

body.page-home .page-home__content--show .competition-tile--tech .competition-tile__visual:not(.competition-tile__visual--photo),
body.page-home .page-home__content--show .competition-tile--cash .competition-tile__visual:not(.competition-tile__visual--photo),
body.page-home .page-home__content--show .competition-tile--other .competition-tile__visual:not(.competition-tile__visual--photo) {
    background: linear-gradient(145deg, var(--show-primary) 0%, var(--show-primary-deep) 100%) !important;
}

.show-strip {
    position: relative;
    padding: 1.35rem 0;
    margin-top: 0;
    background: linear-gradient(180deg, var(--show-primary-light) 0%, var(--show-primary-dark) 100%);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
}

.show-strip::before {
    content: "";
    display: block;
    height: 6px;
    margin: -1.35rem 0 1rem;
    background: repeating-linear-gradient(
        90deg,
        var(--show-accent) 0,
        var(--show-accent) 8px,
        rgba(0, 0, 0, 0.2) 8px,
        rgba(0, 0, 0, 0.2) 14px
    );
}

.show-strip__inner {
    text-align: center;
}

.show-strip__text {
    margin: 0;
    font-family: var(--show-font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* ——— Mobile polish (touch, spacing, overflow) ——— */
@media (max-width: 640px) {
    .main {
        padding: 1.25rem 0 3rem;
    }

    .page-home__content {
        padding: 1.5rem 0 3rem;
    }

    .page-show-surface {
        padding: 1.5rem 0 max(3rem, env(safe-area-inset-bottom, 0px));
    }

    .product-page {
        padding: 1.25rem 0 2.5rem;
    }

    .filter-pill {
        min-height: 2.75rem;
        padding: 0.5rem 1.1rem;
        font-size: 0.9rem;
    }

    .filter-pills {
        gap: 0.45rem;
    }

    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .competition-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .competition-grid--featured {
        grid-template-columns: 1fr;
    }

    .competition-tile:active {
        transform: scale(0.99);
    }

    .how-to-enter {
        padding: 1.25rem 1.15rem;
    }

    .form input,
    .form select,
    .form textarea {
        min-height: 2.75rem;
        padding: 0.75rem 0.95rem;
        font-size: 1rem;
    }

    .form textarea {
        min-height: 7rem;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .form-actions .btn {
        width: 100%;
        text-align: center;
        min-height: 2.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cookie-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        width: calc(100% - 2rem);
        max-width: 100%;
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
    }

    .cookie-banner .btn-yellow {
        width: 100%;
        min-height: 2.75rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        text-align: left;
    }

    .entry-method-tab {
        min-height: 2.75rem;
        padding: 0.75rem 0.65rem;
        font-size: 0.72rem;
    }

    .show-hero {
        padding: 1.5rem 0 0;
    }

    .show-hero__grid {
        gap: 1.35rem;
        padding-bottom: 1.35rem;
    }

    .show-hero__tagline {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
    }

    .show-hero__lead {
        font-size: 1rem;
    }

    .show-hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }

    .btn-show-hot,
    .btn-show-outline {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding-top: 0.95rem;
        padding-bottom: 0.95rem;
    }

    .show-countdown {
        padding: 0.85rem 0 1.15rem;
    }

    .show-countdown__inner {
        flex-direction: column;
        gap: 0.85rem;
    }

    .show-countdown__nums {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
    }

    .show-countdown__unit {
        min-width: 2.85rem;
        padding: 0.45rem 0.5rem;
    }

    .show-countdown__val {
        font-size: 1.5rem;
    }

    .show-countdown__sep {
        display: none;
    }

    .show-band {
        padding: 2.25rem 0;
    }

    .show-band__ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-show-join,
    .btn-show-results {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        min-height: 2.75rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.page-home .page-home__content--show .section-heading--show {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
    }
}

@media (max-width: 400px) {
    .wrap {
        width: calc(100% - 1.25rem);
    }

    .logo__img {
        max-width: min(200px, 62vw);
    }
}

/* Basket — sign-in before Stripe */
.entry-method-guest-hint--checkout {
    margin-bottom: 0.75rem;
}

.basket-page__pay-form {
    margin-top: 1rem;
}

.basket-page__remove-form {
    margin-top: 0.75rem;
}

.basket-page__auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 0.5rem;
}

/* Checkout — Basket / Summary / Payment */
.checkout-steps {
    margin: 0 0 1.5rem;
}

.checkout-steps__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500, #64748b);
}

.checkout-steps__item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.checkout-steps__item:not(:last-child)::after {
    content: "›";
    margin-left: 0.35rem;
    color: var(--gray-400, #94a3b8);
    font-weight: 500;
}

.checkout-steps__item--current {
    color: var(--gray-900, #0f172a);
}

.checkout-steps__item a {
    color: var(--blue, #2563eb);
    text-decoration: none;
    font-weight: 600;
}

.checkout-steps__item a:hover {
    text-decoration: underline;
}

.checkout-steps__muted {
    font-weight: 600;
    color: var(--gray-400, #94a3b8);
}

.checkout-summary-wrap {
    max-width: 72rem;
    margin: 0 auto;
    padding-bottom: 2.5rem;
}

.checkout-summary-alert {
    margin-bottom: 1rem;
}

.checkout-summary-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media (min-width: 900px) {
    .checkout-summary-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
        gap: 1.75rem;
    }
}

.checkout-summary-main {
    padding: 1.35rem 1.5rem 1.5rem;
}

.checkout-account-head {
    margin-bottom: 1.25rem;
}

.checkout-account-head__row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

.checkout-account-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

.checkout-account-login {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.checkout-account-login a {
    color: var(--blue, #2563eb);
    text-decoration: none;
}

.checkout-account-login a:hover {
    text-decoration: underline;
}

.checkout-account-signedin {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    color: var(--gray-600, #475569);
}

.checkout-summary-form .checkout-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    cursor: pointer;
}

.checkout-summary-form .checkout-checkbox input {
    width: auto;
    margin: 0.2rem 0 0;
    flex-shrink: 0;
}

.checkout-checkbox--spend {
    padding: 0.85rem 1rem;
    background: var(--gray-50, #f8fafc);
    border-radius: 8px;
    border: 1px solid var(--gray-200, #e2e8f0);
}

.checkout-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 520px) {
    .checkout-name-row {
        grid-template-columns: 1fr;
    }
}

.checkout-phone-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    align-items: end;
}

@media (max-width: 520px) {
    .checkout-phone-row {
        grid-template-columns: 1fr;
    }
}

.checkout-phone-cc select {
    width: 100%;
    font: inherit;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200, #e2e8f0);
}

.checkout-password-field {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 8px;
    border: 1px solid var(--gray-200, #e2e8f0);
    overflow: hidden;
    background: var(--white, #fff);
}

.checkout-password-input {
    flex: 1;
    border: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.checkout-password-toggle {
    flex-shrink: 0;
    padding: 0 0.85rem;
    border: 0;
    background: var(--gray-50, #f8fafc);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue, #2563eb);
    cursor: pointer;
}

.checkout-password-toggle:hover {
    background: var(--gray-100, #f1f5f9);
}

.btn-checkout-proceed {
    background: #16a34a !important;
    color: #fff !important;
    border: none;
    font-weight: 800;
    padding: 0.85rem 1.25rem;
    margin-top: 0.5rem;
}

.btn-checkout-proceed:hover {
    filter: brightness(1.06);
}

.checkout-pay-trust {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200, #e2e8f0);
}

.checkout-pay-trust__label {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gray-500, #64748b);
}

.checkout-pay-brands {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gray-600, #475569);
}

.checkout-summary-side {
    padding: 1.35rem 1.5rem;
}

.checkout-side-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.checkout-order-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--gray-200, #e2e8f0);
    border-radius: 10px;
    background: var(--gray-50, #f8fafc);
}

.checkout-order-thumb-wrap {
    position: relative;
    flex-shrink: 0;
}

.checkout-order-thumb {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    border: 1px solid var(--gray-200, #e2e8f0);
}

.checkout-order-thumb--placeholder {
    width: 88px;
    height: 88px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gray-200, #e2e8f0), var(--gray-100, #f1f5f9));
}

.checkout-order-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 999px;
    border: 2px solid var(--white, #fff);
}

.checkout-order-meta {
    min-width: 0;
}

.checkout-order-title {
    margin: 0 0 0.35rem;
    font-weight: 800;
    font-size: 0.95rem;
    line-height: 1.35;
}

.checkout-order-price {
    margin: 0;
    font-weight: 800;
    font-size: 1rem;
}

.checkout-promo-row {
    margin: 1rem 0 0;
}

.checkout-promo-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue, #2563eb);
    cursor: default;
    text-decoration: underline;
}

.checkout-totals {
    margin: 1.25rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200, #e2e8f0);
}

.checkout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

.checkout-totals__row dt {
    margin: 0;
    font-weight: 600;
    color: var(--gray-600, #475569);
}

.checkout-totals__row dd {
    margin: 0;
    font-weight: 600;
}

.checkout-totals__row--total {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--gray-200, #e2e8f0);
    font-size: 1.05rem;
}

.checkout-basket-layout {
    padding: 1.35rem 1.5rem 1.5rem;
}

.checkout-basket-heading {
    margin-bottom: 1rem !important;
}

.checkout-basket-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.checkout-basket-meta {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.checkout-basket-edit {
    margin: 0;
    font-size: 0.9rem;
}

.checkout-basket-edit a {
    color: var(--blue, #2563eb);
    font-weight: 600;
    text-decoration: none;
}

.checkout-basket-edit a:hover {
    text-decoration: underline;
}

.checkout-basket-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.basket-page-empty {
    padding: 1.5rem;
}
