:root {
    --bg: #060508;
    --surface: #121015;
    --card: #1c1418;
    --accent: #c9a35c;
    --accent-2: #6e1f2a;
    --gold: #d4af37;
    --text: #f3ebe6;
    --muted: #b9a6a0;
    --ok: #4caf50;
    --r: 18px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    font-synthesis: none;
}

html, body {
    margin: 0;
    min-height: 100%;
    font-family: "DM Sans", system-ui, sans-serif;
    color: var(--text);
    background: radial-gradient(1000px 500px at 20% 0%, #2a1420 0%, var(--bg) 55%),
        radial-gradient(800px 400px at 90% 10%, #1b1220 0%, var(--bg) 50%);
    background-attachment: fixed;
}

a {
    color: #ffd4a8;
    text-decoration: none;
}
a:hover { text-decoration: underline; }

.contact-pick {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 1rem;
    align-items: center;
}
.contact-pick__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--card);
    color: var(--text);
    border-radius: var(--r);
    padding: 0.45rem 0.7rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.contact-pick__btn:hover { border-color: var(--accent); }
.contact-pick__btn--on {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 18%, var(--card));
    color: #fff;
}
.contact-pick__icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; color: var(--text); }
.contact-pick__icon--stroke { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.admin-order-dtl summary { cursor: pointer; color: #ffd4a8; }
.admin-order-dtl[open] summary { margin-bottom: 0.35rem; }

.flatpickr-calendar {
    z-index: 2000;
    background: var(--card) !important;
    color: var(--text) !important;
    box-shadow: var(--shadow) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.flatpickr-day:hover,
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #0f0b0d !important;
}
.flatpickr-day.today { border-color: var(--accent); }
.flatpickr-time .flatpickr-time-separator, .flatpickr-time .flatpickr-time-input, .numInput, .numInputWrapper span {
    color: var(--text) !important;
}

h1, h2, h3, .app-brand, .headline {
    font-family: "Playfair Display", "Times New Roman", serif;
    letter-spacing: 0.02em;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--surface) 80%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: visible;
}

.app-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: visible;
}

.app-brand {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
    overflow: visible;
}
.app-brand__sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(243, 235, 230, 0.72);
    font-family: "DM Sans", system-ui, sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.38rem;
}
.app-brand--nika .app-brand__sub {
    color: color-mix(in srgb, var(--gold) 78%, rgba(255, 255, 255, 0.35));
}
.app-brand--nika {
    position: relative;
    padding-top: 1.1rem;
    overflow: visible;
}
.app-brand--nika .app-brand__wordmark {
    display: inline-flex;
    align-items: baseline;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    line-height: 1.05;
    overflow: visible;
}
.app-brand__nika-i {
    position: relative;
    display: inline-block;
    overflow: visible;
}
.app-brand__mark {
    position: absolute;
    left: 50%;
    bottom: calc(100% - 2px);
    transform: translateX(-50%);
    pointer-events: none;
    display: block;
    overflow: visible;
}
img.app-brand__mark {
    height: 1.42rem;
    width: auto;
    max-width: 2.15rem;
    object-fit: contain;
    vertical-align: top;
}
.app-nav {
    display: flex;
    gap: 0.5rem 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.app-nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    padding: 0.2rem 0;
}
.app-nav__link:hover { opacity: 1; text-decoration: none; }

.app-header__right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    justify-content: flex-end;
}

.app-link-muted {
    color: var(--muted);
    font-size: 0.9rem;
}

.app-btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    text-decoration: none;
}
.app-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
}

.app-pill {
    background: linear-gradient(90deg, var(--accent-2), #4a0f1a);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.app-pill:hover { text-decoration: none; filter: brightness(1.1); }

.header-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    text-decoration: none;
    color: #f3ebe6;
    background: rgba(8, 6, 8, 0.75);
    border: 1px solid rgba(201, 163, 92, 0.55);
    padding: 0.32rem 0.72rem 0.32rem 0.55rem;
    border-radius: 14px;
    font-size: 0.86rem;
    font-weight: 600;
    font-family: "DM Sans", system-ui, sans-serif;
}
.header-cart:hover {
    text-decoration: none;
    color: #fff;
    border-color: color-mix(in srgb, var(--gold) 70%, #fff);
}
.header-cart__ico {
    flex-shrink: 0;
    color: var(--gold);
}
.header-cart__tail {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    flex-shrink: 0;
}
.header-cart__count {
    background: linear-gradient(160deg, #e8cf7a, #b8943a);
    color: #0f0806;
    min-width: 1.42rem;
    height: 1.42rem;
    text-align: center;
    line-height: 1.42rem;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 0.18rem;
}
.header-cart__sum {
    font-size: 0.76rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: color-mix(in srgb, var(--gold) 92%, #fff);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.app-main { padding: 0 0 2.5rem; }
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.app-hero {
    display: grid;
    gap: 1.35rem;
    padding: 2.25rem 0 1.25rem;
}
.app-hero__intro { min-width: 0; }
.app-hero__kicker {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-family: "DM Sans", system-ui, sans-serif;
    margin: 0 0 0.5rem;
}
.app-hero h1 {
    font-size: clamp(1.55rem, 4.2vw, 2.35rem);
    margin: 0 0 0.55rem;
    color: #fff;
    font-weight: 600;
    line-height: 1.15;
}
.app-hero__lead {
    color: rgba(243, 235, 230, 0.88);
    max-width: 52ch;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}
.app-hero__bullets {
    list-style: none;
    margin: 1.1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: 1fr;
}
@media (min-width: 520px) {
    .app-hero__bullets { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.app-hero__bullet {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.3;
}
.app-hero__bullet-ring {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border: 1px solid rgba(201, 163, 92, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.app-how {
    background: linear-gradient(165deg, #2a1a14 0%, #1a1210 55%, #14100e 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r);
    padding: 1.2rem 1.15rem 1.35rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.app-how__head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.05rem;
}
.app-how__clip {
    flex-shrink: 0;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 1px solid rgba(201, 163, 92, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 18px rgba(201, 163, 92, 0.22);
    background: radial-gradient(circle at 50% 35%, rgba(201, 163, 92, 0.12), transparent 62%);
}
.app-how__title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    letter-spacing: 0.02em;
}
.app-how__steps {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.06rem 0.12rem;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
}
.app-how__step {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}
.app-how__num {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.2rem, 3.4vw, 1.55rem);
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}
.app-how__txt {
    font-size: clamp(0.72rem, 2.2vw, 0.86rem);
    line-height: 1.4;
    color: rgba(243, 235, 230, 0.94);
    font-family: "DM Sans", system-ui, sans-serif;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}
.app-how__arr {
    color: var(--gold);
    font-size: 0.95rem;
    opacity: 0.65;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    font-weight: 300;
    align-self: center;
}
@media (min-width: 900px) {
    .app-hero {
        grid-template-columns: 1.15fr 1fr;
        align-items: start;
        gap: 1.75rem;
    }
}
.snack-section__title {
    margin: 2rem 0 1rem;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.snack-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.snack-card {
    background: color-mix(in srgb, var(--card) 88%, #000 12%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, border-color 0.18s ease;
}
.snack-card:hover { transform: translateY(-2px); border-color: rgba(212, 165, 116, 0.35); }
.snack-card__art--photo {
    padding: 0;
    background: #0f0b0d;
}
.snack-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.admin-thumb {
    object-fit: cover;
    border-radius: 4px;
    max-height: 40px;
    max-width: 64px;
}
.snack-card__art {
    height: 140px;
    background: linear-gradient(150deg, #1e1420, #0f0b0d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}
.snack-card__art--cheese   { background: linear-gradient(140deg, #2d2040, #4a1f0f, #0f0b0d); }
.snack-card__art--meat     { background: linear-gradient(140deg, #3a1520, #1c0e12, #0f0b0d); }
.snack-card__art--olives   { background: linear-gradient(140deg, #152a20, #0c140f, #0f0b0d); }
.snack-card__art--sushi    { background: linear-gradient(140deg, #0f1e2a, #101820, #0f0b0d); }
.snack-card__art--veg      { background: linear-gradient(140deg, #1a3018, #0c140a, #0f0b0d); }
.snack-card__art--sweet    { background: linear-gradient(140deg, #301e30, #180f18, #0f0b0d); }
.snack-card__art--default  { background: linear-gradient(140deg, #22181d, #0f0b0d); }
.snack-card__body {
    padding: 0.85rem 1rem 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}
.snack-card h3 { margin: 0; font-size: 1.05rem; color: #fff; font-weight: 600; }
.snack-card p {
    color: rgba(185, 166, 160, 0.95);
    font-size: 0.82rem;
    margin: 0;
    min-height: 2.35em;
    line-height: 1.35;
    flex: 1 1 auto;
}
.snack-card__buy-row {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.45rem 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.snack-card__prices {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.12rem;
    font-variant-numeric: tabular-nums;
}
.snack-card__prices .snack-card__price {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.22rem);
    font-weight: 700;
    color: #f0d18a;
    line-height: 1.15;
    letter-spacing: 0.02em;
}
.snack-card__prices .snack-card__min {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(0.72rem, 2vw, 0.85rem);
    font-weight: 400;
    color: rgba(228, 218, 212, 0.88);
    line-height: 1.2;
    white-space: nowrap;
}
.snack-card__qty-split {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0.32rem;
    flex-shrink: 0;
}
.snack-card__qty-chip {
    width: 1.95rem;
    height: 1.95rem;
    min-width: 1.95rem;
    min-height: 1.95rem;
    padding: 0;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: filter 0.12s, transform 0.12s;
}
.snack-card__qty-chip--minus {
    background: linear-gradient(180deg, #3a2226, #1e1214);
    color: rgba(255, 255, 255, 0.88);
}
.snack-card__qty-chip--plus {
    background: linear-gradient(180deg, #6e2830, #4a181e);
    color: #fff;
}
.snack-card__qty-chip:hover:not(:disabled) { filter: brightness(1.08); }
.snack-card__qty-chip:active:not(:disabled) { transform: scale(0.97); }
.snack-card__qty-chip:disabled {
    opacity: 0.32;
    cursor: not-allowed;
    filter: none;
}
.snack-card__qty-num {
    min-width: 1.1rem;
    padding: 0 0.08rem;
    text-align: center;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    font-size: 0.88rem;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.snack-card__row { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-top: 0.6rem; }
.snack-card__controls { display: flex; align-items: center; gap: 0.3rem; }
.qty {
    min-width: 1.4rem; text-align: center; color: #fff; font-weight: 600; font-size: 0.95rem;
}
.btn-rose {
    background: linear-gradient(90deg, var(--accent-2), #2a0d14);
    color: #fff;
    border: none;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn-rose:hover { filter: brightness(1.08); }
.btn-rose:disabled { opacity: 0.35; cursor: not-allowed; }

.paper {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--r);
    padding: 1.1rem 1.25rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.paper h1, .paper h2 { color: #fff; margin-top: 0; }
.muted { color: var(--muted); }

.form-buffet .form-floating, .form-buffet .form-group { margin-bottom: 0.8rem; }
.form-buffet .form-control, .form-buffet .form-select { background: #0f0b0d; border-color: rgba(255,255,255,0.12); color: #fff; }
.form-buffet .form-control:focus, .form-buffet .form-select:focus { border-color: var(--accent); box-shadow: 0 0 0 0.1rem color-mix(in srgb, var(--accent) 20%, black); }
.form-buffet label, .form-buffet .form-check-label { color: var(--muted); }

.btn-gold { background: linear-gradient(90deg, #b8860b, var(--accent)); color: #1a0e0e; font-weight: 600; border: none; }
.btn-gold:hover { filter: brightness(1.04); }
.btn-ghost-rose { color: #fff; border: 1px solid rgba(255,255,255,0.15); background: rgba(0,0,0,0.1); }
.btn-ghost-rose:hover { background: rgba(255,255,255,0.04); }

.table-orders { color: #fff; }
.table-orders th { color: var(--muted); font-weight: 500; }
.table-orders__mono { font-variant-numeric: tabular-nums; }

.admin-orders-page { max-width: 100%; min-width: 0; }
.admin-orders__filters { max-width: 100%; }
@media (min-width: 576px) { .admin-orders__filters { max-width: 42rem; } }
.admin-orders-scroll {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0.25rem;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: none;
    touch-action: auto;
}
.admin-orders-scroll:focus { outline: 1px solid rgba(212, 165, 116, 0.4); outline-offset: 2px; }
.admin-orders__table { width: 100%; min-width: 64rem; margin-bottom: 0; white-space: normal; }
.admin-orders__table thead th { white-space: nowrap; }
.admin-orders__table .table-orders__mono { white-space: nowrap; }
.admin-order-basket-dlg {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(6, 4, 5, 0.78);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.admin-order-basket-dlg__inner {
    position: relative;
    width: 100%;
    max-width: 26rem;
    max-height: min(90vh, 32rem);
    display: flex;
    flex-direction: column;
    background: var(--card);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    outline: none;
}
.admin-order-basket-dlg__head {
    position: relative;
    flex-shrink: 0;
    padding: 0.9rem 2.6rem 0.7rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-order-basket-dlg__x {
    position: absolute;
    right: 0.4rem;
    top: 0.4rem;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    line-height: 1;
    font-size: 1.45rem;
    color: var(--muted);
    background: transparent;
    border: none;
    border-radius: 0.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-order-basket-dlg__x:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.admin-order-basket-dlg__body { padding: 0.6rem 0.9rem; overflow-y: auto; min-height: 0; flex: 1; }
.admin-order-basket-dlg__foot { flex-shrink: 0; padding: 0.65rem 0.9rem; border-top: 1px solid rgba(255, 255, 255, 0.08); text-align: end; }
.admin-snack-thumb {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 0.4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    overflow: hidden;
}
.admin-snack-thumb__img { width: 100%; height: 100%; object-fit: cover; }
.admin-snack-thumb__emo { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.admin-orders__basket-list { list-style: none; font-size: 0.88rem; max-width: 100%; margin: 0; padding: 0; word-wrap: break-word; overflow-wrap: break-word; word-break: normal; }
.admin-orders__basket-line {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0 0 0.5rem 0;
    padding: 0.5rem 0.45rem 0.55rem 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}
.admin-orders__basket-line:last-child { margin-bottom: 0; }
.admin-orders__basket-line-body { min-width: 0; flex: 1; }
.admin-orders__basket-name { line-height: 1.3; font-weight: 500; margin-bottom: 0.2rem; word-break: normal; overflow-wrap: break-word; }
.admin-orders__basket-row2 { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 0.2rem 0.6rem; color: var(--muted); }
.admin-orders__basket-qty { min-width: 0; }
.admin-orders__basket-line-sum { color: var(--text); font-weight: 500; white-space: nowrap; }
.admin-orders__table .admin-orders__td-comment { max-width: 9rem; min-width: 0; white-space: normal; word-break: break-word; }
.admin-orders__table td:nth-last-child(1) { white-space: normal; min-width: 0; }

.admin-orders-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.admin-order-card {
    background: color-mix(in srgb, var(--card) 92%, #000);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r);
    padding: 0.85rem 0.9rem;
}
.admin-order-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.admin-order-card__no { font-size: 1.05rem; font-weight: 600; color: #fff; }
.admin-order-card__sum { font-weight: 600; color: #ffd4a8; font-variant-numeric: tabular-nums; }
.admin-order-card__grid {
    display: grid;
    grid-template-columns: minmax(0, 7.5rem) 1fr;
    gap: 0.2rem 0.65rem;
    font-size: 0.86rem;
    align-items: baseline;
}
.admin-order-card__k { color: var(--muted); font-size: 0.78rem; }
.admin-order-card__v { min-width: 0; word-break: break-word; }
.admin-order-card__comment { margin-top: 0.1rem; }
@media (min-width: 400px) { .admin-order-card__grid { grid-template-columns: 8.5rem 1fr; } }
.admin-order-card__actions { margin-top: 0.65rem; }
.admin-order-card__actions .d-flex { align-items: center; }

.badge-ord { font-size: 0.75rem; }

.app-footer { margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); padding: 1rem 0; color: var(--muted); font-size: 0.85rem; }
.app-footer__inner { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: space-between; }
.app-footer__legal p { margin: 0; line-height: 1.5; max-width: 64rem; }

#blazor-error-ui {
    color-scheme: light only;
    background: #1a1216;
    color: #fff;
    border-top: 1px solid #8b2e3c;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    left: 0;
    display: none;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }

h1:focus { outline: none; }
.validation-message { color: #f8a5a5; }
.invalid { outline: 1px solid #8b2e3c; }

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder { color: var(--muted); }

.darker-border-checkbox.form-check-input { border-color: #929292; }
.blazor-error-boundary { background: #2a0d14; color: #fff; padding: 0.5rem; }

.form-check-input:checked { background-color: var(--accent-2); border-color: #fff; }

body { overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }

.app-mnav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: var(--card);
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.app-mnav__toggle:hover { border-color: var(--accent); }

@media (max-width: 991.98px) {
    .app-header__inner {
        flex-wrap: wrap;
        row-gap: 0.35rem;
        padding: max(0.55rem, env(safe-area-inset-top, 0px)) max(0.85rem, env(safe-area-inset-right, 0px)) 0.55rem max(0.85rem, env(safe-area-inset-left, 0px));
        column-gap: 0.5rem;
    }
    .app-brand {
        flex: 1 1 0;
        min-width: 0;
    }
    .app-mnav {
        display: none;
        order: 10;
        width: 100%;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        padding: 0.4rem 0 0.75rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .app-mnav.is-open { display: flex; }
    .app-nav {
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.1rem 0.75rem;
    }
    .app-header__right {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        padding-top: 0.2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .app-header__right .app-pill { align-self: flex-start; }
    .app-header__right .app-nav__link,
    .app-nav__link { padding: 0.55rem 0.15rem; min-height: 2.75rem; }
    .app-header__right .app-btn-ghost { align-self: flex-start; text-align: center; }
    .app-hero h1 { font-size: clamp(1.4rem, 5vw, 1.9rem) !important; }
    .app-hero__lead { max-width: none; }
    .app-container { padding-top: 0; padding-bottom: 0; padding-left: max(0.9rem, env(safe-area-inset-left, 0px)); padding-right: max(0.9rem, env(safe-area-inset-right, 0px)); }
    .app-main { padding: 0 0 1.5rem; }
    .app-footer { padding: 0.9rem 0; font-size: 0.8rem; }
    .app-footer__inner { flex-direction: column; text-align: center; gap: 0.5rem; }
    .app-footer__inner .text-end { text-align: center !important; }
    .app-footer__legal p { text-align: left; }
    .snack-grid { grid-template-columns: 1fr; gap: 1rem; }
    @media (min-width: 380px) {
        .snack-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
    }
    @media (min-width: 520px) {
        .snack-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
    }
    .snack-card__art { height: 120px; aspect-ratio: auto; }
    .snack-card__art--photo { height: auto; min-height: 100px; aspect-ratio: 16 / 9; }
    .paper { padding: 0.9rem 1rem; }
    .paper h1, .headline { font-size: clamp(1.35rem, 4.5vw, 1.75rem); }
    .btn-rose, .header-cart, .app-btn-ghost, .app-pill { min-height: 2.5rem; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
    .snack-card__qty-chip {
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    .form-buffet .form-control, .form-buffet .form-select { min-height: 2.75rem; font-size: 1rem; }
    .btn-gold { min-height: 2.75rem; padding: 0.5rem 1.1rem; }
    .table-responsive { -webkit-overflow-scrolling: touch; }
    .contact-pick { gap: 0.4rem; }
    .contact-pick__btn { min-height: 2.75rem; padding: 0.4rem 0.65rem; }
    .admin-orders-page .admin-orders-scroll { margin-left: -0.35rem; margin-right: -0.35rem; padding-left: 0.35rem; padding-right: 0.35rem; }
}

@media (min-width: 992px) {
    .app-mnav {
        display: flex !important;
        flex: 1;
        min-width: 0;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.4rem 1rem;
    }
    .snack-card__qty-chip {
        width: 2.2rem;
        height: 2.2rem;
        min-width: 2.2rem;
        min-height: 2.2rem;
        font-size: 1.05rem;
        border-radius: 11px;
    }
    .snack-card__qty-num {
        font-size: 0.95rem;
        min-width: 1.25rem;
    }
    .snack-card__qty-split {
        gap: 0.4rem;
    }
}
