:root {
    --bg: #090b16;
    --bg-soft: #101321;
    --text: #ffffff;
    --ink: #101014;
    --muted: #a8adbd;
    --paper: #f7f4ef;
    --surface: #ffffff;
    --line: rgba(16, 16, 20, .12);
    --border: rgba(255, 255, 255, .11);
    --gold: #d7a747;
    --coral: #d95b43;
    --blue: #24546f;
    --pink: #e91e63;
    --logo-red: #d92855;
    --magenta: #c026d3;
    --violet: #7c3aed;
    --gradient: linear-gradient(135deg, #7c3aed, #c026d3, #e91e63);
    --shadow: 0 24px 70px rgba(16, 16, 20, .16);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    padding: 12px clamp(18px, 5vw, 72px);
    border-bottom: 1px solid var(--border);
    background: rgba(9, 11, 22, .78);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    background: rgba(9, 11, 22, .9);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-logo {
    width: auto;
    height: 58px;
    max-width: 250px;
    object-fit: contain;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-soft);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    color: var(--muted);
    font-size: .95rem;
    font-weight: 650;
}

.site-nav a {
    position: relative;
    transition: color .2s ease, text-shadow .2s ease, filter .2s ease;
}

.nav-home-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-home-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-home-link span {
    font-size: 0;
}

.site-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    border-radius: 999px;
    background: var(--gradient);
    opacity: 0;
    transform: scaleX(.35);
    transition: opacity .2s ease, transform .2s ease;
}

.site-nav a:hover {
    color: var(--text);
    text-shadow: 0 0 18px rgba(233, 30, 99, .7), 0 0 34px rgba(124, 58, 237, .45);
}

.site-nav a:not(.btn):hover::after {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 18px rgba(233, 30, 99, .8);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: var(--radius);
    color: var(--text);
    background: var(--gradient);
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(233, 30, 99, .22);
}

.btn-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: .92rem;
}

.site-nav .btn:hover {
    filter: brightness(1.16) saturate(1.18);
}

.cart-link {
    gap: 10px;
}

.cart-link strong {
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: .8rem;
}

.brand span {
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--blue);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding-top: 82px;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(217, 40, 85, .34), transparent 28%),
        linear-gradient(90deg, rgba(9, 11, 22, .9), rgba(9, 11, 22, .58) 48%, rgba(9, 11, 22, .24));
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(44px, 8vw, 92px) 0 clamp(52px, 8vw, 96px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero h1,
.event-hero h1,
.section-heading h1,
.status-page h1 {
    margin: 0;
    max-width: 880px;
    font-size: clamp(2.35rem, 6.2vw, 5.55rem);
    line-height: .96;
    letter-spacing: 0;
}

.hero p:not(.eyebrow),
.event-hero p:not(.eyebrow) {
    width: min(650px, 100%);
    color: rgba(255, 255, 255, .84);
    font-size: 1.12rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
}

.button.primary {
    border-color: transparent;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 16px 40px rgba(233, 30, 99, .22);
}

.button.ghost {
    border-color: rgba(255, 255, 255, .48);
    color: #fff;
}

.button.compact {
    min-height: 40px;
    padding: 0 15px;
    background: var(--ink);
    color: #fff;
}

.button.full {
    width: 100%;
}

.sale-status-pill {
    width: max-content;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin-top: 12px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, .1);
    font-weight: 850;
}

.sale-status-pill.status-private,
.sale-status-pill.status-pending {
    border-color: transparent;
    color: #fff !important;
}

.sale-status-pill.status-private {
    background: linear-gradient(135deg, #7c3aed, #e91e63) !important;
}

.sale-status-pill.status-pending {
    background: linear-gradient(135deg, #d7a747, #d95b43) !important;
}

.trust-band {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-block: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .28), rgba(233, 30, 99, .22)),
        rgba(9, 11, 22, .9);
    box-shadow: 0 18px 54px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
}

.trust-band span {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 20px clamp(18px, 5vw, 72px);
    color: rgba(255, 255, 255, .9);
    font-weight: 800;
    line-height: 1.22;
}

.trust-band span + span {
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.trust-band strong {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 0 24px rgba(233, 30, 99, .28);
    font-size: .92rem;
}

.section {
    padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
    width: min(1120px, 100%);
    max-width: 1120px;
    margin-inline: auto;
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4.4vw, 4.2rem);
    line-height: 1;
}

.event-grid {
    width: min(1120px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.event-search-tools {
    width: min(1120px, 100%);
    margin: -8px auto 22px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 300px);
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .78);
}

.event-search-tools label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: .84rem;
    font-weight: 850;
}

.event-search-tools input,
.event-search-tools select {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(16, 16, 20, .14);
    border-radius: var(--radius);
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.event-card,
.product-card,
.support-card,
.summary,
.empty-state,
.cart-line,
.note-section,
.legal-page {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
}

.event-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.event-card-placeholder {
    background: #17111e;
    color: #fff;
}

.event-card-placeholder img {
    filter: saturate(.85) brightness(.72);
}

.event-card-placeholder div {
    background: linear-gradient(180deg, rgba(9, 11, 22, .02), rgba(9, 11, 22, .92));
}

.event-card-placeholder p,
.event-card-placeholder small {
    color: rgba(255, 255, 255, .74);
}

.event-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    flex: 0 0 auto;
}

.event-card span,
.product-card span,
.support-card span,
.cart-line span {
    width: max-content;
    margin: 0 0 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(215, 167, 71, .18);
    color: #8b6417;
    font-size: .74rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.status-success {
    color: #0f766e !important;
    background: rgba(15, 118, 110, .14) !important;
}

.status-processing {
    color: #6d28d9 !important;
    background: rgba(124, 58, 237, .14) !important;
}

.status-pending {
    color: #8b6417 !important;
    background: rgba(215, 167, 71, .2) !important;
}

.status-shipped {
    color: #24546f !important;
    background: rgba(36, 84, 111, .14) !important;
}

.status-danger {
    color: #b91c1c !important;
    background: rgba(185, 28, 28, .12) !important;
}

.status-private {
    color: #9d174d !important;
    background: rgba(233, 30, 99, .13) !important;
}

.status-urgent {
    color: #c2410c !important;
    background: rgba(217, 91, 67, .15) !important;
}

.status-new {
    color: #4338ca !important;
    background: rgba(67, 56, 202, .12) !important;
}

.status-neutral {
    color: #55545f !important;
    background: rgba(16, 16, 20, .08) !important;
}

.event-card div {
    display: flex;
    min-height: 290px;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.event-card-badges {
    min-height: auto !important;
    display: flex !important;
    flex: 0 0 auto !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 !important;
}

.event-card-badges span {
    margin-bottom: 6px;
}

.event-category-badge {
    color: #24546f !important;
    background: rgba(36, 84, 111, .12) !important;
}

.event-card p,
.product-card p,
.support-card p,
.cart-line p,
.summary p,
.empty-state p,
.legal-page p,
.note-section p {
    color: var(--muted);
    line-height: 1.6;
}

.event-card small {
    display: block;
    margin-bottom: 24px;
}

.event-filter-empty {
    width: min(1120px, 100%);
    margin: 18px auto 0;
    padding: 18px;
    border: 1px dashed rgba(16, 16, 20, .16);
    border-radius: var(--radius);
    color: #686873;
    background: rgba(255, 255, 255, .72);
    font-weight: 800;
    text-align: center;
}

.event-countdown {
    width: max-content;
    max-width: 100%;
    margin: 2px 0 18px;
    padding: 8px 10px;
    border-radius: 999px;
    color: #7d2350 !important;
    background: rgba(233, 30, 99, .1);
    font-size: .84rem;
    font-weight: 850;
    line-height: 1.25 !important;
}

.event-card h3,
.product-card h3,
.support-card h3,
.cart-line h2 {
    margin: 8px 0;
    font-size: 1.35rem;
}

.event-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: auto;
    border-radius: var(--radius);
    color: #fff;
    background: var(--gradient);
    font-weight: 850;
    box-shadow: 0 14px 34px rgba(233, 30, 99, .18);
}

.event-card-action-disabled {
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .08);
    box-shadow: none;
    cursor: default;
}

.product-band {
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(233, 30, 99, .08)),
        #ebe6dc;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.support-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: clamp(24px, 4vw, 36px);
    color: #fff;
    background:
        radial-gradient(circle at 86% 12%, rgba(233, 30, 99, .34), transparent 28%),
        linear-gradient(135deg, rgba(9, 11, 22, .98), rgba(16, 19, 33, .94));
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 24px 70px rgba(16, 16, 20, .18);
}

.support-card::after {
    content: "";
    position: absolute;
    inset: auto -18% -34% 36%;
    height: 180px;
    border-radius: 999px;
    background: rgba(215, 167, 71, .14);
    filter: blur(6px);
    transform: rotate(-10deg);
}

.support-card > * {
    position: relative;
    z-index: 1;
}

.support-card span {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.support-card h3 {
    max-width: 520px;
    margin-bottom: 14px;
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: 1;
}

.support-card p {
    max-width: 560px;
    color: rgba(255, 255, 255, .76);
}

.support-card ul {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.support-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .88);
    font-weight: 750;
}

.support-card li::before {
    content: "";
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-radius: 999px;
    background: var(--gradient);
    box-shadow: 0 0 16px rgba(233, 30, 99, .55);
}

.support-photo {
    background:
        radial-gradient(circle at 84% 14%, rgba(215, 167, 71, .28), transparent 28%),
        linear-gradient(135deg, rgba(9, 11, 22, .98), rgba(36, 84, 111, .9));
}

.product-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.product-card span,
.cart-line span {
    margin: 0 0 18px;
}

.product-card h3 {
    font-size: 1.45rem;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

.product-card-footer strong,
.summary strong {
    font-size: 1.5rem;
}

.event-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    align-items: stretch;
    min-height: 560px;
    background: var(--ink);
    color: #fff;
}

.event-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-hero > div {
    display: grid;
    align-content: center;
    padding: clamp(34px, 6vw, 72px);
}

.note-section,
.legal-page,
.status-page {
    width: min(900px, calc(100% - 40px));
    margin: 48px auto 90px;
    padding: clamp(28px, 5vw, 52px);
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.cart-lines {
    display: grid;
    gap: 12px;
}

.cart-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
}

.text-button {
    border: 0;
    background: transparent;
    color: var(--coral);
    font-weight: 800;
    cursor: pointer;
}

.summary,
.empty-state {
    padding: 24px;
    box-shadow: var(--shadow);
}

.summary span {
    color: var(--muted);
}

.summary form {
    display: grid;
    gap: 12px;
}

.summary label,
.access-gate label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: .88rem;
    font-weight: 850;
    text-align: left;
}

.summary input,
.summary textarea,
.access-gate input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(16, 16, 20, .16);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.free-shipping {
    width: max-content;
    max-width: 100%;
    padding: 8px 10px;
    border-radius: 999px;
    color: #0f766e !important;
    background: rgba(15, 118, 110, .1);
    font-weight: 900;
}

.cart-continue {
    width: max-content;
}

.summary strong {
    display: block;
    margin: 8px 0 12px;
}

.status-page {
    text-align: center;
}

.status-page h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.status-page p {
    color: var(--muted);
    line-height: 1.7;
}

.bank-details {
    display: grid;
    gap: 10px;
    margin: 24px auto;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.bank-reference-card {
    display: grid;
    gap: 10px;
    margin: 28px auto 18px;
    padding: clamp(24px, 5vw, 34px);
    border-radius: var(--radius);
    color: #fff;
    background:
        radial-gradient(circle at 88% 18%, rgba(215, 167, 71, .28), transparent 34%),
        linear-gradient(135deg, #101321, #321449 58%, #7d174d);
    box-shadow: 0 24px 70px rgba(16, 16, 20, .18);
}

.bank-reference-note {
    width: min(760px, 100%);
    margin: 18px auto 0;
    padding: 13px 16px;
    border: 1px solid rgba(233, 30, 99, .24);
    border-radius: var(--radius);
    color: #9d174d !important;
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .1), rgba(233, 30, 99, .12)),
        #fff;
    font-weight: 900;
}

.bank-reference-card span {
    color: rgba(255, 255, 255, .74);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bank-reference-card strong {
    display: block;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .1);
    font-size: clamp(2rem, 6vw, 3.8rem);
    letter-spacing: .04em;
}

.bank-reference-card small {
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.bank-details span {
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bank-details strong {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.admin-order-status-form {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-order-status-form select {
    min-height: 38px;
    border: 1px solid rgba(16, 16, 20, .16);
    border-radius: var(--radius);
    padding: 8px 10px;
    background: #fff;
    font: inherit;
}

.admin-order-delete-form {
    display: flex;
}

.admin-photo-grid,
.event-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.admin-photo-grid article,
.event-photo-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.admin-photo-grid img,
.event-photo-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.admin-photo-grid form {
    padding: 10px;
}

.event-photo-grid {
    width: min(1120px, 100%);
    margin: 0 auto 28px;
}

.site-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 79, 118, .16);
    background:
        radial-gradient(circle at 18% 0%, rgba(124, 58, 237, .16), transparent 34%),
        linear-gradient(180deg, rgba(16, 19, 33, .88), rgba(7, 9, 18, .98));
}

.footer-main {
    width: min(1160px, calc(100% - 36px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .7fr));
    gap: clamp(28px, 5vw, 64px);
    padding: 54px 0 46px;
}

.footer-brand-block {
    max-width: 380px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    width: min(240px, 100%);
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(217, 40, 85, .2));
}

.footer-title {
    margin: 0 0 16px;
    color: #ff4f76;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-accordion {
    border: 0;
}

.footer-accordion summary {
    list-style: none;
    cursor: default;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

.footer-accordion-content {
    display: grid;
    gap: 10px;
}

.footer-column a {
    width: fit-content;
    color: var(--muted);
    font-size: .95rem;
    transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.footer-link-button {
    width: fit-content;
    padding: 0;
    border: 0;
    color: var(--muted);
    background: transparent;
    font: inherit;
    font-size: .95rem;
    cursor: pointer;
    text-align: left;
    transition: color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-link-button:hover {
    color: var(--text);
    text-shadow: 0 0 16px rgba(255, 79, 118, .38);
    transform: translateX(3px);
}

.footer-contact p,
.footer-brand-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.footer-socials {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: var(--text);
    background: rgba(255, 255, 255, .04);
}

.footer-socials a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 79, 118, .5);
    background: var(--gradient);
}

.footer-socials svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
}

.footer-socials a:first-child svg,
.footer-socials a:last-child svg {
    fill: currentColor;
    stroke: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(3, 4, 10, .44);
}

.footer-bottom p {
    width: min(1160px, calc(100% - 36px));
    margin: 0 auto;
    padding: 13px 0;
    color: rgba(168, 173, 189, .82);
    font-size: .86rem;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    left: clamp(14px, 4vw, 34px);
    right: clamp(14px, 4vw, 34px);
    bottom: clamp(14px, 4vw, 34px);
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 20px;
    width: min(960px, calc(100% - 28px));
    margin: 0 auto;
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(233, 30, 99, .24), transparent 30%),
        linear-gradient(135deg, rgba(9, 11, 22, .98), rgba(16, 19, 33, .96));
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38);
}

.cookie-banner-copy {
    min-width: 0;
}

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

.cookie-banner span {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cookie-banner h2 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.cookie-banner p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .76);
    line-height: 1.55;
}

.cookie-banner a {
    display: inline-flex;
    margin-top: 12px;
    color: #fff;
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.cookie-preferences {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    padding-top: 4px;
}

.cookie-preferences[hidden] {
    display: none;
}

.cookie-choice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
}

.cookie-choice input {
    margin-top: 4px;
    accent-color: var(--pink);
}

.cookie-choice span {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

.cookie-choice strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.admin-login-page,
.admin-page {
    min-height: 100vh;
    padding: 130px clamp(20px, 5vw, 72px) 72px;
    background:
        radial-gradient(circle at 18% 12%, rgba(124, 58, 237, .2), transparent 32%),
        radial-gradient(circle at 82% 16%, rgba(233, 30, 99, .22), transparent 30%),
        var(--paper);
}

.admin-shell {
    background: var(--paper);
}

.admin-shell > main {
    min-height: 100vh;
}

.admin-shell .admin-login-page {
    padding-top: 72px;
}

.admin-login-card,
.admin-panel,
.admin-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 24px 70px rgba(16, 16, 20, .1);
}

.admin-login-card {
    width: min(460px, 100%);
    margin: 0 auto;
    padding: clamp(24px, 5vw, 40px);
}

.admin-login-card h1,
.admin-topbar h1 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
}

.admin-topbar {
    width: min(1160px, 100%);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-grid {
    width: min(1160px, 100%);
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-catalog-layout {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 390px);
    gap: 22px;
    align-items: start;
}

.admin-single-layout {
    grid-template-columns: minmax(0, 1fr);
}

.admin-single-layout .admin-create-event-panel {
    position: static;
    max-height: none;
    overflow: visible;
}

.admin-create-event-panel {
    position: sticky;
    top: 106px;
    max-height: calc(100vh - 126px);
    overflow: auto;
    margin-bottom: 22px;
}

.admin-catalog-column,
.admin-create-event-panel {
    width: 100%;
}

.admin-panel {
    width: min(1160px, 100%);
    margin: 0 auto 22px;
    padding: clamp(20px, 3vw, 28px);
}

.admin-panel h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
}

.admin-panel-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.admin-panel-heading h2 {
    margin-bottom: 6px;
}

.admin-panel-heading p {
    margin: 0;
    color: #686873;
    line-height: 1.5;
}

.admin-panel form,
.admin-login-card {
    display: grid;
    gap: 14px;
}

.support-builder {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .06), rgba(233, 30, 99, .06)),
        rgba(247, 244, 239, .68);
}

.support-builder-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.support-builder h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.support-builder p {
    margin: 0;
    color: #686873;
    line-height: 1.5;
}

.support-builder-head label {
    width: min(260px, 100%);
}

.support-template-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.support-template-group[hidden] {
    display: none;
}

.support-template-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.support-template-card.is-disabled {
    opacity: .68;
    background: rgba(247, 244, 239, .72);
}

.support-template-card p {
    font-size: .92rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-panel label,
.admin-login-card label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 850;
}

.admin-panel label:has(.field-help) {
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 6px;
}

.admin-panel label:has(.field-help) input,
.admin-panel label:has(.field-help) textarea,
.admin-panel label:has(.field-help) select {
    grid-column: 1 / -1;
}

.admin-panel input,
.admin-panel textarea,
.admin-panel select,
.admin-login-card input {
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(16, 16, 20, .16);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}

.admin-panel textarea {
    resize: vertical;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
}

.checkbox-label input {
    width: auto;
    min-height: auto;
}

.admin-list {
    display: grid;
    gap: 14px;
}

.admin-accordion-list {
    display: grid;
    gap: 12px;
}

.admin-order-filters {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(190px, 240px) auto auto auto;
    align-items: end;
    gap: 12px;
    margin: 0 0 16px;
    padding: 14px;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .05), rgba(233, 30, 99, .05)),
        rgba(247, 244, 239, .72);
}

.admin-order-filters span {
    color: #686873;
    font-size: .86rem;
    font-weight: 850;
    white-space: nowrap;
}

.admin-email-preview-controls {
    display: grid;
    grid-template-columns: minmax(260px, 420px) auto minmax(0, 1fr);
    align-items: end;
    gap: 12px;
    margin: 0 0 16px;
    padding: 14px;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, .05), rgba(233, 30, 99, .05)),
        rgba(247, 244, 239, .72);
}

.admin-email-preview-controls span,
.admin-email-preview-meta span {
    color: #686873;
    font-size: .86rem;
    font-weight: 850;
}

.admin-email-preview-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.admin-email-preview-meta strong,
.admin-email-preview-meta span {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: 999px;
    background: #fff;
}

.admin-email-preview-meta span.status-success,
.admin-email-preview-meta span.status-processing,
.admin-email-preview-meta span.status-pending,
.admin-email-preview-meta span.status-shipped,
.admin-email-preview-meta span.status-danger,
.admin-email-preview-meta span.status-private,
.admin-email-preview-meta span.status-urgent,
.admin-email-preview-meta span.status-new,
.admin-email-preview-meta span.status-neutral {
    border-color: transparent;
}

.admin-email-preview-frame {
    width: 100%;
    min-height: 820px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f7f4ef;
}

.admin-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.admin-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(16, 16, 20, .08);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #686873;
    background: rgba(247, 244, 239, .78);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--ink);
    font-size: .92rem;
    font-weight: 700;
}

.admin-table tbody tr:hover {
    background: rgba(124, 58, 237, .04);
}

.admin-order-row.is-even,
.admin-order-detail-row.is-even {
    background: #fff;
}

.admin-order-row.is-odd,
.admin-order-detail-row.is-odd {
    background: rgba(247, 244, 239, .64);
}

.admin-order-row td:first-child {
    border-left: 4px solid transparent;
}

.admin-order-row.is-odd td:first-child {
    border-left-color: rgba(233, 30, 99, .42);
}

.admin-order-row.is-even td:first-child {
    border-left-color: rgba(124, 58, 237, .3);
}

.admin-order-row:hover,
.admin-order-row:hover + .admin-order-detail-row {
    background: rgba(124, 58, 237, .07);
}

.admin-order-detail-row:hover {
    background: inherit !important;
}

.admin-order-detail-row td {
    padding-top: 0;
    border-bottom: 10px solid #fff;
}

.admin-table td strong,
.admin-table td small {
    display: block;
}

.admin-table td small {
    margin-top: 4px;
    color: #686873;
    font-size: .8rem;
    font-weight: 700;
}

.admin-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    color: #8b6417;
    background: rgba(215, 167, 71, .18);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.admin-table-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.admin-table-actions form {
    display: contents;
}

.admin-order-detail {
    padding: 8px 0;
}

.admin-order-detail summary {
    width: max-content;
    cursor: pointer;
    color: var(--logo-red);
    font-weight: 900;
}

.admin-order-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.admin-order-detail-grid section,
.admin-order-items {
    padding: 16px;
    border: 1px solid rgba(16, 16, 20, .1);
    border-radius: var(--radius);
    background: rgba(247, 244, 239, .64);
}

.admin-order-detail h3 {
    margin: 0 0 8px;
    font-size: .95rem;
}

.admin-order-detail p {
    margin: 0;
    color: #686873;
    line-height: 1.55;
}

.admin-order-items {
    margin-top: 14px;
}

.admin-order-items p {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(16, 16, 20, .08);
}

.admin-order-items span,
.admin-order-items em {
    color: #686873;
    font-style: normal;
}

.admin-action-link {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 11px;
    border: 1px solid rgba(16, 16, 20, .12);
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    font: inherit;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-action-link:hover {
    color: #fff;
    border-color: transparent;
    background: var(--gradient);
}

.admin-action-link.danger {
    color: #b91c1c;
}

.admin-action-link.danger:hover {
    color: #fff;
    background: #b91c1c;
}

.admin-edit-list {
    margin-top: 18px;
}

.admin-edit-list .admin-event-accordion {
    display: none;
}

.admin-edit-list .admin-event-accordion:target {
    display: block;
}

.admin-event-accordion {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
}

.admin-event-accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 76px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.admin-event-accordion summary::-webkit-details-marker {
    display: none;
}

.admin-event-accordion summary::after {
    content: "+";
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    border-radius: 50%;
    color: #fff;
    background: var(--gradient);
    font-weight: 900;
}

.admin-event-accordion[open] summary::after {
    content: "-";
}

.admin-event-accordion summary span {
    display: grid;
    gap: 5px;
}

.admin-event-accordion summary small {
    color: #686873;
    font-weight: 700;
}

.admin-event-accordion summary em {
    margin-left: auto;
    color: var(--logo-red);
    font-style: normal;
    font-weight: 850;
}

.admin-event-body {
    display: grid;
    gap: 14px;
    padding: 0 18px 18px;
}

.admin-product-list {
    display: grid;
    gap: 12px;
    padding-left: clamp(0px, 2vw, 24px);
}

.admin-product-item {
    background: rgba(247, 244, 239, .72);
}

.admin-empty {
    margin: 0;
    padding: 16px;
    border: 1px dashed rgba(16, 16, 20, .18);
    border-radius: var(--radius);
    color: #686873;
    font-weight: 700;
}

.admin-item {
    padding: 18px;
}

.admin-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.admin-item-head a,
.admin-item-head span {
    color: var(--logo-red);
    font-weight: 850;
}

.admin-delete-form {
    margin-top: -4px;
}

.admin-flash {
    width: min(1160px, 100%);
    margin: 0 auto 18px;
    padding: 12px 14px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, rgba(124, 58, 237, .92), rgba(233, 30, 99, .9));
    font-weight: 800;
}

.admin-login-card .admin-flash {
    width: 100%;
    margin: 0;
}

.admin-help {
    margin: 0;
    color: #686873;
    font-size: .9rem;
    line-height: 1.5;
}

.field-help {
    position: relative;
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    border-radius: 50%;
    color: #fff;
    background: var(--gradient);
    font-size: .72rem;
    font-weight: 900;
    cursor: help;
}

.field-help::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 30;
    width: min(280px, 70vw);
    padding: 10px 12px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(9, 11, 22, .96);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.4;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity .18s ease, transform .18s ease;
}

.field-help:hover::after,
.field-help:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.button.ghost-dark {
    border-color: rgba(16, 16, 20, .2);
    color: var(--ink);
    background: transparent;
}

.admin-page {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 0;
    padding: 0;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 26px 18px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 0%, rgba(233, 30, 99, .22), transparent 34%),
        linear-gradient(180deg, #090b16, #101321);
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.admin-sidebar-brand {
    display: grid;
    gap: 8px;
    padding: 0 6px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.admin-sidebar-brand img {
    width: 156px;
    height: auto;
}

.admin-sidebar-brand span {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.admin-sidebar-nav {
    display: grid;
    gap: 8px;
}

.admin-sidebar-nav a,
.admin-sidebar-logout {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .74);
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.is-active {
    color: #fff;
    border-color: rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .08);
}

.admin-sidebar form {
    margin-top: auto;
}

.admin-sidebar-logout {
    width: 100%;
    color: #fff;
    background: var(--gradient);
}

.admin-main {
    min-width: 0;
    padding: 62px clamp(22px, 4vw, 54px) 72px;
}

.admin-topbar,
.admin-dashboard,
.admin-catalog-layout,
.admin-flash {
    width: min(1180px, 100%);
}

.admin-topbar {
    margin-inline: auto;
}

.admin-topbar > form {
    display: none;
}

.admin-dashboard {
    margin: 0 auto 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-kpi-card {
    min-height: 150px;
    display: grid;
    align-content: space-between;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 52px rgba(16, 16, 20, .08);
}

.admin-kpi-card span {
    color: #686873;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.admin-kpi-card strong {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1;
}

.admin-kpi-card p {
    margin: 0;
    color: #686873;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
}

.admin-kpi-card-primary {
    color: #fff;
    background:
        radial-gradient(circle at 88% 18%, rgba(215, 167, 71, .26), transparent 32%),
        linear-gradient(135deg, #101321, #321449 56%, #7d174d);
    border-color: rgba(255, 255, 255, .12);
}

.admin-kpi-card-primary span,
.admin-kpi-card-primary p {
    color: rgba(255, 255, 255, .72);
}

@media (max-width: 920px) {
    .admin-page {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        gap: 16px;
    }

    .admin-sidebar-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-sidebar form {
        margin-top: 0;
    }

    .admin-main {
        padding: 34px clamp(18px, 5vw, 40px) 56px;
    }

    .admin-dashboard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-order-filters {
        grid-template-columns: 1fr 1fr;
    }

    .admin-email-preview-controls {
        grid-template-columns: 1fr auto;
    }

    .admin-email-preview-controls span {
        grid-column: 1 / -1;
    }

    .admin-order-filters span {
        grid-column: 1 / -1;
    }

    .admin-order-detail-grid,
    .admin-order-items p {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px clamp(18px, 5vw, 72px) 26px;
        background: rgba(9, 11, 22, .96);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-home-link span {
        font-size: inherit;
    }

    .trust-band,
    .product-grid,
    .support-grid,
    .event-hero,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-search-tools {
        grid-template-columns: 1fr;
    }

    .trust-band span + span {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .event-hero img {
        max-height: 360px;
    }

    .footer-main {
        grid-template-columns: 1.2fr 1fr;
    }

    .admin-grid,
    .admin-catalog-layout,
    .form-grid,
    .support-template-group {
        grid-template-columns: 1fr;
    }

    .admin-create-event-panel {
        position: static;
        max-height: none;
        order: -1;
    }

    .support-builder-head {
        display: grid;
        align-items: start;
    }
}

@media (max-width: 620px) {
    .admin-sidebar-nav,
    .admin-dashboard {
        grid-template-columns: 1fr;
    }

    .admin-order-filters {
        grid-template-columns: 1fr;
    }

    .admin-email-preview-controls {
        grid-template-columns: 1fr;
    }

    .admin-email-preview-frame {
        min-height: 720px;
    }

    .admin-sidebar-brand img {
        width: 142px;
    }

    .site-header {
        min-height: 66px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .site-nav {
        top: 66px;
    }

    .brand-logo {
        height: 50px;
        max-width: 198px;
    }

    .hero {
        min-height: 620px;
        padding-top: 66px;
    }

    .hero-content {
        width: min(100% - 34px, 1120px);
        padding-top: 54px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .cart-line {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 42px 0 34px;
        gap: 12px;
    }

    .footer-brand-block {
        margin-bottom: 14px;
    }

    .footer-accordion {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding: 14px 0;
    }

    .footer-accordion:last-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .footer-title {
        margin-bottom: 10px;
    }

    .footer-logo {
        width: min(220px, 100%);
    }

    .footer-column a:hover {
        transform: none;
    }

    .footer-link-button:hover {
        transform: none;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-banner-actions,
    .cookie-banner-actions .button {
        width: 100%;
    }
}
