:root {
    --bg: #120f0d;
    --bg-soft: #1c1714;
    --panel: rgba(33, 27, 22, 0.78);
    --panel-strong: #221b16;
    --line: rgba(241, 220, 185, 0.14);
    --text: #f8f2e9;
    --text-soft: #ccbda8;
    --gold: #f0b45d;
    --amber: #d58535;
    --sage: #5f6f58;
    --cream: #efe2cf;
    --danger: #f07f6a;
    --success: #79c290;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1180px, calc(100vw - 32px));
    --font-display: "Bodoni MT", "Didot", "Times New Roman", serif;
    --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(240, 180, 93, 0.16), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(95, 111, 88, 0.18), transparent 28%),
        linear-gradient(180deg, #100d0b 0%, #17120f 55%, #110d0b 100%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
}

body:not(.admin-shell) {
    --bg: #2a1f18;
    --bg-soft: #35271f;
    --panel: rgba(56, 43, 34, 0.76);
    --panel-strong: #413127;
    --line: rgba(245, 226, 196, 0.2);
    --text: #fbf4eb;
    --text-soft: #decfbc;
    --shadow: 0 30px 80px rgba(33, 22, 14, 0.2);
    background:
        radial-gradient(circle at top left, rgba(240, 180, 93, 0.2), transparent 32%),
        radial-gradient(circle at 85% 12%, rgba(95, 111, 88, 0.16), transparent 30%),
        linear-gradient(180deg, #241a15 0%, #2d221c 54%, #221914 100%);
}

body.admin-shell {
    background: #f3ede4;
    color: #201a16;
}
body:not(.admin-shell) .section-dark {
    background: rgba(255, 243, 227, 0.04);
}

body:not(.admin-shell) .glow {
    opacity: 0.42;
}

body:not(.admin-shell) .glow-one {
    background: rgba(240, 180, 93, 0.24);
}

body:not(.admin-shell) .glow-two {
    background: rgba(95, 111, 88, 0.14);
}

body:not(.admin-shell) .grid-overlay {
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
}

body:not(.admin-shell) .site-header {
    background: rgba(38, 29, 23, 0.72);
}

img {
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

main {
    position: relative;
    z-index: 2;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.page-section {
    padding: 88px 0;
    position: relative;
    z-index: 2;
}

.inner-hero {
    padding-bottom: 36px;
}

.section-dark {
    background: rgba(12, 10, 9, 0.42);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.accent-panel {
    padding-top: 32px;
}

.site-backdrop {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.55;
    animation: drift 12s ease-in-out infinite alternate;
}

.glow-one {
    width: 360px;
    height: 360px;
    background: rgba(240, 180, 93, 0.2);
    top: -80px;
    left: -80px;
}

.glow-two {
    width: 420px;
    height: 420px;
    background: rgba(95, 111, 88, 0.18);
    top: 12%;
    right: -120px;
    animation-duration: 15s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(20px);
    background: rgba(12, 10, 9, 0.52);
    border-bottom: 1px solid var(--line);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brandmark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brandmark__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(240, 180, 93, 0.9), rgba(213, 133, 53, 0.8));
    color: #26190f;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brandmark__text {
    display: grid;
    gap: 3px;
}

.brandmark__text strong,
.hero-copy h1,
.section-heading h2,
.two-column-story h2,
footer h2,
.inner-hero h1,
.summary-card h2,
.auth-card h2,
.admin-header h1,
.panel-heading h2,
.feature-card h2,
.feature-card h3,
.print-ticket h1 {
    font-family: var(--font-display);
    line-height: 1.05;
}

.brandmark__text small,
.eyebrow,
.tag-copy,
.menu-card__footer span,
.muted-copy,
.stat-card span,
.summary-row span,
.summary-item span,
.timeline-entry span,
.feature-card p,
.review-card strong,
.print-ticket__section h2 {
    color: var(--text-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-nav a,
.admin-nav a {
    position: relative;
    padding: 8px 0;
    color: var(--text-soft);
    transition: color 0.24s ease;
}

.site-nav a::after,
.admin-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.admin-nav a:hover,
.admin-nav a.is-active {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.admin-nav a:hover::after,
.admin-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.nav-cart span,
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(240, 180, 93, 0.18);
    color: var(--cream);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--line);
}

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

.toast-stack {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 120;
    display: grid;
    gap: 14px;
    width: min(420px, calc(100vw - 24px));
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    padding: 18px 18px 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    box-shadow: 0 22px 46px rgba(10, 8, 7, 0.28);
    transform: translateY(-10px) scale(0.98);
    opacity: 0;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast.is-leaving {
    opacity: 0;
    transform: translateY(-12px) scale(0.97);
}

.toast--success {
    background: rgba(34, 59, 42, 0.92);
    color: #e6f8ec;
    border-color: rgba(121, 194, 144, 0.24);
}

.toast--error {
    background: rgba(76, 32, 25, 0.94);
    color: #ffe7e1;
    border-color: rgba(240, 127, 106, 0.3);
}

.toast__body {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.toast__label {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
}

.toast__message {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.toast__close {
    appearance: none;
    border: 0;
    background: rgba(255,255,255,0.12);
    color: inherit;
    border-radius: 999px;
    padding: 10px 14px;
    line-height: 1;
    font-size: 0.82rem;
    font-weight: 700;
}

.toast__close:hover {
    background: rgba(255,255,255,0.18);
}

body.admin-shell .toast {
    box-shadow: 0 20px 38px rgba(46, 33, 24, 0.16);
}

body.admin-shell .toast--success {
    background: rgba(244, 251, 246, 0.98);
    color: #204b31;
    border-color: rgba(79, 145, 101, 0.18);
}

body.admin-shell .toast--error {
    background: rgba(253, 245, 242, 0.98);
    color: #7c2d22;
    border-color: rgba(177, 88, 72, 0.18);
}

body.admin-shell .toast__label {
    color: rgba(34, 29, 25, 0.54);
}

.hero-section {
    padding: 80px 0 42px;
}

.hero-grid,
.checkout-grid,
.two-column-story,
.split-section,
.footer-grid,
.admin-order-layout,
.order-meta-grid {
    display: grid;
    gap: 28px;
}

.hero-grid,
.checkout-grid,
.two-column-story,
.footer-grid,
.admin-order-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-copy {
    padding-top: 24px;
}

.hero-copy__lead,
.inner-hero p,
.feature-card p,
.summary-card p,
.menu-card__body p,
.auth-card p {
    color: var(--text-soft);
}

.hero-copy h1,
.inner-hero h1 {
    font-size: clamp(3rem, 7vw, 5.4rem);
    margin: 0 0 20px;
    max-width: 11ch;
}

.hero-slider,
.summary-card,
.feature-card,
.category-card,
.review-card,
.hours-card,
.menu-card,
.cart-card,
.checkout-form,
.notice-card,
.admin-panel,
.stat-card,
.auth-card,
.empty-state {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
}

.hero-slider {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    padding: 20px;
}

.hero-slide {
    position: absolute;
    inset: 20px;
    padding: 28px;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    align-content: end;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.14), transparent 32%),
        linear-gradient(160deg, rgba(95,111,88,0.48), rgba(213,133,53,0.2), rgba(17,13,11,0.92));
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide__frame {
    display: grid;
    gap: 14px;
}

.hero-slide h2,
.summary-card h2,
.admin-panel h2,
.empty-state h2,
.auth-card h2,
.review-card p,
.category-card h3,
.feature-card h3 {
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    margin: 0;
}

.hero-slide__meta,
.trust-metrics,
.button-row,
.menu-card__header,
.menu-card__footer,
.summary-row,
.summary-item,
.cart-row,
.hours-row,
.print-ticket__row,
.panel-heading,
.admin-header,
.form-grid.two-up,
.checkbox-grid,
.cart-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.trust-metrics {
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-metrics div,
.stat-card {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.trust-metrics strong,
.stat-card strong {
    display: block;
    font-size: 1.6rem;
    color: var(--cream);
}

.slider-dots,
.chip-row,
.stack-gap-sm,
.stack-gap-md,
.stack-gap-lg,
.narrow-stack,
.feature-stack,
.admin-content,
.timeline {
    display: grid;
    gap: 16px;
}

.slider-dots {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.28);
}

.slider-dot.is-active {
    width: 32px;
    background: var(--gold);
}

.button,
.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.button:hover,
.link-button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: #26190f;
    box-shadow: 0 14px 34px rgba(213, 133, 53, 0.28);
}

.button-secondary {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border-color: rgba(255,255,255,0.1);
}

.button-block {
    width: 100%;
}

.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.inline-link,
.link-button,
.panel-heading a,
.summary-row a,
.category-card a {
    color: var(--gold);
}

.eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
}

.section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
    max-width: 720px;
}

.section-heading--left {
    margin-bottom: 18px;
}

.section-heading p,
.category-card span,
.review-card strong,
.summary-card .eyebrow {
    margin: 0;
}

.category-grid,
.feature-grid,
.review-grid,
.menu-card-grid,
.dashboard-grid {
    display: grid;
    gap: 22px;
}

.category-grid,
.feature-grid,
.review-grid,
.dashboard-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.category-card,
.review-card,
.summary-card,
.checkout-form,
.cart-card,
.admin-panel,
.auth-card,
.empty-state,
.hours-card {
    padding: 28px;
}

.menu-card {
    overflow: hidden;
}

.menu-card__visual {
    min-height: 180px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(240, 180, 93, 0.22), rgba(95, 111, 88, 0.24), rgba(255,255,255,0.06));
    border-bottom: 1px solid var(--line);
}

.menu-card__visual span {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    font-size: 2rem;
    font-family: var(--font-display);
}

.menu-card__body {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.inline-form,
.filter-bar,
.admin-logout {
    margin: 0;
}

.filter-bar {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.filter-bar--compact {
    padding: 0;
    background: transparent;
    border: 0;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.chip {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    color: var(--text-soft);
}

.chip.is-active {
    background: rgba(240, 180, 93, 0.18);
    color: var(--cream);
}

.cart-card,
.checkout-form {
    display: grid;
    gap: 18px;
}

.cart-card__status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-sync-status {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.cart-sync-status.is-error {
    color: #f3b1ac;
}

.cart-manual-button {
    padding: 12px 20px;
    white-space: nowrap;
}

[data-cart-shell].is-syncing .cart-card {
    opacity: 0.82;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
}

.contact-details-stack {
    display: grid;
    gap: 18px;
}

.contact-info-card {
    padding: 24px 26px;
    display: grid;
    gap: 10px;
    align-content: start;
}

.contact-info-card .eyebrow {
    margin-bottom: 0;
}

.contact-info-card__value {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.contact-info-card__value--compact {
    font-size: 1.02rem;
    font-weight: 600;
}

.contact-info-card__value--address {
    white-space: pre-line;
}

.contact-info-card--hours {
    gap: 14px;
}

.contact-hours-list {
    display: grid;
    gap: 0;
}

.contact-form-card {
    padding: 28px;
    align-content: start;
}

.contact-form-card__header {
    display: grid;
    gap: 10px;
}

.contact-form-card__header h2 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.contact-form-card__header p {
    margin: 0;
}

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

.contact-field {
    display: grid;
    gap: 10px;
    min-width: 0;
    align-content: start;
}

.contact-field > span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field textarea {
    min-height: 180px;
}

.contact-submit {
    min-height: 58px;
}

.track-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: start;
}

.track-search-card,
.track-status-card,
.track-empty-card {
    padding: 28px;
    align-content: start;
}

.track-search-card__header,
.track-status-card__header,
.track-status-card__copy,
.track-empty-card,
.track-empty-points,
.track-timeline {
    display: grid;
    gap: 16px;
}

.track-search-card__header h2,
.track-status-card__copy h2,
.track-empty-card h2 {
    margin: 0;
    max-width: none;
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.track-search-card__header p,
.track-status-card__copy p,
.track-empty-card p {
    margin: 0;
}

.track-form-grid {
    display: grid;
    gap: 16px;
}

.track-field {
    display: grid;
    gap: 10px;
}

.track-field > span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.track-submit {
    min-height: 58px;
}

.track-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.track-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.track-badge--status {
    background: rgba(240, 180, 93, 0.16);
    color: var(--cream);
    border: 1px solid rgba(240, 180, 93, 0.24);
}

.track-badge--payment {
    background: rgba(121, 194, 144, 0.12);
    color: #d7f1df;
    border: 1px solid rgba(121, 194, 144, 0.22);
}

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

.track-meta-card {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.track-meta-card span {
    color: var(--text-soft);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.track-meta-card strong {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.4;
}

.track-timeline-entry {
    display: grid;
    gap: 10px;
}

.track-timeline-entry__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.track-timeline-entry__header time,
.track-timeline-entry__byline {
    color: var(--text-soft);
    font-size: 0.88rem;
}

.track-timeline-entry p {
    margin: 0;
}

.cart-row {
    align-items: flex-start;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.cart-row:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.cart-controls {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.summary-card,
.notice-card {
    display: grid;
    gap: 14px;
    align-content: start;
}

.notice-card {
    padding: 22px 24px;
}

.notice-card strong,
.notice-card p {
    margin: 0;
}

.summary-row,
.summary-item,
.hours-row,
.print-ticket__row {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.summary-row:last-child,
.summary-item:last-child,
.print-ticket__row:last-child,
.hours-row:last-child {
    border-bottom: 0;
}

.summary-row--total {
    padding-top: 16px;
    font-size: 1.08rem;
}

.summary-item--border,
.timeline-entry {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.timeline-entry:last-child,
.summary-item--border:last-child {
    border-bottom: 0;
}

.notice-card--warning {
    border-color: rgba(240, 180, 93, 0.26);
    background: rgba(240, 180, 93, 0.08);
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: inherit;
    outline: 0;
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(240, 180, 93, 0.6);
    box-shadow: 0 0 0 4px rgba(240, 180, 93, 0.12);
}

label {
    display: grid;
    gap: 10px;
    color: var(--text-soft);
}

.field-error {
    color: #ffd3cb;
}

.site-footer {
    padding: 24px 0 70px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    align-items: start;
}

.footer-grid a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-soft);
}

.service-badge {
    display: grid;
    gap: 2px;
    padding: 10px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    min-width: 220px;
}

.service-badge strong {
    font-size: 0.92rem;
}

.service-badge span {
    color: var(--text-soft);
    font-size: 0.82rem;
}

.service-badge--open {
    box-shadow: 0 0 0 1px rgba(121, 194, 144, 0.12) inset;
}

.service-badge--closed {
    box-shadow: 0 0 0 1px rgba(240, 127, 106, 0.12) inset;
}

.policy-links,
.policy-list {
    display: grid;
    gap: 10px;
}

.policy-links a,
.checkbox-pill a {
    color: var(--gold);
}

.policy-list p,
.checkbox-pill span {
    margin: 0;
}
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    padding: 28px 24px;
    background: linear-gradient(180deg, #161210, #211913);
    color: var(--text);
    display: grid;
    align-content: start;
    gap: 26px;
}

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

.admin-main {
    padding: 28px;
}

.admin-header {
    margin-bottom: 18px;
}

.admin-user-card {
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff9f1;
    border: 1px solid rgba(36, 28, 20, 0.08);
    display: grid;
}

.admin-panel,
.stat-card,
.auth-card,
.empty-state {
    background: #fff9f1;
    color: #241d18;
    border-color: rgba(36, 28, 20, 0.08);
    box-shadow: 0 16px 40px rgba(30, 24, 20, 0.08);
}

.admin-panel .eyebrow,
.admin-panel p,
.stat-card span,
.admin-user-card span,
.admin-table small {
    color: #6f6156;
}

.admin-main .checkout-form {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.admin-main .summary-card,
.admin-main .notice-card,
.admin-main .feature-card {
    background: #fff9f1;
    color: #241d18;
    border: 1px solid rgba(36, 28, 20, 0.08);
    box-shadow: 0 16px 40px rgba(30, 24, 20, 0.08);
}

.admin-main .summary-card .eyebrow,
.admin-main .summary-card p,
.admin-main .notice-card .eyebrow,
.admin-main .notice-card p,
.admin-main .feature-card .eyebrow,
.admin-main .feature-card p,
.admin-main label,
.admin-main .timeline-entry span,
.admin-main .selected-modifier-group span {
    color: #6f6156;
}

.admin-main input,
.admin-main textarea,
.admin-main select {
    background: #fffdf8;
    color: #241d18;
    border: 1px solid rgba(36, 28, 20, 0.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.admin-main input::placeholder,
.admin-main textarea::placeholder {
    color: #a79683;
}

.admin-main input:focus,
.admin-main textarea:focus,
.admin-main select:focus {
    border-color: rgba(213, 133, 53, 0.5);
    box-shadow: 0 0 0 4px rgba(213, 133, 53, 0.14);
    background: #fff;
}

.admin-main .field-error {
    color: #8e2f24;
}

.admin-main .checkbox-pill {
    background: #fffdf8;
    border-color: rgba(36, 28, 20, 0.08);
}

.admin-main .summary-row,
.admin-main .summary-item,
.admin-main .hours-row,
.admin-main .print-ticket__row,
.admin-main .summary-item--border,
.admin-main .timeline-entry {
    border-bottom-color: rgba(36, 28, 20, 0.08);
}

.dashboard-grid {
    margin-bottom: 22px;
}

.table-wrap {
    overflow-x: auto;
}

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

.admin-table th,
.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(36, 28, 20, 0.08);
    text-align: left;
}

.compact-panel {
    max-width: 900px;
}

.auth-shell {
    min-height: 70vh;
    display: grid;
    place-items: center;
}

.auth-card {
    width: min(520px, 100%);
}

.checkbox-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
}

.checkbox-pill input {
    width: auto;
}

.print-shell {
    background: #fff;
    color: #111;
}

.print-ticket {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px;
}

.print-ticket__header,
.print-ticket__section {
    margin-bottom: 24px;
}

.center-copy {
    text-align: center;
}

.compact-page {
    min-height: 60vh;
    display: grid;
    place-items: center;
}

@keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(18px, 28px, 0) scale(1.08); }
}

@media (max-width: 980px) {
    .hero-grid,
    .checkout-grid,
    .two-column-story,
    .footer-grid,
    .admin-order-layout,
    .admin-layout,
    .contact-layout,
    .track-layout {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .feature-grid,
    .review-grid,
    .menu-card-grid,
    .dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        padding: 18px;
        border-radius: 22px;
        background: rgba(18, 15, 13, 0.96);
        border: 1px solid var(--line);
        display: none;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .nav-toggle {
        display: block;
    }

    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 10;
    }
}

@media (max-width: 720px) {
    .toast-stack {
        top: 16px;
        right: 16px;
        left: 16px;
        width: auto;
    }

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

    .toast__close {
        justify-self: end;
    }

    .page-section {
        padding: 70px 0;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-field--full {
        grid-column: auto;
    }

    .contact-info-card__value {
        font-size: 1rem;
    }

    .track-search-card,
    .track-status-card,
    .track-empty-card {
        padding: 20px;
    }

    .track-meta-grid {
        grid-template-columns: 1fr;
    }

    .track-timeline-entry__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy h1,
    .inner-hero h1 {
        font-size: 2.8rem;
    }

    .category-grid,
    .feature-grid,
    .review-grid,
    .menu-card-grid,
    .dashboard-grid,
    .form-grid.two-up {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        min-height: 420px;
    }

    .panel-heading,
    .admin-header,
    .menu-card__header,
    .menu-card__footer,
    .cart-row,
    .cart-controls,
    .cart-card__status-row,
    .button-row,
    .summary-row,
    .summary-item,
    .hours-row,
    .print-ticket__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        width: min(100vw - 20px, 100%);
    }

    .admin-main {
        padding: 18px;
    }

    .modifier-group {
        padding: 16px;
        border-radius: 22px;
    }

    .modifier-group__legend {
        flex-direction: column;
        align-items: flex-start;
    }

    .modifier-group__meta {
        justify-content: flex-start;
    }

    .modifier-option {
        padding: 14px 16px;
    }
}

@media print {
    .site-header,
    .site-footer,
    .toast-stack,
    .admin-sidebar,
    .admin-header,
    .button,
    .link-button {
        display: none !important;
    }

    body,
    .print-shell {
        background: #fff;
        color: #000;
    }
}

.hero-slide {
    isolation: isolate;
}

.hero-slide--image {
    background: #140f0d;
}

.hero-slide__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.76;
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
    transition: transform 7s ease, opacity 0.45s ease;
}

.hero-slide.is-active .hero-slide__image {
    transform: scale(1.01);
}

.hero-slide__scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 30%),
        linear-gradient(180deg, rgba(16, 13, 11, 0.08) 0%, rgba(16, 13, 11, 0.22) 38%, rgba(16, 13, 11, 0.92) 100%);
}

.hero-slide__frame {
    position: relative;
    z-index: 2;
}

.menu-card__visual {
    position: relative;
    overflow: hidden;
}

.menu-card__visual--image {
    background: #140f0d;
}

.menu-card__visual--image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 13, 11, 0.04), rgba(17, 13, 11, 0.42));
    pointer-events: none;
}

.menu-card__image {
    width: 100%;
    min-height: 220px;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: saturate(1.04);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.menu-card:hover .menu-card__image {
    transform: scale(1.08);
    filter: saturate(1.12);
}

.modifier-stack {
    display: grid;
    gap: 18px;
    padding-top: 4px;
}

.modifier-group {
    min-width: 0;
    margin: 0;
    padding: 18px 20px 20px;
    border: 1px solid rgba(241, 220, 185, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        rgba(17, 13, 11, 0.22);
}

.modifier-group__legend {
    width: 100%;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.modifier-group__title {
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.2;
}

.modifier-group__meta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.modifier-group__badge,
.modifier-group__hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modifier-group__badge {
    border: 1px solid rgba(241, 220, 185, 0.14);
    background: rgba(255,255,255,0.05);
    color: var(--cream);
}

.modifier-group__badge.is-required {
    border-color: rgba(240, 180, 93, 0.28);
    background: rgba(240, 180, 93, 0.12);
    color: var(--gold);
}

.modifier-group__hint {
    background: rgba(95, 111, 88, 0.16);
    color: #d9e5d4;
}

.modifier-options {
    display: grid;
    gap: 10px;
}

.modifier-option {
    min-width: 0;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.modifier-option:hover {
    transform: translateY(-1px);
    border-color: rgba(240, 180, 93, 0.26);
    background: rgba(255,255,255,0.05);
}

.modifier-option:has(.modifier-option__input:checked) {
    border-color: rgba(240, 180, 93, 0.38);
    background:
        linear-gradient(135deg, rgba(240, 180, 93, 0.14), rgba(255,255,255,0.03)),
        rgba(255,255,255,0.04);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.modifier-option__copy {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.modifier-option__name {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.25;
}

.modifier-option__price {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.3;
}

.modifier-option__price--paid {
    color: var(--cream);
}

.modifier-option__input {
    width: 20px;
    height: 20px;
    margin: 0;
    justify-self: end;
    accent-color: var(--gold);
}
.image-field-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
    gap: 24px;
    align-items: start;
}

.image-preview-card {
    padding: 24px;
    border-radius: 24px;
    background: #fffdf8;
    border: 1px solid rgba(36, 28, 20, 0.08);
    display: grid;
    gap: 12px;
}

.image-preview-card .eyebrow,
.image-preview-card .muted-copy {
    color: #6f6156;
}

.image-preview-frame {
    min-height: 260px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(240, 180, 93, 0.22), rgba(95, 111, 88, 0.16), rgba(255,255,255,0.92));
    border: 1px solid rgba(36, 28, 20, 0.08);
    display: grid;
    place-items: center;
}

.image-preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-preview-frame--empty span {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.54);
    font-size: 2rem;
    font-family: var(--font-display);
    color: #6f553d;
}

.checkbox-pill--admin {
    background: #fffdf8;
    border-color: rgba(36, 28, 20, 0.08);
}

.admin-thumb {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(240, 180, 93, 0.18), rgba(95, 111, 88, 0.12), rgba(255,255,255,0.86));
    border: 1px solid rgba(36, 28, 20, 0.08);
}

.admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-thumb--empty {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: #7b654d;
}

@media (max-width: 720px) {
    .image-field-grid {
        grid-template-columns: 1fr;
    }
}
.hero-slide__image,
.menu-card__image,
.admin-thumb img,
.image-preview-frame img {
    object-position: 50% 50%;
}

.focus-control-grid {
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.range-field {
    gap: 8px;
}

.range-field input[type="range"] {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.range-value,
.focus-pill,
.admin-thumb-wrap small {
    color: #6f6156;
    font-size: 0.86rem;
}

.range-value {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.preview-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.focus-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(240, 180, 93, 0.12);
    border: 1px solid rgba(36, 28, 20, 0.08);
}

.admin-thumb-wrap {
    display: grid;
    gap: 6px;
    justify-items: start;
}
.service-mode-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-mode-card {
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    display: grid;
    gap: 8px;
    color: var(--text-soft);
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.service-mode-card strong {
    color: var(--text);
    font-size: 1.05rem;
}

.service-mode-card:hover,
.service-mode-card.is-active {
    transform: translateY(-2px);
    border-color: rgba(240, 180, 93, 0.34);
    background: rgba(240, 180, 93, 0.1);
}

.service-mode-card.is-active span {
    color: var(--cream);
}

@media (max-width: 720px) {
    .service-mode-switch {
        grid-template-columns: 1fr;
    }
}.settings-section {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(36, 28, 20, 0.08);
    box-shadow: 0 20px 50px rgba(54, 40, 24, 0.08);
}

.panel-heading--stacked {
    align-items: flex-start;
    gap: 12px;
}

.settings-grid {
    align-items: end;
}

.settings-field-span-2 {
    grid-column: 1 / -1;
}

.settings-metric-grid {
    margin-bottom: 6px;
}

.settings-repeater,
.settings-repeater__rows {
    display: grid;
    gap: 14px;
}

.settings-row {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: #fffdf8;
    border: 1px solid rgba(36, 28, 20, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.settings-row--promise {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr) auto;
}

.settings-row--zone {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr) minmax(130px, 0.7fr) minmax(150px, 0.8fr) auto;
}

.settings-row--closure {
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
}

.settings-row--blackout {
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
}

.settings-row__actions {
    display: flex;
    align-items: end;
}

.settings-row__actions .button {
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .settings-row--promise,
    .settings-row--zone,
    .settings-row--closure,
    .settings-row--blackout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .settings-row__actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .settings-section {
        padding: 22px;
        border-radius: 22px;
    }

    .settings-row--promise,
    .settings-row--zone,
    .settings-row--closure,
    .settings-row--blackout {
        grid-template-columns: 1fr;
    }
}
.hours-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hours-settings-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: #fffdf8;
    border: 1px solid rgba(36, 28, 20, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.hours-settings-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hours-settings-card__header h4 {
    margin: 0;
}

.hours-settings-card__periods {
    display: grid;
    gap: 12px;
}

.hours-period-row {
    display: grid;
    grid-template-columns: 88px repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
}

.hours-period-row > span {
    color: #6f6156;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.audit-log-entry {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 20px;
    background: #fffdf8;
    border: 1px solid rgba(36, 28, 20, 0.08);
}

.audit-log-entry__meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.audit-log-entry__meta strong,
.audit-log-entry__meta time {
    color: #241c14;
}

.audit-log-entry__meta span {
    display: block;
    color: #6f6156;
    font-size: 0.86rem;
    margin-top: 4px;
}

.settings-history-placeholder,
.settings-history-content {
    display: grid;
    gap: 14px;
}

.settings-history-placeholder {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px dashed rgba(36, 28, 20, 0.14);
    background: #fffdf8;
}

.settings-history-content.is-loading {
    opacity: 0.68;
}

.settings-history-status {
    margin: 0;
}

@media (max-width: 1080px) {
    .hours-settings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hours-period-row {
        grid-template-columns: 1fr;
    }

    .audit-log-entry__meta {
        grid-template-columns: 1fr;
        display: grid;
    }
}

/* Admin Theme Refresh */
body.admin-shell {
    --admin-bg: #edf2f6;
    --admin-bg-soft: #f8fafc;
    --admin-surface: #ffffff;
    --admin-surface-soft: #f6f8fb;
    --admin-border: #d9e2ea;
    --admin-border-strong: #c8d3dd;
    --admin-text: #16202a;
    --admin-muted: #6a788a;
    --admin-sidebar: #18212c;
    --admin-sidebar-soft: #243140;
    --admin-accent: #c98635;
    --admin-accent-strong: #a5641f;
    background:
        radial-gradient(circle at top left, rgba(201, 134, 53, 0.1), transparent 26%),
        radial-gradient(circle at 85% 10%, rgba(79, 102, 126, 0.12), transparent 28%),
        linear-gradient(180deg, #f5f7fa 0%, #edf2f6 100%);
    color: var(--admin-text);
}

body.admin-shell .admin-sidebar {
    background: linear-gradient(180deg, var(--admin-sidebar) 0%, var(--admin-sidebar-soft) 100%);
    color: #eef4fb;
    border-right: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset -1px 0 0 rgba(255,255,255,0.03);
}

body.admin-shell .admin-sidebar .brandmark__icon {
    background: linear-gradient(135deg, #edb15b, #c47a26);
    box-shadow: 0 12px 28px rgba(196, 122, 38, 0.26);
}

body.admin-shell .admin-sidebar .brandmark__text strong {
    color: #f7fbff;
}

body.admin-shell .admin-sidebar .brandmark__text small,
body.admin-shell .admin-sidebar .feature-card p,
body.admin-shell .admin-sidebar .feature-card .eyebrow {
    color: #a9b7c8;
}

body.admin-shell .admin-sidebar .feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}

body.admin-shell .admin-nav {
    gap: 8px;
}

body.admin-shell .admin-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 14px;
    color: #bdc8d6;
    background: transparent;
    border: 1px solid transparent;
}

body.admin-shell .admin-nav a::after {
    display: none;
}

body.admin-shell .admin-nav a:hover {
    color: #f8fbff;
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.08);
}

body.admin-shell .admin-nav a.is-active {
    color: var(--admin-text);
    background: #f7fafc;
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 12px 28px rgba(10, 15, 21, 0.18);
}

body.admin-shell .admin-main {
    padding: 34px 38px;
}

body.admin-shell .admin-header {
    margin-bottom: 24px;
    align-items: flex-start;
}

body.admin-shell .admin-header .eyebrow {
    color: #8a97a8;
}

body.admin-shell .admin-user-card {
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--admin-border);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

body.admin-shell .admin-user-card strong {
    color: var(--admin-text);
}

body.admin-shell .admin-panel,
body.admin-shell .stat-card,
body.admin-shell .auth-card,
body.admin-shell .empty-state,
body.admin-shell .admin-main .summary-card,
body.admin-shell .admin-main .notice-card,
body.admin-shell .admin-main .feature-card,
body.admin-shell .settings-section {
    background: var(--admin-surface);
    color: var(--admin-text);
    border: 1px solid var(--admin-border);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

body.admin-shell .settings-row,
body.admin-shell .hours-settings-card,
body.admin-shell .audit-log-entry {
    background: var(--admin-surface-soft);
    border: 1px solid var(--admin-border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

body.admin-shell .stat-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body.admin-shell .stat-card strong,
body.admin-shell .admin-main .summary-card h2,
body.admin-shell .admin-main .feature-card h2,
body.admin-shell .admin-main .feature-card h3,
body.admin-shell .admin-main .admin-panel h2,
body.admin-shell .admin-main .auth-card h2,
body.admin-shell .admin-header h1,
body.admin-shell .panel-heading h2,
body.admin-shell .panel-heading h3,
body.admin-shell .hours-settings-card__header h4,
body.admin-shell .audit-log-entry__meta strong,
body.admin-shell .audit-log-entry__meta time {
    color: var(--admin-text);
}

body.admin-shell .admin-panel .eyebrow,
body.admin-shell .admin-panel p,
body.admin-shell .stat-card span,
body.admin-shell .admin-user-card span,
body.admin-shell .admin-table small,
body.admin-shell .admin-main .summary-card .eyebrow,
body.admin-shell .admin-main .summary-card p,
body.admin-shell .admin-main .notice-card .eyebrow,
body.admin-shell .admin-main .notice-card p,
body.admin-shell .admin-main .feature-card .eyebrow,
body.admin-shell .admin-main .feature-card p,
body.admin-shell .admin-main label,
body.admin-shell .timeline-entry span,
body.admin-shell .selected-modifier-group span,
body.admin-shell .hours-period-row > span,
body.admin-shell .audit-log-entry__meta span {
    color: var(--admin-muted);
}

body.admin-shell .admin-main .checkout-form {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.admin-shell .admin-main input,
body.admin-shell .admin-main textarea,
body.admin-shell .admin-main select {
    background: var(--admin-surface-soft);
    color: var(--admin-text);
    border: 1px solid var(--admin-border);
    box-shadow: none;
}

body.admin-shell .admin-main input::placeholder,
body.admin-shell .admin-main textarea::placeholder {
    color: #97a4b1;
}

body.admin-shell .admin-main input:focus,
body.admin-shell .admin-main textarea:focus,
body.admin-shell .admin-main select:focus {
    border-color: rgba(201, 134, 53, 0.58);
    box-shadow: 0 0 0 4px rgba(201, 134, 53, 0.12);
    background: #ffffff;
}

body.admin-shell .button-primary {
    background: linear-gradient(135deg, var(--admin-accent), var(--admin-accent-strong));
    color: #20140d;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(165, 100, 31, 0.2);
}

body.admin-shell .button-secondary {
    background: var(--admin-surface-soft);
    color: #304152;
    border-color: var(--admin-border);
}

body.admin-shell .button-secondary:hover {
    background: #eef3f8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

body.admin-shell .admin-sidebar .button-secondary {
    background: rgba(255,255,255,0.06);
    color: #eef4fb;
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
}

body.admin-shell .admin-sidebar .button-secondary:hover {
    background: rgba(255,255,255,0.12);
}

body.admin-shell .panel-heading a:not(.button),
body.admin-shell .summary-row a:not(.button),
body.admin-shell .admin-table a:not(.button) {
    color: var(--admin-accent-strong);
}

body.admin-shell .field-error {
    color: #a13d34;
}

body.admin-shell .notice-card--warning {
    background: #fff6e8;
    border-color: rgba(201, 134, 53, 0.28);
}

body.admin-shell .status-pill {
    background: rgba(201, 134, 53, 0.12);
    color: #935819;
}

body.admin-shell .admin-main .checkbox-pill {
    background: var(--admin-surface-soft);
    border-color: var(--admin-border);
}

body.admin-shell .admin-main .summary-row,
body.admin-shell .admin-main .summary-item,
body.admin-shell .admin-main .hours-row,
body.admin-shell .admin-main .print-ticket__row,
body.admin-shell .admin-main .summary-item--border,
body.admin-shell .admin-main .timeline-entry,
body.admin-shell .admin-table th,
body.admin-shell .admin-table td {
    border-bottom-color: rgba(22, 32, 42, 0.08);
}

body.admin-shell .admin-table th {
    color: var(--admin-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #f8fafc;
}

body.admin-shell .admin-table tbody tr:hover td {
    background: #f8fafc;
}

@media (max-width: 980px) {
    body.admin-shell .admin-main {
        padding: 22px;
    }
}
/* Responsive Polish */
body.admin-shell .dashboard-grid,
body.admin-shell .settings-metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

body.admin-shell .settings-metric-grid .stat-card {
    min-height: 124px;
}

body.admin-shell .admin-header,
body.admin-shell .panel-heading,
body.admin-shell .button-row {
    flex-wrap: wrap;
}

body.admin-shell .admin-user-card {
    min-width: 248px;
}

@media (max-width: 980px) {
    .topbar {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .service-badge {
        order: 3;
        width: 100%;
        min-width: 0;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-bar .button {
        width: 100%;
    }

    .preview-meta-row,
    .hours-settings-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    body.admin-shell .admin-sidebar {
        position: static;
        padding: 20px 18px;
        gap: 18px;
    }

    body.admin-shell .admin-header,
    body.admin-shell .panel-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    body.admin-shell .admin-user-card {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .topbar {
        gap: 14px;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-copy h1,
    .inner-hero h1 {
        max-width: none;
        font-size: 2.5rem;
    }

    .hero-slider {
        min-height: 360px;
        padding: 14px;
    }

    .hero-slide {
        inset: 14px;
        padding: 20px;
    }

    .filter-bar {
        padding: 16px;
        border-radius: 20px;
    }

    .chip-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        margin-right: -4px;
        scrollbar-width: none;
    }

    .chip-row::-webkit-scrollbar {
        display: none;
    }

    .chip {
        white-space: nowrap;
    }

    .checkbox-pill {
        align-items: flex-start;
    }

    .service-mode-card {
        padding: 16px 18px;
    }

    body.admin-shell .admin-main {
        padding: 18px 14px;
    }

    body.admin-shell .dashboard-grid,
    body.admin-shell .settings-metric-grid,
    .hours-settings-grid {
        grid-template-columns: 1fr;
    }

    .audit-log-entry,
    .hours-settings-card,
    .image-preview-card {
        padding: 16px;
    }
}
/* Form Layout Refresh */
textarea {
    resize: vertical;
}

.form-grid {
    display: grid;
    gap: 18px;
    align-items: start;
}

.form-grid > * {
    min-width: 0;
}

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

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

body.admin-shell .settings-section {
    gap: 22px;
}

body.admin-shell .settings-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

body.admin-shell .settings-grid > label {
    grid-column: span 6;
    min-width: 0;
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--admin-bg-soft);
    border: 1px solid var(--admin-border);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}

body.admin-shell .settings-grid > label.settings-field-span-2 {
    grid-column: 1 / -1;
}

body.admin-shell .settings-grid > label input,
body.admin-shell .settings-grid > label textarea,
body.admin-shell .settings-grid > label select {
    margin-top: 4px;
    background: #ffffff;
}

body.admin-shell .settings-grid > label input,
body.admin-shell .settings-grid > label select {
    min-height: 54px;
}

body.admin-shell .settings-grid > label textarea {
    min-height: 148px;
}

body.admin-shell .settings-row > label,
body.admin-shell .hours-period-row > label,
body.admin-shell .image-field-grid > * {
    min-width: 0;
}

body.admin-shell .settings-row textarea {
    min-height: 120px;
}

body.admin-shell .settings-section .panel-heading p {
    max-width: 68ch;
}

@media (max-width: 720px) {
    .form-grid.two-up,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    body.admin-shell .settings-grid {
        grid-template-columns: 1fr;
    }

    body.admin-shell .settings-grid > label {
        grid-column: 1 / -1;
        padding: 16px;
    }
}
/* Admin Fit And Control Polish */
.form-grid.two-up {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.form-grid.two-up > * {
    min-width: 0;
}

body.admin-shell .panel-heading {
    align-items: flex-start;
}

body.admin-shell .panel-heading > div,
body.admin-shell .button-row,
body.admin-shell .button-row form {
    min-width: 0;
}

body.admin-shell .button-row form {
    margin: 0;
}

body.admin-shell .panel-heading > .button,
body.admin-shell .panel-heading > a.button,
body.admin-shell .button-row .button {
    min-height: 52px;
}

body.admin-shell .admin-main select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 52px;
    background-image:
        linear-gradient(45deg, transparent 50%, #738296 50%),
        linear-gradient(135deg, #738296 50%, transparent 50%);
    background-position:
        calc(100% - 24px) calc(50% - 3px),
        calc(100% - 18px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

body.admin-shell .admin-main select::-ms-expand {
    display: none;
}

body.admin-shell .order-meta-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: start;
}

body.admin-shell .order-meta-grid .feature-card,
body.admin-shell .admin-panel .feature-card {
    gap: 12px;
}

body.admin-shell .order-meta-grid .feature-card p,
body.admin-shell .admin-panel .feature-card p {
    margin: 0;
}

body.admin-shell .admin-table td strong {
    display: inline-block;
    margin-bottom: 4px;
}

@media (max-width: 980px) {
    body.admin-shell .order-meta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .form-grid.two-up {
        grid-template-columns: 1fr;
    }

    body.admin-shell .panel-heading > .button,
    body.admin-shell .panel-heading > a.button,
    body.admin-shell .button-row,
    body.admin-shell .button-row form,
    body.admin-shell .button-row .button {
        width: 100%;
    }
}
/* Order Detail Refresh */
body.admin-shell .order-detail-layout {
    align-items: start;
}

body.admin-shell .order-detail-main {
    display: grid;
    gap: 26px;
}

body.admin-shell .order-detail-header {
    display: grid;
    gap: 18px;
}

body.admin-shell .order-detail-header__copy {
    display: grid;
    gap: 12px;
}

body.admin-shell .order-detail-header h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.98;
    word-break: break-word;
}

body.admin-shell .order-detail-actions {
    justify-content: flex-start;
}

body.admin-shell .order-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body.admin-shell .order-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--admin-surface-soft);
    border: 1px solid var(--admin-border);
    color: var(--admin-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

body.admin-shell .order-chip--accent {
    background: rgba(201, 134, 53, 0.12);
    border-color: rgba(201, 134, 53, 0.2);
    color: #935819;
}

body.admin-shell .order-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

body.admin-shell .order-overview-stat {
    display: grid;
    gap: 10px;
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--admin-bg-soft);
    border: 1px solid var(--admin-border);
}

body.admin-shell .order-overview-stat span {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--admin-muted);
}

body.admin-shell .order-overview-stat strong {
    color: var(--admin-text);
    font-size: 1.18rem;
    line-height: 1.2;
    word-break: break-word;
}

body.admin-shell .order-overview-stat p {
    margin: 0;
    color: var(--admin-muted);
}

body.admin-shell .order-detail-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 18px;
}

body.admin-shell .order-detail-card {
    display: grid;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 26px;
    background: var(--admin-bg-soft);
    border: 1px solid var(--admin-border);
}

body.admin-shell .order-detail-card__header {
    display: grid;
    gap: 8px;
}

body.admin-shell .order-detail-card__header h3 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 0.98;
    color: var(--admin-text);
    word-break: break-word;
}

body.admin-shell .order-detail-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    margin: 0;
}

body.admin-shell .order-detail-facts > div {
    display: grid;
    gap: 6px;
    min-width: 0;
}

body.admin-shell .order-detail-facts__full {
    grid-column: 1 / -1;
}

body.admin-shell .order-detail-facts dt {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--admin-muted);
}

body.admin-shell .order-detail-facts dd {
    margin: 0;
    color: var(--admin-text);
    font-size: 1rem;
    line-height: 1.55;
    word-break: break-word;
}

body.admin-shell .order-items-section {
    display: grid;
    gap: 18px;
}

body.admin-shell .order-items-header {
    align-items: end;
}

body.admin-shell .order-items-header h3 {
    margin: 0;
    color: var(--admin-text);
}

body.admin-shell .order-items-total {
    color: var(--admin-text);
    font-size: 1.2rem;
}

body.admin-shell .order-items-list {
    display: grid;
    gap: 14px;
}

body.admin-shell .order-item-card {
    display: grid;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 22px;
    background: var(--admin-bg-soft);
    border: 1px solid var(--admin-border);
}

body.admin-shell .order-item-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

body.admin-shell .order-item-card__head h4 {
    margin: 0;
    color: var(--admin-text);
    font-size: 1.08rem;
}

body.admin-shell .order-item-card__qty {
    margin: 4px 0 0;
    color: var(--admin-muted);
    font-size: 0.92rem;
}

body.admin-shell .order-item-card__price {
    color: var(--admin-text);
    font-size: 1.08rem;
    white-space: nowrap;
}

body.admin-shell .selected-modifiers {
    display: grid;
    gap: 10px;
}

body.admin-shell .selected-modifier-group {
    display: grid;
    gap: 6px;
}

body.admin-shell .selected-modifier-group + .selected-modifier-group {
    padding-top: 10px;
    border-top: 1px dashed rgba(22, 32, 42, 0.12);
}

body.admin-shell .selected-modifier-group p {
    margin: 0;
    color: var(--admin-text);
}

body.admin-shell .order-detail-aside {
    align-self: start;
    position: sticky;
    top: 24px;
}

body.admin-shell .order-detail-side-card {
    padding: 24px;
    border-radius: 26px;
}

body.admin-shell .order-update-card textarea {
    min-height: 132px;
}

body.admin-shell .order-timeline-card .timeline {
    gap: 0;
}

body.admin-shell .order-timeline-card .timeline-entry {
    padding: 16px 0;
}

body.admin-shell .order-timeline-card .timeline-entry strong {
    display: block;
    margin-bottom: 4px;
    color: var(--admin-text);
}

body.admin-shell .order-timeline-card .timeline-entry p {
    margin: 8px 0 0;
}

@media (max-width: 1200px) {
    body.admin-shell .order-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.admin-shell .order-detail-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    body.admin-shell .order-detail-aside {
        position: static;
    }
}

@media (max-width: 720px) {
    body.admin-shell .order-overview-grid,
    body.admin-shell .order-detail-facts {
        grid-template-columns: 1fr;
    }

    body.admin-shell .order-item-card__head {
        flex-direction: column;
        align-items: flex-start;
    }

    body.admin-shell .order-detail-header h2,
    body.admin-shell .order-detail-card__header h3 {
        max-width: none;
    }
}
/* Settings Top Alignment */
body.admin-shell .settings-row,
body.admin-shell .settings-row--promise,
body.admin-shell .settings-row--zone,
body.admin-shell .settings-row--closure,
body.admin-shell .settings-row--blackout {
    align-items: start;
}

body.admin-shell .settings-row > label,
body.admin-shell .settings-row__actions {
    align-self: start;
}

body.admin-shell .settings-row__actions {
    align-items: flex-start;
}

body.admin-shell .settings-row__actions .button {
    align-self: flex-start;
}
[data-checkout-shell] {
    transition: opacity 0.22s ease, transform 0.22s ease;
}

[data-checkout-shell].is-loading {
    opacity: 0.62;
    transform: translateY(4px);
    pointer-events: none;
}
