:root {
    --fh-bg: #fff7ec;
    --fh-bg-soft: #fff1dc;
    --fh-panel-dark: rgba(255, 255, 255, 0.9);
    --fh-panel-light: rgba(255, 251, 242, 0.92);
    --fh-border: rgba(222, 179, 122, 0.3);
    --fh-border-strong: rgba(206, 155, 78, 0.55);
    --fh-primary: #f4b41a;
    --fh-primary-dark: #d99912;
    --fh-secondary: #8b1e29;
    --fh-tertiary: #f8653a;
    --fh-ghost: rgba(244, 180, 26, 0.1);
    --fh-text: #321e11;
    --fh-text-light: #fffaf1;
    --fh-muted: #ad8062;
    --fh-radius-lg: 26px;
    --fh-radius-md: 18px;
    --fh-radius-sm: 13px;
    --fh-shadow: 0 26px 70px -30px rgba(120, 66, 35, 0.45);
    --auth-image: url('../img/hero1.jpg');
    --auth-image-overlay: linear-gradient(180deg, rgba(20, 8, 4, 0.3) 0%, rgba(20, 8, 4, 0.8) 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--fh-bg);
    color: var(--fh-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.auth-body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(165deg, rgba(255, 245, 226, 0.96), rgba(244, 180, 26, 0.12));
    padding: clamp(32px, 6vw, 64px) clamp(24px, 5vw, 48px);
}

body.auth-body.auth-body--split {
    background: linear-gradient(180deg, rgba(255, 245, 230, 0.9), rgba(255, 230, 194, 0.6));
}

.auth {
    width: min(960px, 100%);
    margin: 0 auto;
}

.auth__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
    gap: 0;
    border-radius: var(--fh-radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 243, 216, 0.92));
    box-shadow: var(--fh-shadow);
    max-height: min(82vh, 540px);
}

.auth__media {
    position: relative;
    min-height: 300px;
    background-image: var(--auth-image);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.auth__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 8, 4, 0.25) 0%, rgba(20, 8, 4, 0.65) 100%);
}

.auth__media::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: var(--fh-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.25);
    opacity: 0.45;
    pointer-events: none;
}

.auth__media-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: clamp(18px, 3vw, 28px);
    color: rgba(255, 246, 232, 0.94);
    max-width: 300px;
}

.auth__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: rgba(244, 180, 26, 0.22);
    border: 1px solid rgba(255, 246, 232, 0.35);
}

.auth__headline {
    margin: 0;
    font-size: clamp(1.72rem, 2.3vw, 2.05rem);
    font-weight: 700;
    line-height: 1.12;
}

.auth__copy {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 246, 232, 0.85);
}

.auth__card {
    display: grid;
    align-content: center;
    padding: clamp(22px, 3.8vw, 30px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 239, 212, 0.94));
    gap: 16px;
}

.auth__brand {
    display: grid;
    gap: 8px;
    text-align: left;
}

.auth__logo {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.94);
    margin: 0;
    box-shadow: 0 18px 36px -24px rgba(139, 30, 41, 0.35);
}

.auth__title {
    margin: 0;
    font-size: clamp(1.58rem, 2.1vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.auth__subtitle {
    margin: 0;
    color: rgba(72, 40, 25, 0.68);
    font-size: 0.88rem;
    line-height: 1.32;
    max-width: 28ch;
}

.auth__form {
    display: grid;
    gap: 12px;
}

.auth__field {
    display: grid;
    gap: 4px;
}

.auth__label {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(72, 40, 25, 0.72);
}

.auth__input {
    border-radius: var(--fh-radius-sm);
    border: 1px solid rgba(244, 180, 26, 0.4);
    padding: 0.6rem 0.88rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.98);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    color: var(--fh-text);
}

.auth__field--password {
    gap: 10px;
}

.auth__input-group {
    position: relative;
}

.auth__input-group .auth__input {
    width: 100%;
    padding-right: 3.2rem;
}

.auth__toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border: none;
    background: rgba(244, 180, 26, 0.18);
    color: var(--fh-secondary);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.auth__toggle:hover {
    background: rgba(244, 180, 26, 0.28);
    transform: translateY(-50%) translateY(-1px);
}

.auth__toggle:focus-visible {
    outline: 2px solid rgba(244, 180, 26, 0.6);
    outline-offset: 2px;
}

.auth__input:focus {
    outline: none;
    border-color: rgba(244, 180, 26, 0.8);
    box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.22);
}

.auth__actions {
    display: flex;
    justify-content: flex-end;
}

.auth__submit[aria-busy="true"] {
    position: relative;
    pointer-events: none;
}

.auth__submit[aria-busy="true"]::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: auth-spin 0.75s linear infinite;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

.auth__feedback {
    min-height: 1.2em;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(72, 40, 25, 0.62);
}

.auth__feedback--error {
    color: #b42318;
}

.auth__feedback--success {
    color: #056142;
}

.auth__footer {
    text-align: center;
    font-size: 0.86rem;
    color: rgba(72, 40, 25, 0.6);
}

@media (max-width: 1024px) {
    body.auth-body {
        padding: clamp(18px, 6vw, 32px) clamp(12px, 6vw, 32px);
    }

    .auth {
        width: min(640px, 100%);
    }

    .auth__shell {
        grid-template-columns: 1fr;
        border-radius: var(--fh-radius-md);
    }

    .auth__media {
        min-height: 260px;
    }

    .auth__media::after {
        inset: 16px;
    }

    .auth__media-content {
        max-width: none;
        padding: clamp(18px, 5vw, 26px);
    }

    .auth__card {
        padding: clamp(20px, 6vw, 30px);
        gap: 14px;
    }
}

@media (max-width: 720px) {
    body.auth-body {
        padding: clamp(16px, 7vw, 28px) clamp(10px, 6vw, 24px);
    }

    .auth {
        gap: 16px;
    }

    .auth__media {
        min-height: 220px;
    }

    .auth__media::after {
        inset: 12px;
    }

    .auth__media-content {
        gap: 6px;
        padding: clamp(16px, 5vw, 24px);
    }

    .auth__headline {
        font-size: clamp(1.55rem, 5vw, 1.78rem);
    }

    .auth__copy {
        font-size: 0.86rem;
        line-height: 1.35;
    }

    .auth__card {
        padding: clamp(18px, 6vw, 26px);
    }

    .auth__logo {
        width: 54px;
        height: 54px;
    }

    .auth__title {
        font-size: clamp(1.45rem, 5vw, 1.7rem);
    }

    .auth__subtitle {
        font-size: 0.84rem;
        line-height: 1.28;
    }
}

@media (max-width: 540px) {
    .auth {
        width: 100%;
    }

    .auth__shell {
        grid-template-columns: 1fr;
    }

    .auth__media {
        display: none;
    }

    .auth__card {
        padding: 18px;
        gap: 12px;
    }

    .auth__brand {
        gap: 6px;
    }

    .auth__title {
        font-size: 1.4rem;
    }

    .auth__subtitle {
        font-size: 0.82rem;
    }

    .auth__actions {
        justify-content: center;
    }

    .auth__submit {
        width: 100%;
    }

    .auth__footer {
        font-size: 0.78rem;
    }
}

@keyframes auth-spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

body::before {
    /* Soft pizza-inspired pattern to keep the backdrop on-brand */
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image:
        repeating-conic-gradient(from 12deg, rgba(244, 180, 26, 0.12) 0deg 18deg, transparent 18deg 36deg),
        radial-gradient(460px circle at 8% 16%, rgba(139, 30, 41, 0.18) 0 44%, transparent 48%),
        radial-gradient(420px circle at 88% 22%, rgba(232, 119, 34, 0.14) 0 40%, transparent 46%),
        radial-gradient(360px circle at 74% 78%, rgba(120, 185, 104, 0.12) 0 34%, transparent 40%);
    background-size: 320px 320px, auto, auto, auto;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

a {
    color: inherit;
}

.dashboard {
    display: flex;
    min-height: 100vh;
    position: relative;
}


.sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 28px 26px 38px;
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 239, 215, 0.85)), url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    border-right: 1px solid var(--fh-border);
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    z-index: 12;
    overflow-y: auto;
    transform: translateX(0);
    transition: transform 0.3s ease;
    box-shadow: 18px 0 55px -42px rgba(41, 18, 9, 0.55);
}

@supports not (backdrop-filter: blur(24px)) {
    .sidebar {
        background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 239, 215, 0.9)), url('../img/background.jpg');
        background-size: cover;
        background-position: center;
    }
}

body.sidebar-open .sidebar {
    transform: translateX(0);
}

.sidebar::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(120% 120% at 20% 15%, rgba(244, 180, 26, 0.18), transparent 55%);
    z-index: -1;
}

.sidebar__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.sidebar__mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    box-shadow: 0 16px 34px -20px rgba(120, 66, 35, 0.8);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px;
}

.sidebar__identity {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar__logo {
    font-size: 1.38rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sidebar__tagline {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fh-muted);
}

.sidebar__dismiss {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(244, 180, 26, 0.4);
    background: rgba(255, 255, 255, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.sidebar__dismiss-line {
    width: 14px;
    height: 2px;
    background: rgba(72, 40, 25, 0.75);
    display: block;
    transition: transform 0.2s ease;
}

.sidebar__dismiss-line:first-of-type {
    transform: rotate(45deg) translateY(1px);
}

.sidebar__dismiss-line:last-of-type {
    transform: rotate(-45deg) translateY(-1px);
}

.sidebar__nav {
    display: grid;
    gap: 10px;
}

.sidebar__link {
    text-align: left;
    padding: 0.75rem 1.1rem;
    border-radius: var(--fh-radius-sm);
    border: 1px solid transparent;
    background: transparent;
    font-size: 0.96rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(72, 40, 25, 0.68);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sidebar__link:hover {
    border-color: rgba(244, 180, 26, 0.45);
    background: rgba(244, 180, 26, 0.12);
    transform: translateY(-1px);
}

.sidebar__link.is-active {
    background: rgba(244, 180, 26, 0.18);
    border-color: rgba(244, 180, 26, 0.65);
    color: #3f220f;
}

.sidebar__footer {
    margin-top: 40px;
    display: grid;
    gap: 12px;
}

.sidebar__footer-title {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(72, 40, 25, 0.65);
}

.sidebar__pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidebar__pill {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 173, 90, 0.14);
    border: 1px solid rgba(244, 180, 26, 0.45);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(63, 27, 9, 0.76);
}

.sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(23, 14, 9, 0.55);
    border: none;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 11;
    pointer-events: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(244, 180, 26, 0.4);
    background: linear-gradient(145deg, rgba(255, 253, 245, 0.98), rgba(255, 231, 186, 0.92));
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    z-index: 40;
}

.nav-toggle:hover {
    box-shadow: 0 12px 26px -18px rgba(72, 40, 25, 0.7);
    transform: translateY(-1px);
}

.nav-toggle__bar {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: rgba(77, 42, 30, 0.9);
    transition: background 0.3s ease;
    transform-origin: center;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: rgba(77, 42, 30, 0.9);
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.nav-toggle__bar::before {
    top: -6px;
}

.nav-toggle__bar::after {
    top: 6px;
}

body.sidebar-open .nav-toggle__bar {
    background: transparent;
}

body.sidebar-open .nav-toggle__bar::before {
    transform: translateY(6px) rotate(45deg);
}

body.sidebar-open .nav-toggle__bar::after {
    transform: translateY(-6px) rotate(-45deg);
}

body.sidebar-open .nav-toggle__bar::before,
body.sidebar-open .nav-toggle__bar::after {
    background: rgba(139, 30, 41, 0.9);
}

body.sidebar-open {
    overflow: hidden;
}

body.sidebar-open .sidebar-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.sidebar-open .nav-toggle {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 38px -28px rgba(41, 18, 9, 0.7);
}

.nav-toggle:focus-visible,
.sidebar__dismiss:focus-visible {
    outline: 2px solid rgba(244, 180, 26, 0.8);
    outline-offset: 2px;
}

.workspace {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 36px 48px 48px;
    margin-left: 260px;
    min-height: 100vh;
    flex: 1;
    width: calc(100% - 260px);
}

.workspace::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 280px;
    background: radial-gradient(circle at 50% -40%, rgba(255, 228, 182, 0.6), transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.workspace__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 8px;
}

.workspace__title h1 {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.workspace__title p {
    margin: 8px 0 0;
    color: rgba(72, 40, 25, 0.66);
    font-size: 0.98rem;
}

.workspace__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.workspace__switcher {
    margin: 32px 0 26px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.workspace__insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 8px;
}

.insight-card {
    position: relative;
    border-radius: var(--fh-radius-md);
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(244, 180, 26, 0.2);
    box-shadow: 0 18px 44px -36px rgba(72, 40, 25, 0.6);
    display: grid;
    gap: 8px;
    overflow: hidden;
}

.insight-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% -20%, rgba(244, 180, 26, 0.24), transparent 60%);
    pointer-events: none;
}

.insight-card__label {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(72, 40, 25, 0.58);
}

.insight-card__value-wrap {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.insight-card__value {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: rgba(72, 40, 25, 0.95);
}

.insight-card__unit {
    font-size: 0.9rem;
    color: rgba(72, 40, 25, 0.6);
    font-weight: 600;
}

.insight-card__hint {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(72, 40, 25, 0.6);
}

.insight-card--accent {
    background: linear-gradient(135deg, rgba(244, 180, 26, 0.92), rgba(255, 226, 168, 0.9));
    color: #3f220f;
}

.insight-card--accent .insight-card__label {
    color: rgba(45, 23, 12, 0.75);
}

.insight-card--accent .insight-card__hint {
    color: rgba(45, 23, 12, 0.75);
}

.insight-card__cta {
    margin-top: auto;
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #3f220f;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 22px -16px rgba(63, 27, 9, 0.5);
}

.workspace-toggle {
    border: 1px solid rgba(244, 180, 26, 0.45);
    background: rgba(255, 248, 234, 0.72);
    color: rgba(72, 40, 25, 0.76);
    border-radius: 999px;
    padding: 0.55rem 1.32rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.workspace-toggle:hover:not(.is-active) {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px -28px rgba(120, 66, 35, 0.5);
}

.workspace-toggle.is-active {
    background: rgba(244, 180, 26, 0.92);
    color: rgba(50, 30, 17, 0.95);
    box-shadow: 0 18px 34px -22px rgba(139, 30, 41, 0.4);
}

.workspace-toggle:focus-visible {
    outline: 2px solid rgba(139, 30, 41, 0.35);
    outline-offset: 2px;
}

.search-field {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(244, 180, 26, 0.36);
    background: rgba(255, 255, 255, 0.95);
    color: rgba(72, 40, 25, 0.65);
    box-shadow: 0 14px 34px -28px rgba(120, 66, 35, 0.55);
}

.search-field__icon {
    font-size: 1.05rem;
}

.search-field__input {
    background: transparent;
    border: none;
    outline: none;
    color: #2d170c;
    font-size: 0.98rem;
    min-width: 240px;
}

.search-field__input::placeholder {
    color: rgba(72, 40, 25, 0.45);
}

.workspace__grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .workspace__grid {
        flex-direction: column;
        gap: 28px;
    }

    .order-panel {
        width: 100%;
    }
}

.workspace__primary {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
    width: 100%;
}

[data-workspace-panel][hidden] {
    display: none !important;
}

.menu-board {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--fh-radius-lg);
    border: 1px solid var(--fh-border);
    padding: 32px 32px 40px;
    box-shadow: var(--fh-shadow);
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-height: max(600px, calc(100vh - 200px));
    min-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 0;
    padding-right: 20px;
}

.orders-board {
    margin-top: 34px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--fh-radius-lg);
    border: 1px solid var(--fh-border);
    box-shadow: 0 20px 45px -32px rgba(72, 40, 25, 0.55);
    padding: 32px 32px 36px;
    display: grid;
    gap: 24px;
}

.orders-board__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(244, 180, 26, 0.15);
    margin-bottom: 4px;
}

.orders-board__header h2 {
    margin: 0;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.orders-board__subtitle {
    margin: 6px 0 0;
    color: rgba(72, 40, 25, 0.6);
    font-size: 0.92rem;
}

.orders-board__actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.orders-board__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(244, 180, 26, 0.16);
    border: 1px solid rgba(244, 180, 26, 0.35);
    font-weight: 600;
    color: rgba(72, 40, 25, 0.78);
}

.orders-board__refresh {
    border: none;
    border-radius: 10px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    background: rgba(139, 30, 41, 0.12);
    color: rgba(139, 30, 41, 0.92);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.orders-board__refresh:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -20px rgba(139, 30, 41, 0.65);
    background: rgba(139, 30, 41, 0.16);
}

.orders-board__refresh[disabled] {
    opacity: 0.6;
    cursor: wait;
    box-shadow: none;
}

.orders-board__controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 20px 0 0;
}

.orders-board__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(72, 40, 25, 0.65);
}

.orders-board__field-label {
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(72, 40, 25, 0.55);
}

.orders-board__field select,
.orders-board__field input[type="search"] {
    appearance: none;
    border: 1px solid rgba(139, 30, 41, 0.25);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: rgba(72, 40, 25, 0.85);
    background: rgba(255, 249, 236, 0.92);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.orders-board__field select:focus,
.orders-board__field input[type="search"]:focus {
    outline: none;
    border-color: rgba(139, 30, 41, 0.6);
    box-shadow: 0 0 0 3px rgba(139, 30, 41, 0.18);
}

.orders-board__field--stretch {
    grid-column: span 2;
}

.orders-board__table-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 400px;
    padding: 4px 8px 8px 4px;
    border-radius: 18px;
    border: 1px solid rgba(244, 180, 26, 0.18);
    background: linear-gradient(180deg, rgba(255, 249, 236, 0.7) 0%, rgba(255, 249, 236, 0.3) 100%);
}

.orders-board__table-wrapper::-webkit-scrollbar {
    width: 8px;
}

.orders-board__table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(244, 180, 26, 0.45);
    border-radius: 999px;
}

.orders-board__table-wrapper::-webkit-scrollbar-track {
    background: rgba(244, 180, 26, 0.12);
    border-radius: 999px;
}

.orders-board__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.94rem;
}

.orders-board__table thead th {
    text-align: left;
    padding: 12px 16px 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(72, 40, 25, 0.6);
    font-weight: 600;
    border-bottom: 2px solid rgba(244, 180, 26, 0.25);
}

.orders-board__table tbody td {
    padding: 16px 16px;
    border-top: 1px solid rgba(244, 180, 26, 0.2);
    vertical-align: middle;
}

.orders-board__table tbody tr[data-order-id] {
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.orders-board__table tbody tr[data-order-id]:hover {
    background: rgba(244, 180, 26, 0.12);
}

.orders-board__table tbody tr.is-active {
    background: rgba(244, 180, 26, 0.16);
}

.orders-board__table tbody tr.is-active td {
    border-top-color: rgba(244, 180, 26, 0.45);
}

.orders-board__table tbody tr[data-order-id]:focus {
    outline: 2px solid rgba(139, 30, 41, 0.35);
    outline-offset: -2px;
}

.orders-board__order-id {
    font-weight: 700;
    color: rgba(72, 40, 25, 0.9);
}

.orders-board__meta {
    margin: 4px 0 0;
    color: rgba(72, 40, 25, 0.55);
    font-size: 0.8rem;
}

.orders-board__status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.order-status-select {
    border-radius: 999px;
    border: 1px solid rgba(139, 30, 41, 0.25);
    padding: 0.4rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
    background: rgba(255, 249, 236, 0.92);
    color: rgba(72, 40, 25, 0.8);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-status-select:focus {
    outline: none;
    border-color: rgba(139, 30, 41, 0.6);
    box-shadow: 0 0 0 3px rgba(139, 30, 41, 0.18);
}

.order-status-select[disabled] {
    opacity: 0.6;
    cursor: wait;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    background: rgba(244, 180, 26, 0.2);
    color: rgba(72, 40, 25, 0.85);
}

.status-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.75;
}

.status-badge--service-dine-in {
    background: rgba(244, 180, 26, 0.18);
    color: rgba(72, 40, 25, 0.9);
}

.status-badge--service-take-away {
    background: rgba(139, 30, 41, 0.12);
    color: rgba(139, 30, 41, 0.9);
}

.status-badge--service-delivery {
    background: rgba(70, 128, 80, 0.16);
    color: rgba(70, 128, 80, 0.9);
}

.order-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(244, 180, 26, 0.2);
}

.order-source-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.order-source-badge--public {
    background: rgba(244, 180, 26, 0.18);
    color: rgba(139, 30, 41, 0.95);
}

.order-source-badge--public::before {
    background: rgba(139, 30, 41, 0.95);
}

.order-source-badge--staff {
    background: rgba(72, 40, 25, 0.08);
    color: rgba(72, 40, 25, 0.85);
}

.order-source-badge--staff::before {
    background: rgba(72, 40, 25, 0.65);
}

.orders-board__table tbody tr.orders-board__row--public {
    box-shadow: inset 3px 0 0 rgba(244, 180, 26, 0.85);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.68);
    box-shadow: 0 0 0 2px rgba(244, 180, 26, 0.18);
}

.status-dot--pending {
    background: rgba(244, 180, 26, 0.9);
    box-shadow: 0 0 0 2px rgba(244, 180, 26, 0.22);
}

.status-dot--in-progress {
    background: rgba(70, 128, 196, 0.9);
    box-shadow: 0 0 0 2px rgba(70, 128, 196, 0.22);
}

.status-dot--ready {
    background: rgba(120, 185, 104, 0.95);
    box-shadow: 0 0 0 2px rgba(120, 185, 104, 0.22);
}

.status-dot--delivered {
    background: rgba(70, 128, 80, 0.95);
    box-shadow: 0 0 0 2px rgba(70, 128, 80, 0.24);
}

.status-dot--cancelled {
    background: rgba(139, 30, 41, 0.85);
    box-shadow: 0 0 0 2px rgba(139, 30, 41, 0.24);
}

.orders-board__feedback {
    min-height: 24px;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: rgba(72, 40, 25, 0.7);
    background: rgba(255, 249, 236, 0.5);
}

.orders-board__feedback.is-error {
    color: rgba(139, 30, 41, 0.9);
}

.orders-board__feedback.is-success {
    color: rgba(70, 128, 80, 0.85);
}

.orders-board__empty td {
    padding: 32px 16px;
    text-align: center;
    color: rgba(72, 40, 25, 0.55);
    font-size: 0.92rem;
}

.orders-board__footer {
    margin-top: 20px;
    padding-top: 16px;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(244, 180, 26, 0.15);
}

.orders-board__pagination {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    color: rgba(72, 40, 25, 0.65);
}

.orders-board__page-btn {
    border: none;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: rgba(139, 30, 41, 0.08);
    color: rgba(139, 30, 41, 0.82);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.orders-board__page-btn:hover:not([disabled]) {
    background: rgba(139, 30, 41, 0.14);
    transform: translateY(-1px);
}

.orders-board__page-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.orders-board__page-indicator {
    font-weight: 600;
    color: rgba(72, 40, 25, 0.8);
}

@media (max-width: 960px) {
    .orders-board__controls {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .orders-board__field--stretch {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .orders-board__controls {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 0 0;
    }

    .orders-board__field--stretch {
        grid-column: span 1;
    }

    .orders-board__table-wrapper {
        max-height: 320px;
        padding: 4px 6px 6px 4px;
    }

    .orders-board__table thead th {
        padding: 10px 12px 12px;
        font-size: 0.75rem;
    }

    .orders-board__table tbody td {
        padding: 14px 12px;
        font-size: 0.9rem;
    }
}

.menu-board__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(244, 180, 26, 0.15);
    margin-bottom: 4px;
}

.menu-board__header h2 {
    margin: 0;
    font-size: 1.65rem;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.menu-board__header p {
    margin: 6px 0 0;
    color: rgba(72, 40, 25, 0.6);
}

.menu-board__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(72, 40, 25, 0.7);
    font-size: 0.85rem;
}

.menu-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(244, 180, 26, 0.16);
    border: 1px solid rgba(244, 180, 26, 0.35);
    font-weight: 600;
}

.menu-board__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-filter {
    border: none;
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(244, 180, 26, 0.32);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(72, 40, 25, 0.7);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-filter:hover {
    transform: translateY(-1px);
    border-color: rgba(244, 180, 26, 0.6);
}

.menu-filter.is-active {
    background: linear-gradient(135deg, rgba(244, 180, 26, 0.28), rgba(255, 226, 168, 0.9));
    border-color: rgba(244, 180, 26, 0.8);
    color: #3f220f;
}

.menu-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(244, 180, 26, 0.26);
    color: inherit;
    font-size: 0.75rem;
}

 .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

@media (max-width: 767px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-card {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
    }
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (min-width: 1100px) {
    .menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.menu-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 14px;
    border: 1px solid rgba(244, 180, 26, 0.25);
    overflow: hidden;
    box-shadow: 0 16px 32px -28px rgba(120, 66, 35, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px -30px rgba(120, 66, 35, 0.58);
}

.menu-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.menu-card__media::before {
    content: '';
    display: block;
    padding-top: 65%;
}

.menu-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

@media (max-width: 768px) {
    .menu-card__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

@supports (aspect-ratio: 16 / 9) {
    .menu-card__media {
        aspect-ratio: 16 / 9;
    }

    .menu-card__media::before {
        display: none;
    }

    .menu-card__image {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.menu-card:hover .menu-card__image {
    transform: scale(1.05);
}

.menu-card__body {
    padding: 16px;
    display: grid;
    gap: 12px;
}

.menu-card__text {
    display: grid;
    gap: 6px;
}

.menu-card__category {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(72, 40, 25, 0.55);
}

.menu-card__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #2d170c;
}

.menu-card__desc {
    margin: 0;
    font-size: 0.88rem;
    color: rgba(72, 40, 25, 0.66);
}

.menu-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.menu-card__price {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--fh-secondary);
}

.menu-card__cta {
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    background: rgba(244, 180, 26, 0.18);
    color: #5d2c16;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 12px 26px -20px rgba(120, 66, 35, 0.45);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.menu-card__cta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.menu-card__cta span::before {
    content: '+';
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fh-primary), #ffd971);
    color: #301507;
    font-size: 0.85rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}

.menu-card__cta:hover {
    transform: translateY(-2px);
    background: rgba(244, 180, 26, 0.28);
    box-shadow: 0 18px 32px -24px rgba(120, 66, 35, 0.58);
}

.order-panel {
    display: grid;
    gap: 24px;
    align-content: start;
    align-self: stretch;
    width: 100%;
    padding-right: 0;
}

.order-panel__card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--fh-border);
    border-radius: var(--fh-radius-md);
    box-shadow: 0 18px 36px -32px rgba(120, 66, 35, 0.55);
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
}

.order-panel__card[aria-labelledby="cart-header"] {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.order-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(244, 180, 26, 0.15);
    margin-bottom: 4px;
}

.order-panel__header h2 {
    margin: 0;
    font-size: 1.32rem;
    font-weight: 700;
}

.order-panel__subtitle {
    margin: 6px 0 0;
    font-size: 0.88rem;
    color: rgba(72, 40, 25, 0.6);
}

.order-panel__header--split {
    align-items: center;
}

/* Cart footer styles are defined in enhanced section below */

.order-panel__card--ticket {
    padding: 22px 24px;
    gap: 14px;
}

.order-panel__card--ticket[aria-hidden="true"] {
    display: none;
}

.order-panel__header--ticket {
    margin-bottom: 4px;
}

.order-panel__card--ticket.is-active {
    display: grid;
}

.order-panel__view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    width: 100%;
    align-items: start;
}

.order-panel__view .order-panel__card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .order-panel__view {
        grid-template-columns: 1fr;
    }
}

.order-panel__view[hidden] {
    display: none !important;
}

.order-history-detail {
    display: grid;
    gap: 18px;
}

.order-history-detail__empty {
    margin: 0;
    padding: 14px 18px;
    border-radius: var(--fh-radius-md);
    border: 1px dashed rgba(244, 180, 26, 0.45);
    background: rgba(255, 249, 236, 0.72);
    color: rgba(72, 40, 25, 0.6);
    font-size: 0.92rem;
}

.order-history-detail__content {
    display: grid;
    gap: 18px;
}

.order-history-detail__summary {
    display: grid;
    gap: 8px;
}

.order-history-detail__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(139, 30, 41, 0.25);
    background: rgba(139, 30, 41, 0.12);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(139, 30, 41, 0.85);
    width: fit-content;
}

.order-history-detail__badge[data-status="pending"] {
    background: rgba(249, 115, 22, 0.16);
    border-color: rgba(249, 115, 22, 0.4);
    color: #a4531a;
}

.order-history-detail__badge[data-status="in-progress"],
.order-history-detail__badge[data-status="prepping"] {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.35);
    color: #3f3cc6;
}

.order-history-detail__badge[data-status="ready"] {
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.35);
    color: #1a8d4a;
}

.order-history-detail__badge[data-status="delivered"] {
    background: rgba(20, 184, 166, 0.16);
    border-color: rgba(20, 184, 166, 0.32);
    color: #0b7167;
}

.order-history-detail__badge[data-status="cancelled"] {
    background: rgba(239, 68, 68, 0.16);
    border-color: rgba(239, 68, 68, 0.36);
    color: #a81f1f;
}

.order-history-detail__title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.order-history-detail__timestamp {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(72, 40, 25, 0.6);
}

.order-history-detail__list {
    margin: 0;
    display: grid;
    gap: 12px;
}

.order-history-detail__item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    border-radius: var(--fh-radius-sm);
    background: linear-gradient(180deg, rgba(255, 249, 236, 0.65), rgba(255, 249, 236, 0.3));
    border: 1px solid rgba(244, 180, 26, 0.32);
}

.order-history-detail__item dt {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(72, 40, 25, 0.58);
}

.order-history-detail__item dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(72, 40, 25, 0.9);
    text-align: right;
}

.order-history-detail__controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-history-detail__status {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(72, 40, 25, 0.55);
}

.order-history-detail__status select {
    appearance: none;
    border: 1px solid rgba(139, 30, 41, 0.25);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    font-size: 0.92rem;
    color: rgba(72, 40, 25, 0.85);
    background: rgba(255, 249, 236, 0.92);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-history-detail__status select:focus {
    outline: none;
    border-color: rgba(139, 30, 41, 0.6);
    box-shadow: 0 0 0 3px rgba(139, 30, 41, 0.18);
}

.ticket {
    width: min(100%, 340px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(139, 30, 41, 0.18);
    border-radius: 20px;
    padding: 20px 18px 22px;
    box-shadow: 0 18px 40px -28px rgba(47, 20, 8, 0.4);
    color: #2f1a13;
}

.ticket__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ticket__brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticket__logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(244, 180, 26, 0.45);
    padding: 6px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 239, 209, 0.9));
    object-fit: contain;
}

.ticket__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ticket__brand-name {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ticket__brand-tagline {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(72, 40, 25, 0.58);
}

.ticket__code {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    min-width: 72px;
}

.ticket__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(72, 40, 25, 0.55);
}

.ticket__value {
    font-weight: 600;
    color: #2f1a13;
    font-size: 0.95rem;
}

.ticket__value--accent {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: var(--fh-secondary);
}

.ticket__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(244, 180, 26, 0.12);
    border: 1px dashed rgba(244, 180, 26, 0.3);
}

.ticket__meta-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ticket__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.ticket__table th,
.ticket__table td {
    padding: 8px 0;
}

.ticket__table thead {
    border-bottom: 1px solid rgba(139, 30, 41, 0.3);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(72, 40, 25, 0.6);
}

.ticket__table .text-right {
    text-align: right;
}

.ticket__footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ticket__total {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fh-secondary);
}

.ticket__thanks {
    margin: 0;
    color: rgba(72, 40, 25, 0.68);
    font-size: 0.84rem;
}

@media (max-width: 960px) {
    .ticket {
        width: 100%;
    }

    .ticket__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .ticket__code {
        align-items: flex-start;
    }

    .ticket__meta {
        grid-template-columns: 1fr;
    }
}

.app-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 7vw 18px;
    color: var(--fh-text-light);
    position: sticky;
    top: 0;
    z-index: 10;
    background: linear-gradient(90deg, rgba(43, 17, 13, 0.9), rgba(26, 9, 6, 0.85));
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(244, 180, 26, 0.2);
}

.topbar__brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar__mark {
    width: 68px;
    height: auto;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.topbar__identity {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.topbar__logo {
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.topbar__tagline {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 240, 215, 0.72);
}

.topbar__status-badge {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    background: rgba(244, 180, 26, 0.18);
    border: 1px solid rgba(244, 180, 26, 0.55);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fh-primary);
    font-weight: 600;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 7vw 96px;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 245, 230, 0.78), rgba(255, 245, 230, 0) 55%),
        radial-gradient(120% 120% at 80% 0%, rgba(244, 180, 26, 0.18), transparent 70%);
    z-index: -1;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 42px;
    align-items: stretch;
}


.hero__copy {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 30, 41, 0.96), rgba(101, 34, 20, 0.94));
    border-radius: var(--fh-radius-lg);
    padding: 50px 56px 60px;
    color: var(--fh-text-light);
    box-shadow: var(--fh-shadow);
    overflow: hidden;
}

.hero__copy::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(244, 180, 26, 0.28), transparent 65%);
    pointer-events: none;
}


.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(244, 180, 26, 0.18);
    border: 1px solid rgba(244, 180, 26, 0.4);
    color: rgba(255, 246, 232, 0.9);
    position: relative;
    z-index: 1;
}

.hero__title {
    margin: 24px 0 12px;
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 800;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}


.hero__subtitle {
    margin: 0 0 34px;
    font-size: 1.05rem;
    color: rgba(255, 246, 232, 0.76);
    position: relative;
    z-index: 1;
    max-width: 34rem;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 1;
}

.hero__stat {
    background: rgba(23, 8, 6, 0.35);
    border-radius: 20px;
    padding: 20px 26px;
    min-width: 170px;
    border: 1px solid rgba(244, 180, 26, 0.28);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero__stat dt {
    margin: 0 0 8px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 240, 215, 0.68);
}

.hero__stat dd {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--fh-primary);
}

.hero__sidecard {
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.96), rgba(255, 244, 227, 0.96));
    border-radius: var(--fh-radius-lg);
    padding: 42px;
    box-shadow: var(--fh-shadow);
    display: flex;
    flex-direction: column;
    gap: 32px;
    border: 1px solid rgba(244, 180, 26, 0.22);
}

.hero__sidecard-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fh-secondary);
}

.checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.check-item {
    position: relative;
    padding-left: 26px;
    font-weight: 600;
    color: #5a3427;
}

.check-item::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fh-primary);
    box-shadow: 0 0 0 5px rgba(244, 180, 26, 0.18);
    position: absolute;
    top: 6px;
    left: 6px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.65rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
}

.button--primary {
    background: linear-gradient(135deg, var(--fh-primary), #ffd36c);
    color: #2b120d;
    box-shadow: 0 16px 32px -12px rgba(244, 180, 26, 0.45);
}

.button--primary:hover {
    background: linear-gradient(135deg, var(--fh-primary-dark), #ffcb52);
    transform: translateY(-1px);
}

.button--ghost {
    background: rgba(244, 180, 26, 0.08);
    color: var(--fh-secondary);
    border: 1px solid rgba(139, 30, 41, 0.36);
}

.button--ghost:hover {
    background: rgba(139, 30, 41, 0.08);
}

.button--outline {
    background: #ffffff;
    color: var(--fh-secondary);
    border: 1px solid rgba(139, 30, 41, 0.32);
    box-shadow: none;
}

.button--outline:hover {
    background: rgba(244, 180, 26, 0.08);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}


.menu-intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 20px 26px;
    border-radius: var(--fh-radius-md);
    border: 1px solid rgba(244, 180, 26, 0.22);
    background: rgba(24, 8, 7, 0.55);
}

.menu-intro__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 420px;
}

.menu-intro__title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.82rem;
    color: rgba(255, 233, 199, 0.75);
}

.menu-intro__description {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 246, 232, 0.75);
}

.menu-intro__stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.menu-intro__stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(244, 180, 26, 0.12);
    color: rgba(255, 233, 199, 0.85);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
}

.menu-intro__stat strong {
    font-weight: 700;
    color: var(--fh-primary);
}

.menu-intro__stat--accent {
    background: rgba(139, 30, 41, 0.16);
    color: #ffd36c;
}

.menu-container {
    padding: 32px 36px 44px;
    display: grid;
    gap: 34px;
    min-height: 380px;
}

.menu-placeholder,
.menu-info {
    margin: 0;
    padding: 48px 0;
    text-align: center;
    color: rgba(72, 40, 25, 0.55);
    font-weight: 600;
}

.menu-info--error {
    color: #c34141;
}

.menu-section {
    display: grid;
    gap: 20px;
}

.menu-section__header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.menu-section__title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    color: rgba(255, 233, 199, 0.68);
}

.menu-section__divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(244, 180, 26, 0.4), transparent);
}

.menu-section__count {
    font-weight: 600;
    color: rgba(244, 180, 26, 0.85);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 18px 20px;
}

.menu-tile {
    background: rgba(24, 8, 7, 0.65);
    border: 1px solid rgba(244, 180, 26, 0.14);
    border-radius: var(--fh-radius-md);
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

.menu-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top, rgba(244, 180, 26, 0.14), transparent 65%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.menu-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(244, 180, 26, 0.4);
    box-shadow: 0 22px 44px -24px rgba(0, 0, 0, 0.6);
}

.menu-tile:hover::after {
    opacity: 1;
}

.menu-tile__name {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 600;
    color: rgba(255, 246, 232, 0.94);
}

.menu-tile__meta {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(244, 180, 26, 0.6);
}

.menu-tile__price {
    margin: 0;
    color: var(--fh-primary);
    font-weight: 700;
    font-size: 1rem;
}

.menu-tile__add {
    margin-top: auto;
}

.customer-form {
    display: grid;
    gap: 18px;
}

.customer-form__field {
    display: grid;
    gap: 10px;
    font-size: 0.95rem;
}

.customer-form__label {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5a3427;
}

.customer-form__field input,
.customer-form__field select {
    border-radius: var(--fh-radius-sm);
    border: 1px solid rgba(139, 30, 41, 0.26);
    padding: 0.7rem 0.9rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: rgba(255, 250, 241, 0.88);
}

.customer-form__field input:focus,
.customer-form__field select:focus {
    border-color: var(--fh-primary);
    box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.28);
    outline: none;
}

.customer-form__field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(139, 30, 41, 0.6) 50%),
        linear-gradient(135deg, rgba(139, 30, 41, 0.6) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.2rem;
    cursor: pointer;
}

.cart-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
}


.cart-count {
    font-weight: 700;
    background: rgba(244, 180, 26, 0.18);
    color: var(--fh-primary);
    padding: 0.25rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    border: 1px solid rgba(244, 180, 26, 0.45);
}


.cart-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    flex: 1 1 auto;
    min-height: 200px;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    margin-right: -4px;
}

.cart-empty {
    text-align: center;
    padding: 32px 0;
    color: var(--fh-muted);
    font-size: 0.95rem;
}


.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(244, 180, 26, 0.22);
}

.cart-item:last-of-type {
    border-bottom: none;
}

.cart-item__details {
    display: grid;
    gap: 4px;
}


.cart-item__name {
    margin: 0;
    font-weight: 600;
    color: #431f15;
}


.cart-item__meta {
    margin: 0;
    font-size: 0.85rem;
    color: #8b5a41;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(139, 30, 41, 0.35);
    background: rgba(244, 180, 26, 0.08);
    font-size: 1rem;
    font-weight: 600;
    color: var(--fh-secondary);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.qty-button:hover {
    background: rgba(244, 180, 26, 0.22);
    transform: translateY(-1px);
}

.remove-button {
    background: transparent;
    border: none;
    color: rgba(139, 30, 41, 0.82);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    font-weight: 600;
}

.cart-item__qty {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

/* Cart footer styles consolidated in enhanced section */

.cart-total {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.2rem;
}

.cart-total dt {
    font-weight: 600;
    color: #431f15;
}

.cart-total dd {
    margin: 0;
    font-weight: 700;
    color: var(--fh-secondary);
}

.feedback-message {
    min-height: 32px;
    border-radius: 12px;
    font-size: 0.9rem;
    padding: 0.6rem 0.9rem;
    background: rgba(24, 8, 7, 0.06);
    color: #431f15;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.feedback-message.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feedback-message--info {
    background: rgba(244, 180, 26, 0.18);
    color: var(--fh-secondary);
}

.feedback-message--success {
    background: rgba(52, 168, 83, 0.16);
    color: #1f7a45;
}

.feedback-message--danger {
    background: rgba(198, 59, 59, 0.16);
    color: #8b1e29;
}

@media (max-width: 1240px) {
    .sidebar {
        width: 220px;
    }

    .workspace {
        margin-left: 220px;
        width: calc(100% - 220px);
    }

    .workspace__switcher {
        margin: 26px 0 22px;
    }

    .workspace__grid {
        flex-direction: column;
        gap: 26px;
    }

    .menu-board {
        max-height: max(500px, calc(100vh - 200px));
        min-height: 500px;
        overflow-y: auto;
        overflow-x: hidden;
        min-width: 0;
        padding-right: 18px;
    }

    .order-panel__card {
        padding: 24px;
    }

    .order-panel {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 1080px) {
    .dashboard {
        flex-direction: column;
    }

    .sidebar {
        width: min(320px, 88vw);
        padding: 26px 24px 34px;
        transform: translateX(-110%);
        box-shadow: 22px 0 60px -32px rgba(41, 18, 9, 0.6);
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    .sidebar__dismiss {
        display: inline-flex;
    }

    .nav-toggle {
        display: inline-flex;
        position: fixed;
        top: 18px;
        right: 22px;
        box-shadow: 0 16px 34px -28px rgba(41, 18, 9, 0.7);
    }

    .workspace {
        margin-left: 0;
        width: 100%;
        padding: 78px 24px 36px;
        gap: 24px;
    }

    .workspace__header {
        padding-right: 78px;
    }

    .workspace__switcher {
        margin: 24px 0 18px;
    }

    .workspace__grid {
        gap: 24px;
    }

    .menu-board {
        max-height: max(450px, calc(100vh - 180px));
        min-height: 450px;
        overflow-y: auto;
        overflow-x: hidden;
        min-width: 0;
        padding: 24px 20px 28px;
        padding-right: 16px;
        gap: 22px;
    }

    .orders-board {
        padding: 28px 24px 32px;
        gap: 20px;
    }

    .orders-board__actions {
        width: 100%;
        justify-content: space-between;
    }

    .order-panel {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 720px) {
    .workspace__header {
        align-items: flex-start;
        gap: 18px;
    }

    .workspace__title {
        flex: 1;
    }

    .workspace__actions {
        flex-direction: column-reverse;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
    }

    .workspace__switcher {
        width: 100%;
        margin: 18px 0;
    }

    .workspace-toggle {
        flex: 1 1 auto;
        text-align: center;
    }

    .orders-board__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .orders-board__actions {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }

    .orders-board__count {
        min-width: 0;
    }

    .orders-board__table thead {
        display: none;
    }

    .orders-board__table tbody td {
        display: block;
        padding: 12px 0;
        border-top: none;
    }

    .orders-board__table tbody tr {
        border-top: 1px solid rgba(244, 180, 26, 0.24);
        padding: 16px 0;
        margin-bottom: 8px;
    }

    .orders-board__table tbody tr:first-child {
        border-top: none;
    }

    .orders-board__table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.76rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: rgba(72, 40, 25, 0.5);
        margin-bottom: 6px;
    }

    .search-field {
        width: 100%;
    }

    .search-field__input {
        min-width: 0;
        width: 100%;
    }

    .menu-board__meta {
        width: 100%;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (max-width: 540px) {
    .sidebar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        box-shadow: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .workspace {
        padding: 24px 20px 32px;
    }

    .menu-board {
        padding: 22px 20px 28px;
        box-shadow: none;
        max-height: calc(100vh - 180px);
        min-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 12px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .menu-card {
        box-shadow: none;
        max-width: 100%;
        overflow: hidden;
    }
    
    .menu-card__media {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
        max-height: 160px;
        width: 100%;
    }
    
    .menu-card__media::before {
        padding-top: 40%;
    }
    
    @supports (aspect-ratio: 16 / 9) {
        .menu-card__media {
            aspect-ratio: 2.5 / 1;
            max-height: 160px;
        }
        
        .menu-card__media::before {
            display: none;
        }
    }
    
    .menu-card__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    
    .menu-card__body {
        padding: 12px;
    }

        .order-panel__card {
            padding: 24px 20px;
            box-shadow: none;
            gap: 18px;
        }

        .orders-board {
            box-shadow: none;
            padding: 24px 20px 28px;
            gap: 20px;
        }

        .orders-board__header {
            padding-bottom: 10px;
        }

        .orders-board__controls {
            padding: 16px 0 0;
            gap: 14px;
        }

        .menu-board {
            max-height: max(260px, calc(100vh - 200px));
        }

        .menu-card__add {
            box-shadow: none;
        }

        body.dashboard-body::before {
            display: none;
        }
    }

    .site-body {
        margin: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(255, 247, 236, 0.92), rgba(255, 255, 255, 0.96));
        color: var(--fh-text);
    }

    .site-body--contact {
        background: linear-gradient(180deg, rgba(255, 249, 239, 0.94), rgba(255, 255, 255, 0.98));
    }

    .site-header {
        position: relative;
        padding-bottom: clamp(40px, 6vw, 70px);
        overflow: hidden;
        background: radial-gradient(circle at 12% 18%, rgba(244, 180, 26, 0.2), transparent 48%),
            radial-gradient(circle at 88% 6%, rgba(139, 30, 41, 0.14), transparent 45%),
            linear-gradient(180deg, rgba(255, 248, 234, 0.96) 0%, rgba(255, 238, 209, 0.9) 100%);
    }

    .site-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(140deg, rgba(255, 255, 255, 0.2), rgba(244, 180, 26, 0.1));
        pointer-events: none;
    }

    .site-header--compact {
        padding-bottom: clamp(24px, 4vw, 42px);
    }

    .site-nav {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: clamp(18px, 3vw, 32px) clamp(16px, 6vw, 48px);
        max-width: 1180px;
        margin: 0 auto;
    }

    .site-logo {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: inherit;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .site-logo__mark {
        width: 50px;
        height: 50px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.88);
        padding: 6px;
        box-shadow: 0 18px 36px -20px rgba(139, 30, 41, 0.35);
    }

    .site-logo__text {
        font-size: clamp(1.22rem, 2vw, 1.5rem);
    }

    .site-nav__menu {
        display: inline-flex;
        align-items: center;
        gap: clamp(14px, 2vw, 26px);
        padding: 12px 20px;
        border-radius: 999px;
        border: 1px solid rgba(244, 180, 26, 0.25);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 22px 44px -24px rgba(33, 20, 13, 0.32);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    }

    .site-nav__menu.is-open {
        display: grid;
    }

    .site-nav__link {
        font-weight: 600;
        text-decoration: none;
        color: rgba(50, 30, 17, 0.78);
        padding: 8px 16px;
        border-radius: 999px;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .site-nav__link:hover,
    .site-nav__link:focus-visible {
        background: rgba(244, 180, 26, 0.18);
        color: rgba(50, 30, 17, 0.94);
        outline: none;
    }

    .site-nav__link.is-active {
        background: rgba(139, 30, 41, 0.12);
        color: rgba(50, 30, 17, 0.94);
    }

    .site-nav__link--cta {
        background: rgba(139, 30, 41, 0.12);
        color: rgba(139, 30, 41, 0.92);
        box-shadow: 0 12px 26px -18px rgba(139, 30, 41, 0.45);
    }

    .site-nav__link--cta:hover,
    .site-nav__link--cta:focus-visible {
        background: rgba(139, 30, 41, 0.2);
    }

    .site-nav__toggle {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(244, 180, 26, 0.4);
        border-radius: 12px;
        padding: 9px 10px;
        cursor: pointer;
    }

    .site-nav__bar {
        width: 22px;
        height: 2px;
        background: rgba(50, 30, 17, 0.82);
        border-radius: 999px;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .hero {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(32px, 7vw, 60px);
        align-items: center;
        max-width: 1180px;
        margin: 0 auto;
        padding: clamp(28px, 6vw, 48px) clamp(16px, 6vw, 48px) 0;
    }

    .hero__content {
        display: grid;
        gap: clamp(18px, 4vw, 26px);
        align-content: center;
    }

    .hero__eyebrow {
        margin: 0;
        font-size: 0.82rem;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: rgba(139, 30, 41, 0.7);
    }

    .hero__title {
        margin: 0;
        font-size: clamp(2.3rem, 4.2vw, 3.3rem);
        letter-spacing: -0.015em;
        line-height: 1.08;
    }

    .hero__lead {
        margin: 0;
        max-width: 48ch;
        color: rgba(50, 30, 17, 0.76);
        font-size: clamp(1rem, 1.6vw, 1.1rem);
    }

    .hero__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero__stats {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .hero__stat {
        flex: 1 1 140px;
        background: rgba(255, 255, 255, 0.72);
        border-radius: 18px;
        padding: 18px 22px;
        border: 1px solid rgba(244, 180, 26, 0.24);
        box-shadow: 0 18px 42px -26px rgba(33, 20, 13, 0.3);
    }

    .hero__stat dt {
        margin: 0 0 6px;
        font-size: 0.74rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(139, 30, 41, 0.68);
    }

    .hero__stat dd {
        margin: 0;
        font-size: 1.6rem;
        font-weight: 700;
        color: rgba(50, 30, 17, 0.9);
    }

    .hero__media {
        display: grid;
        gap: 18px;
        align-content: center;
    }

    .hero-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 224, 0.94));
        border-radius: var(--fh-radius-lg);
        padding: clamp(20px, 3vw, 28px);
        border: 1px solid rgba(244, 180, 26, 0.24);
        box-shadow: 0 30px 64px -36px rgba(120, 66, 35, 0.45);
        display: grid;
        gap: 12px;
    }

    .hero-card__badge {
        align-self: flex-start;
        background: rgba(139, 30, 41, 0.1);
        color: rgba(139, 30, 41, 0.88);
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 999px;
        border: 1px solid rgba(139, 30, 41, 0.25);
    }

    .hero-card__title {
        margin: 0;
        font-size: 1.4rem;
        color: rgba(50, 30, 17, 0.88);
    }

    .hero-card__copy {
        margin: 0;
        color: rgba(50, 30, 17, 0.7);
    }

    .hero-card__link {
        font-weight: 600;
        color: rgba(139, 30, 41, 0.88);
        text-decoration: none;
    }

    .hero-gallery {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .hero-gallery__item {
        border-radius: var(--fh-radius-md);
        overflow: hidden;
        aspect-ratio: 4 / 5;
        box-shadow: 0 24px 52px -30px rgba(33, 20, 13, 0.45);
    }

    .hero-gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-gallery__item--secondary {
        transform: translateY(18px);
        opacity: 0.92;
    }

    .site-main {
        flex: 1;
        display: grid;
        gap: clamp(52px, 8vw, 80px);
        padding: 0 0 clamp(50px, 7vw, 80px);
    }

    .site-main--contact {
        padding-top: clamp(28px, 6vw, 48px);
    }

    .section {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 clamp(16px, 6vw, 48px);
        display: grid;
        gap: clamp(24px, 5vw, 36px);
    }

    .section__shell {
        display: grid;
        gap: clamp(24px, 5vw, 36px);
    }

    .section__shell--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
        gap: clamp(26px, 6vw, 40px);
    }

    .section__shell--reverse > *:first-child {
        order: 2;
    }

    .section__shell--reverse > *:last-child {
        order: 1;
    }

    .section__header {
        display: grid;
        gap: 10px;
    }

    .section__eyebrow {
        margin: 0;
        font-size: 0.8rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(139, 30, 41, 0.7);
    }

    .section__title {
        margin: 0;
        font-size: clamp(1.9rem, 3vw, 2.5rem);
    }

    .section__lead {
        margin: 0;
        max-width: 58ch;
        color: rgba(50, 30, 17, 0.7);
    }

    .about__media {
        position: relative;
        border-radius: var(--fh-radius-lg);
        overflow: hidden;
        box-shadow: var(--fh-shadow);
        min-height: 320px;
    }

    .about__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about__content {
        display: grid;
        gap: 16px;
    }

    .about__highlights {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 8px;
        color: rgba(50, 30, 17, 0.68);
    }

    .about__signatures {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 14px;
    }

    .about__metric {
        display: block;
        font-size: 1.4rem;
        font-weight: 700;
        color: rgba(139, 30, 41, 0.9);
    }

    .about__metric-label {
        display: block;
        font-size: 0.85rem;
        color: rgba(50, 30, 17, 0.6);
    }

    .signature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: clamp(18px, 4vw, 28px);
    }

    .signature-card {
        position: relative;
        display: grid;
        gap: 12px;
        padding: clamp(20px, 3vw, 28px);
        border-radius: var(--fh-radius-md);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 222, 0.94));
        border: 1px solid rgba(244, 180, 26, 0.22);
        box-shadow: 0 24px 48px -28px rgba(120, 66, 35, 0.32);
        min-height: 220px;
    }

    .signature-card::after {
        content: '';
        position: absolute;
        inset: 12px;
        border-radius: var(--fh-radius-sm);
        border: 1px solid rgba(244, 180, 26, 0.22);
        opacity: 0.4;
        pointer-events: none;
    }

    .signature-card__badge {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(139, 30, 41, 0.75);
    }

    .signature-card__title {
        margin: 0;
        font-size: 1.25rem;
        color: rgba(50, 30, 17, 0.9);
    }

    .signature-card__meta {
        margin: 0;
        font-weight: 600;
        color: rgba(139, 30, 41, 0.78);
    }

    .signature-card__note {
        margin: 0;
        color: rgba(50, 30, 17, 0.6);
    }

    .signature-card--placeholder {
        align-items: center;
        text-align: left;
    }

    .menu-toolbar {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toolbar__filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .menu-tabs {
        display: inline-flex;
        flex-wrap: wrap;
        gap: 10px;
        background: rgba(255, 255, 255, 0.76);
        border-radius: 999px;
        padding: 6px;
        border: 1px solid rgba(244, 180, 26, 0.24);
    }

    .menu-tabs__button {
        border: none;
        background: transparent;
        border-radius: 999px;
        padding: 8px 18px;
        font-weight: 600;
        color: rgba(50, 30, 17, 0.72);
        cursor: pointer;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .menu-tabs__button:hover,
    .menu-tabs__button:focus-visible {
        background: rgba(244, 180, 26, 0.18);
        color: rgba(50, 30, 17, 0.92);
        outline: none;
    }

    .menu-tabs__button.is-active {
        background: rgba(139, 30, 41, 0.12);
        color: rgba(139, 30, 41, 0.9);
        box-shadow: inset 0 0 0 1px rgba(139, 30, 41, 0.3);
    }

    .menu-search {
        display: grid;
        gap: 6px;
        max-width: 320px;
    }

    .menu-search__label {
        font-weight: 600;
        color: rgba(50, 30, 17, 0.72);
    }

    .menu-search__input {
        border-radius: var(--fh-radius-sm);
        border: 1px solid rgba(244, 180, 26, 0.32);
        padding: 0.65rem 0.9rem;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.96);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .menu-search__input:focus {
        outline: none;
        border-color: rgba(244, 180, 26, 0.7);
        box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.2);
    }

    .menu-search__help {
        margin: 0;
        font-size: 0.85rem;
        color: rgba(50, 30, 17, 0.55);
    }

    .menu-status {
        font-weight: 600;
        color: rgba(139, 30, 41, 0.72);
    }

    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: clamp(18px, 4vw, 28px);
    }

    .menu-card {
        display: grid;
        gap: 12px;
        background: rgba(255, 255, 255, 0.94);
        border-radius: var(--fh-radius-md);
        border: 1px solid rgba(244, 180, 26, 0.2);
        box-shadow: 0 20px 44px -30px rgba(120, 66, 35, 0.32);
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .menu-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 52px -28px rgba(120, 66, 35, 0.45);
    }

    .menu-card__media {
        margin: 0;
        height: 180px;
        overflow: hidden;
    }

    .menu-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .menu-card__body {
        display: grid;
        gap: 10px;
        padding: 18px 20px 20px;
    }

    .menu-card__name {
        margin: 0;
        font-size: 1.1rem;
    }

    .menu-card__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: rgba(50, 30, 17, 0.65);
    }

    .menu-card__price {
        font-size: 1.02rem;
        color: rgba(139, 30, 41, 0.92);
    }

    .menu-card__category {
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(50, 30, 17, 0.52);
    }

    .reservation__content {
        display: grid;
        gap: 18px;
    }

    .reservation__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .reservation__details {
        margin: 0;
        display: grid;
        gap: 4px;
        font-size: 0.96rem;
        color: rgba(139, 30, 41, 0.85);
    }

    .reservation__details[hidden] {
        display: none;
    }

    .reservation__details a {
        color: inherit;
        font-weight: 700;
        text-decoration: none;
    }

    .reservation__panel {
        display: flex;
        justify-content: center;
    }

    .reservation-card {
        max-width: 420px;
        width: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 218, 0.96));
        border-radius: var(--fh-radius-lg);
        padding: clamp(24px, 4vw, 34px);
        border: 1px solid rgba(244, 180, 26, 0.24);
        box-shadow: 0 26px 52px -30px rgba(120, 66, 35, 0.32);
        display: grid;
        gap: 14px;
    }

    .reservation-card__badge {
        font-size: 0.74rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(139, 30, 41, 0.7);
    }

    .reservation-card__title {
        margin: 0;
        font-size: 1.35rem;
        color: rgba(50, 30, 17, 0.9);
    }

    .reservation-card__list {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 8px;
        color: rgba(50, 30, 17, 0.7);
    }

    .reservation-card__note {
        margin: 0;
        font-size: 0.88rem;
        color: rgba(139, 30, 41, 0.75);
        font-weight: 600;
    }

    .site-footer {
        text-align: center;
        padding: clamp(26px, 5vw, 40px);
        font-size: 0.94rem;
        color: rgba(50, 30, 17, 0.58);
    }

    @keyframes fade-in {
        from {
            opacity: 0;
            transform: translateY(6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reservation__details.is-visible,
    .contact-form__actions.is-visible {
        animation: fade-in 0.3s ease forwards;
    }

    .contact-form {
        display: grid;
        gap: clamp(22px, 6vw, 32px);
        background: rgba(255, 255, 255, 0.94);
        border-radius: var(--fh-radius-lg);
        padding: clamp(22px, 6vw, 42px);
        border: 1px solid rgba(244, 180, 26, 0.2);
        box-shadow: 0 24px 48px -30px rgba(120, 66, 35, 0.3);
    }

    .contact-form__intro {
        display: grid;
        gap: 10px;
    }

    .contact-form__eyebrow {
        margin: 0;
        font-size: 0.82rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: rgba(139, 30, 41, 0.65);
    }

    .contact-form__title {
        margin: 0;
        font-size: clamp(1.9rem, 3vw, 2.4rem);
    }

    .contact-form__lead,
    .contact-form__note {
        margin: 0;
        color: rgba(50, 30, 17, 0.68);
        max-width: 54ch;
    }

    .contact-form__form {
        display: grid;
        gap: 18px;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-form__field {
        display: grid;
        gap: 6px;
    }

    .contact-form__field--full {
        grid-column: 1 / -1;
    }

    .contact-form__label {
        font-weight: 600;
        color: rgba(50, 30, 17, 0.72);
    }

    .contact-form__input,
    .contact-form__textarea {
        border-radius: var(--fh-radius-sm);
        border: 1px solid rgba(244, 180, 26, 0.32);
        padding: 0.68rem 0.9rem;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.98);
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .contact-form__textarea {
        resize: vertical;
        min-height: 140px;
    }

    .contact-form__input:focus,
    .contact-form__textarea:focus {
        outline: none;
        border-color: rgba(244, 180, 26, 0.7);
        box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.2);
    }

    .contact-form__actions {
        grid-column: 1 / -1;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .contact-form__status {
        flex-basis: 100%;
        margin: 4px 0 0;
        font-weight: 500;
        color: rgba(50, 30, 17, 0.72);
    }

    .contact-form__status[data-variant="success"] {
        color: #15803d;
    }

    .contact-form__status[data-variant="error"] {
        color: #b91c1c;
    }

    @media (max-width: 1180px) {
        .hero {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero__actions {
            justify-content: center;
        }

        .hero__stats {
            justify-content: center;
        }

        .hero__media {
            justify-items: center;
        }

        .hero-gallery {
            max-width: 480px;
        }

        .section__shell--split {
            grid-template-columns: 1fr;
        }

        .section__shell--reverse > *:first-child,
        .section__shell--reverse > *:last-child {
            order: initial;
        }

        .reservation__panel {
            justify-content: center;
        }
    }

    @media (max-width: 1024px) {
        .site-nav__menu {
            position: absolute;
            top: 100%;
            right: clamp(16px, 6vw, 48px);
            margin-top: 12px;
            display: none;
            background: rgba(255, 255, 255, 0.94);
            padding: 18px;
            border-radius: 20px;
            border: 1px solid rgba(244, 180, 26, 0.25);
            box-shadow: 0 22px 44px -24px rgba(50, 30, 17, 0.45);
            width: min(260px, 80vw);
            z-index: 10;
            gap: 12px;
        }

        .site-nav__menu .site-nav__link {
            display: block;
        }

        .site-nav__toggle {
            display: inline-flex;
        }
    }

    @media (max-width: 900px) {
        .menu-toolbar {
            flex-direction: column;
            align-items: stretch;
        }

        .menu-toolbar__filters {
            justify-content: center;
        }

        .menu-search {
            width: 100%;
        }

        .menu-search__input {
            width: 100%;
        }
    }

    @media (max-width: 720px) {
        .site-nav {
            padding: clamp(16px, 6vw, 24px) clamp(14px, 6vw, 24px);
        }

        .section {
            padding: 0 clamp(14px, 6vw, 22px);
        }

        .hero-gallery {
            grid-template-columns: 1fr 1fr;
        }

        .menu-tabs {
            justify-content: center;
        }

        .reservation__actions,
        .contact-form__actions {
            flex-direction: column;
            align-items: stretch;
        }
    }

    @media (max-width: 540px) {
        .hero__title {
            font-size: 2rem;
        }

        .hero-gallery {
            grid-template-columns: 1fr;
        }

        .menu-grid {
            grid-template-columns: 1fr;
        }

        .hero__stat {
            flex: 1 1 100%;
        }
    }

    @page {
    size: auto;
    margin: 12mm 16mm;
}

@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    body {
        background: #ffffff !important;
        color: #111827;
        margin: 0;
        padding: 0;
    }

    body::before {
        content: none !important;
    }

    /* Hide everything by default */
    body.dashboard-body * {
        visibility: hidden;
    }

    /* Show only the ticket */
    body.dashboard-body .order-panel__card--ticket,
    body.dashboard-body .order-panel__card--ticket * {
        visibility: visible;
    }

    body.dashboard-body .sidebar,
    body.dashboard-body .sidebar-backdrop,
    body.dashboard-body .workspace__header,
    body.dashboard-body .workspace__insights,
    body.dashboard-body .workspace__switcher,
    body.dashboard-body .menu-board,
    body.dashboard-body .orders-board,
    body.dashboard-body .nav-toggle,
    body.dashboard-body .workspace__actions,
    body.dashboard-body .order-panel__view[data-order-panel-view="cart"] .order-panel__card:not(.order-panel__card--ticket),
    body.dashboard-body .order-panel__view[data-order-panel-view="history"],
    body.dashboard-body .cart-footer,
    body.dashboard-body .cart-list,
    body.dashboard-body .feedback-message,
    body.dashboard-body .workspace::before,
    body.dashboard-body .workspace__grid::before {
        display: none !important;
        visibility: hidden !important;
    }

    body.dashboard-body .dashboard {
        min-height: 0;
        display: block;
    }

    body.dashboard-body .workspace {
        margin: 0;
        width: 100%;
        padding: 0;
        display: block;
    }

    body.dashboard-body .workspace__grid {
        display: block;
        padding: 0;
    }

    body.dashboard-body .workspace__primary {
        display: none !important;
    }

    body.dashboard-body .order-panel {
        position: static;
        max-height: none;
        overflow: visible;
        padding: 0;
        margin: 0;
        width: 100%;
        display: block;
    }

    body.dashboard-body .order-panel__view {
        display: block;
        width: 100%;
    }

    body.dashboard-body .order-panel__card {
        display: none !important;
    }

    body.dashboard-body .order-panel__card--ticket {
        display: block !important;
        padding: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        max-width: 86mm;
        margin: 0 auto;
        page-break-after: avoid;
        page-break-inside: avoid;
        width: 100%;
    }

    body.dashboard-body .order-panel__header--ticket {
        display: none !important;
    }

    body.dashboard-body .ticket {
        width: 100%;
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        background: transparent;
        gap: 10px;
        margin: 0;
    }

    body.dashboard-body .ticket__table {
        margin: 0 0 16px;
    }

    body.dashboard-body .ticket__thanks {
        margin-top: 8px;
        text-align: left;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 3;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: white;
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content__inner {
    max-width: 600px;
    color: white;
}

.hero__eyebrow {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.hero__title {
    margin: 0 0 1.5rem 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__lead {
    margin: 0 0 2.5rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero__stat {
    text-align: center;
}

.hero__stat dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__stat dd {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.button--primary {
    background: var(--fh-primary);
    color: var(--fh-text);
    border-color: var(--fh-primary);
}

.button--primary:hover {
    background: var(--fh-primary-dark);
    border-color: var(--fh-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.button--ghost {
    background: transparent;
    color: white;
    border-color: white;
}

.button--ghost:hover {
    background: white;
    color: var(--fh-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.button--outline {
    background: transparent;
    color: var(--fh-secondary);
    border-color: var(--fh-secondary);
}

.button--outline:hover {
    background: var(--fh-secondary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-content__inner {
        text-align: center;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .slider-controls {
        padding: 0 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }
}

body.dashboard-body {
    background: radial-gradient(circle at 20% 10%, rgba(255, 209, 153, 0.3), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 231, 186, 0.35), transparent 60%),
        var(--fh-bg);
}

/* ============================================
   ENHANCED ORDER PAGE IMPROVEMENTS
   ============================================ */

/* Enhanced Menu Section */
.menu-board {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px -30px rgba(120, 66, 35, 0.4);
}

.menu-board__header {
    margin-bottom: 24px;
}

.menu-board__header h2 {
    background: linear-gradient(135deg, var(--fh-secondary), #a82a3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-board__filters {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(244, 180, 26, 0.15);
}

.menu-board__filters button {
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 2px solid rgba(244, 180, 26, 0.3);
    background: rgba(255, 255, 255, 0.8);
    color: rgba(72, 40, 25, 0.7);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.menu-board__filters button:hover {
    border-color: var(--fh-primary);
    background: rgba(244, 180, 26, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 180, 26, 0.2);
}

.menu-board__filters button.is-active {
    background: linear-gradient(135deg, var(--fh-primary), #ffd36c);
    border-color: var(--fh-primary);
    color: #2d170c;
    box-shadow: 0 4px 16px rgba(244, 180, 26, 0.35);
}

/* Enhanced Menu Cards */
.menu-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1.5px solid rgba(244, 180, 26, 0.2);
    box-shadow: 0 8px 24px -12px rgba(120, 66, 35, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 48px -20px rgba(120, 66, 35, 0.5);
    border-color: rgba(244, 180, 26, 0.4);
}

.menu-card__body {
    padding: 20px;
    gap: 14px;
}

.menu-card__title {
    font-size: 1.08rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.menu-card__category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--fh-primary);
    background: rgba(244, 180, 26, 0.12);
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
}

.menu-card__price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--fh-secondary);
    letter-spacing: -0.01em;
}

.menu-card__cta {
    padding: 0.55rem 1.3rem;
    background: linear-gradient(135deg, var(--fh-primary), #ffd36c);
    color: #2d170c;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(244, 180, 26, 0.3);
    border: none;
}

.menu-card__cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(244, 180, 26, 0.4);
    background: linear-gradient(135deg, #ffc107, #ffd36c);
}

.menu-card__cta:active {
    transform: translateY(0) scale(1);
}

/* Enhanced Order Panel */
.order-panel__card {
    background: rgba(255, 255, 255, 0.98);
    border: 1.5px solid rgba(244, 180, 26, 0.2);
    box-shadow: 0 12px 40px -24px rgba(120, 66, 35, 0.4);
    backdrop-filter: blur(10px);
}

.order-panel__header {
    border-bottom: 2px solid rgba(244, 180, 26, 0.2);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.order-panel__header h2 {
    color: var(--fh-secondary);
    font-size: 1.4rem;
}

.cart-count {
    background: linear-gradient(135deg, var(--fh-primary), #ffd36c);
    color: #2d170c;
    font-weight: 800;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(244, 180, 26, 0.3);
    border: none;
}

/* Enhanced Cart Items */
.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 249, 236, 0.5);
    border-radius: 14px;
    border: 1px solid rgba(244, 180, 26, 0.2);
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.cart-item__image-wrapper {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(244, 180, 26, 0.25);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(120, 66, 35, 0.15);
}

.cart-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item:hover {
    background: rgba(255, 249, 236, 0.85);
    border-color: rgba(244, 180, 26, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(120, 66, 35, 0.2);
}

.cart-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.cart-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d170c;
    margin: 0;
    line-height: 1.3;
}

.cart-item__meta {
    font-size: 0.9rem;
    color: rgba(72, 40, 25, 0.65);
    font-weight: 600;
    margin: 0;
}

.cart-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid rgba(244, 180, 26, 0.15);
}

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item__pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.cart-item__total {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--fh-secondary);
    letter-spacing: -0.01em;
}

.qty-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--fh-primary);
    background: rgba(244, 180, 26, 0.15);
    color: var(--fh-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-button:hover {
    background: var(--fh-primary);
    color: #2d170c;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(244, 180, 26, 0.3);
}

.qty-button:active {
    transform: scale(0.95);
}

.cart-item__qty {
    min-width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--fh-secondary);
}

.remove-button {
    background: transparent;
    border: none;
    color: rgba(139, 30, 41, 0.7);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 0;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-align: right;
}

.remove-button:hover {
    color: var(--fh-secondary);
    text-decoration: underline;
}

/* Enhanced Cart Footer */
.cart-footer {
    display: grid;
    gap: 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(244, 180, 26, 0.25);
    padding: 24px 28px 28px;
    margin-top: auto;
    flex-shrink: 0;
    border-radius: 0 0 var(--fh-radius-md) var(--fh-radius-md);
}

.cart-total {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.cart-total dt {
    font-weight: 700;
    color: #2d170c;
}

.cart-total dd {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--fh-secondary);
    background: linear-gradient(135deg, var(--fh-secondary), #a82a3a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#submit-order {
    padding: 0.85rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--fh-primary), #ffd36c);
    color: #2d170c;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(244, 180, 26, 0.4);
    transition: all 0.3s ease;
    margin-top: 8px;
}

#submit-order:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 180, 26, 0.5);
}

#submit-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Enhanced Customer Form */
.customer-form {
    display: grid;
    gap: 20px;
}

.customer-form__field {
    display: grid;
    gap: 8px;
}

.customer-form__label {
    font-weight: 600;
    color: #2d170c;
    font-size: 0.95rem;
}

.customer-form__field select,
.customer-form__field input {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(244, 180, 26, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.2s ease;
    color: #2d170c;
}

.customer-form__field select:focus,
.customer-form__field input:focus {
    outline: none;
    border-color: var(--fh-primary);
    box-shadow: 0 0 0 4px rgba(244, 180, 26, 0.15);
    background: rgba(255, 255, 255, 1);
}

/* Enhanced Empty States */
.cart-empty {
    text-align: center;
    padding: 56px 24px;
    color: rgba(72, 40, 25, 0.65);
    font-size: 1.05rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 249, 236, 0.6), rgba(255, 245, 220, 0.4));
    border-radius: 16px;
    border: 2px dashed rgba(244, 180, 26, 0.4);
    position: relative;
    overflow: hidden;
}

.cart-empty::before {
    content: '🛒';
    display: block;
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.4;
    filter: grayscale(0.3);
}

.cart-empty::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 180, 26, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.menu-info {
    text-align: center;
    padding: 56px 24px;
    color: rgba(72, 40, 25, 0.65);
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 249, 236, 0.6), rgba(255, 245, 220, 0.4));
    border-radius: 16px;
    border: 2px dashed rgba(244, 180, 26, 0.4);
    position: relative;
}

.menu-info::before {
    content: '🍽️';
    display: block;
    font-size: 3.5rem;
    margin-bottom: 16px;
    opacity: 0.5;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Enhanced Menu Grid */
.menu-grid {
    gap: 24px;
}

/* Better Scrollbar Styling */
.cart-list::-webkit-scrollbar,
.menu-board::-webkit-scrollbar {
    width: 8px;
}

.cart-list::-webkit-scrollbar-track,
.menu-board::-webkit-scrollbar-track {
    background: rgba(244, 180, 26, 0.1);
    border-radius: 10px;
}

.cart-list::-webkit-scrollbar-thumb,
.menu-board::-webkit-scrollbar-thumb {
    background: rgba(244, 180, 26, 0.4);
    border-radius: 10px;
}

.cart-list::-webkit-scrollbar-thumb:hover,
.menu-board::-webkit-scrollbar-thumb:hover {
    background: rgba(244, 180, 26, 0.6);
}

/* Responsive Enhancements */
@media (max-width: 1080px) {
    .menu-card {
        box-shadow: 0 6px 20px -12px rgba(120, 66, 35, 0.4);
    }
    
    .cart-item {
        padding: 16px;
    }
    
    .cart-footer {
        padding: 20px 24px 24px;
    }
}

@media (max-width: 768px) {
    .menu-card {
        max-width: 100%;
        overflow: hidden;
    }
    
    .menu-card__media {
        border-radius: 12px 12px 0 0;
        overflow: hidden;
        max-height: 200px;
        width: 100%;
    }
    
    .menu-card__media::before {
        padding-top: 50%;
    }
    
    @supports (aspect-ratio: 16 / 9) {
        .menu-card__media {
            aspect-ratio: 2 / 1;
            max-height: 200px;
        }
        
        .menu-card__media::before {
            display: none;
        }
    }
    
    .menu-card__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    
    .menu-card__body {
        padding: 14px;
        min-height: auto;
    }
    
    .menu-card__title {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .cart-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .cart-item__image-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .cart-item__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cart-item__pricing {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-item__actions {
        width: 100%;
        justify-content: center;
    }
    
    .cart-total {
        font-size: 1.2rem;
    }
    
    .cart-total dd {
        font-size: 1.3rem;
    }
}

.menu-load-more {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 24px auto 0;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--fh-primary), #ffd971);
    color: #301507;
    border: none;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px -12px rgba(120, 66, 35, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -14px rgba(120, 66, 35, 0.65);
    background: linear-gradient(135deg, #ffd971, var(--fh-primary));
}

.menu-load-more:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .menu-load-more {
        margin: 20px auto 0;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 540px) {
    .menu-card {
        border-radius: 12px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .menu-card__media {
        border-radius: 10px 10px 0 0;
        overflow: hidden;
        max-height: 180px;
        width: 100%;
    }
    
    .menu-card__media::before {
        padding-top: 45%;
    }
    
    @supports (aspect-ratio: 16 / 9) {
        .menu-card__media {
            aspect-ratio: 2.2 / 1;
            max-height: 180px;
        }
        
        .menu-card__media::before {
            display: none;
        }
    }
    
    .menu-card__image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }
    
    .menu-card__body {
        padding: 12px;
    }
    
    .menu-card__title {
        font-size: 0.9rem;
    }
    
    .menu-card__desc {
        font-size: 0.8rem;
    }
}