/* ============================================
   MALA KOLUBARA - Digital Restaurant Menu
   Dark Theme | Gold Accents | Glassmorphism
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: rgba(18, 18, 18, 0.75);
    --bg-card-hover: rgba(30, 30, 30, 0.85);
    --gold: #c9a96e;
    --gold-light: #e0c992;
    --cream: #f5e6c8;
    --white: #ffffff;
    --text-secondary: #b0a89a;
    --text-muted: #7a7268;
    --overlay: rgba(0, 0, 0, 0.65);
    --glass-border: rgba(201, 169, 110, 0.15);
    --glass-border-hover: rgba(201, 169, 110, 0.35);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html.service-modal-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

body.service-modal-open {
    overflow: hidden;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overscroll-behavior: none;
}

/* ---------- Background ---------- */
.bg-wrapper {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.bg-image {
    position: absolute;
    inset: 0;
    background: url('https://mgx-backend-cdn.metadl.com/generate/images/1034457/2026-03-19/028c1558-9982-4aa7-b5c4-75b409c55647.png') center/cover no-repeat;
    filter: blur(6px) saturate(0.7);
    transform: scale(1.05);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-icon {
    color: var(--gold);
    font-size: 20px;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.5px;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    object-fit: contain;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-nav-btn {
    display: none;
}

.service-sticky-cta {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 240;
    width: min(calc(100vw - 20px), 440px);
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(201, 169, 110, 0.28);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(35, 28, 18, 0.96));
    color: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: var(--transition);
}

.service-sticky-cta:hover,
.service-sticky-cta:focus-visible {
    border-color: rgba(201, 169, 110, 0.42);
    transform: translateX(-50%) translateY(-2px);
}

.service-sticky-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.22), rgba(201, 169, 110, 0.08));
    color: var(--gold-light);
    font-size: 18px;
}

.service-sticky-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
    text-align: left;
}

.service-sticky-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
}

.service-sticky-hint {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.2;
}

.service-sticky-arrow {
    margin-left: auto;
    color: var(--gold-light);
    font-size: 22px;
    line-height: 1;
}

body.service-modal-open .service-sticky-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
}

/* ---------- Language Switcher ---------- */
.lang-switcher {
    position: relative;
}

.lang-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(201, 169, 110, 0.3);
    touch-action: manipulation;
}

.lang-btn:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    transform: scale(1.05);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    min-width: 150px;
    box-shadow: var(--shadow);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(201, 169, 110, 0.3);
    touch-action: manipulation;
}

.lang-option:hover {
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold-light);
}

.lang-option .flag-icon {
    font-size: 20px;
}

/* ---------- Main Content ---------- */
.main-content {
    position: relative;
    z-index: 1;
    padding: 100px 16px 156px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.menu-container {
    width: 100%;
    max-width: 640px;
    background: var(--bg-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Menu Header ---------- */
.menu-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--glass-border);
}

.menu-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.menu-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-logo-shell {
    width: 170px;
    height: 170px;
    margin: 14px auto 18px;
    border-radius: 999px;
    background: #fffdf7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.hero-ring-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.hero-ring-text text {
    fill: #6d5233;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-ring-text textPath {
    text-anchor: middle;
}

.hero-logo {
    display: block;
    width: 104px;
    height: auto;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
}

.menu-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: var(--text-secondary);
}

.guest-context {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.guest-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 110, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--cream);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.guest-chip-muted {
    color: var(--text-secondary);
}

/* ---------- Tab Bar ---------- */
.tab-bar {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    -webkit-tap-highlight-color: rgba(201, 169, 110, 0.3);
    touch-action: manipulation;
}

.tab-btn:hover {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
    color: var(--gold-light);
    background: rgba(201, 169, 110, 0.12);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.1);
}

.tab-icon {
    font-size: 16px;
}

/* ---------- Tab Content ---------- */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Section Image ---------- */
.section-image {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.9);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.section-image img.img-fading {
    opacity: 0;
}

.section-image:hover img {
    filter: brightness(0.9) saturate(1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.image-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Menu Category ---------- */
.menu-category {
    margin-bottom: 28px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

/* ---------- Menu Items ---------- */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Button reset + menu item styling */
button.menu-item {
    /* Reset all default button styles */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    outline: none;
    font: inherit;
    text-align: left;
    text-decoration: none;
    /* Menu item styles */
    display: flex;
    align-items: baseline;
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: rgba(201, 169, 110, 0.3);
    touch-action: manipulation;
}

button.menu-item:hover,
button.menu-item:focus-visible {
    background: rgba(201, 169, 110, 0.08);
}

button.menu-item:active {
    background: rgba(201, 169, 110, 0.15);
}

button.menu-item.item-active {
    background: rgba(201, 169, 110, 0.15);
    border-left: 3px solid var(--gold);
    padding-left: 9px;
}

button.menu-item.item-active .item-name {
    color: var(--gold-light);
    font-weight: 500;
}

.item-name {
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
    margin: 0 10px;
    min-width: 20px;
    position: relative;
    top: -4px;
}

.item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-light);
    white-space: nowrap;
    flex-shrink: 0;
}

.item-price::after {
    content: ' din';
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 2px;
}

/* Special items (Akcija) */
button.menu-item.special-item {
    background: rgba(201, 169, 110, 0.06);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 10px;
    margin-bottom: 4px;
}

button.menu-item.special-item:hover,
button.menu-item.special-item:active {
    background: rgba(201, 169, 110, 0.12);
    border-color: rgba(201, 169, 110, 0.25);
}

button.menu-item.special-item .item-price {
    color: var(--gold);
    font-size: 16px;
}

/* ---------- Footer ---------- */
.menu-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.menu-footer p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
}

.service-overlay {
    position: fixed;
    inset: 0;
    z-index: 150;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overscroll-behavior: none;
    touch-action: none;
}

.service-overlay[hidden],
.service-modal[hidden],
.service-toast[hidden] {
    display: none !important;
}

.service-modal {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 160;
    width: min(92vw, 560px);
    max-height: min(82vh, 760px);
    max-height: min(82dvh, 760px);
    overflow: hidden;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: rgba(14, 14, 14, 0.92);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    touch-action: none;
    display: flex;
    flex-direction: column;
}

.service-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.service-modal-scroll {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
    touch-action: pan-y;
}

.service-kicker {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.service-modal-title {
    font-family: var(--font-heading);
    color: var(--cream);
    font-size: 28px;
    line-height: 1.2;
}

.service-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.service-close-btn:hover,
.service-close-btn:focus-visible {
    border-color: rgba(201, 169, 110, 0.36);
    color: var(--gold-light);
}

.service-help {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.service-inline-note {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 183, 71, 0.08);
    color: #ffd48c;
    border: 1px solid rgba(255, 183, 71, 0.18);
    font-size: 14px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.service-option {
    border: 1px solid rgba(201, 169, 110, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font: inherit;
    text-align: left;
    padding: 16px 14px;
    min-height: 90px;
    cursor: pointer;
    transition: var(--transition);
    display: grid;
    gap: 8px;
}

.service-option:hover,
.service-option:focus-visible {
    border-color: rgba(201, 169, 110, 0.38);
    background: rgba(201, 169, 110, 0.08);
    transform: translateY(-1px);
}

.service-option.is-selected {
    border-color: rgba(201, 169, 110, 0.5);
    background: rgba(201, 169, 110, 0.14);
}

.service-option-icon {
    font-size: 22px;
}

.service-option-label {
    font-weight: 600;
    line-height: 1.35;
}

.service-note-wrap {
    display: grid;
    gap: 8px;
}

.service-payment-wrap {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.service-payment-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.service-payment-option {
    border: 1px solid rgba(201, 169, 110, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 12px 10px;
    cursor: pointer;
    transition: var(--transition);
}

.service-payment-option:hover,
.service-payment-option:focus-visible {
    border-color: rgba(201, 169, 110, 0.38);
    background: rgba(201, 169, 110, 0.08);
    transform: translateY(-1px);
}

.service-payment-option.is-selected {
    border-color: rgba(201, 169, 110, 0.5);
    background: rgba(201, 169, 110, 0.14);
    color: var(--gold-light);
}

.service-note-label {
    color: var(--cream);
    font-size: 14px;
}

.service-note-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font: inherit;
    resize: vertical;
    min-height: 92px;
}

.service-note-input:focus {
    outline: none;
    border-color: rgba(201, 169, 110, 0.36);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.service-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.service-primary-btn,
.service-secondary-btn {
    border-radius: 14px;
    padding: 13px 16px;
    font: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.service-primary-btn {
    border: none;
    background: linear-gradient(135deg, var(--gold), #b88638);
    color: #22150b;
    font-weight: 700;
}

.service-secondary-btn {
    border: 1px solid rgba(201, 169, 110, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.service-primary-btn:hover,
.service-primary-btn:focus-visible,
.service-secondary-btn:hover,
.service-secondary-btn:focus-visible {
    transform: translateY(-1px);
}

.service-primary-btn:disabled,
.service-secondary-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

.service-status-text {
    min-height: 24px;
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-status-text.is-error {
    color: #ff9f9f;
}

.service-status-text.is-success {
    color: #9fe1a8;
}

.service-toast {
    position: fixed;
    left: 50%;
    bottom: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 280;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.92);
    color: var(--white);
    border: 1px solid rgba(201, 169, 110, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.service-toast.is-error {
    border-color: rgba(245, 107, 107, 0.32);
}

@media (max-width: 768px) {
    .service-modal {
        top: 8px;
        top: max(8px, env(safe-area-inset-top));
        left: 10px;
        right: 10px;
        bottom: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        transform: none;
        width: auto;
        max-height: none;
        padding: 18px;
        border-radius: 18px;
    }

    .service-modal-head {
        position: sticky;
        top: -18px;
        margin: -18px -18px 12px;
        padding: 18px 18px 10px;
        background: linear-gradient(180deg, rgba(14, 14, 14, 0.98) 78%, rgba(14, 14, 14, 0));
        z-index: 2;
    }

    .service-help {
        font-size: 14px;
        line-height: 1.45;
    }

    .service-inline-note {
        font-size: 13px;
        padding: 11px 12px;
    }

    .service-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-option {
        grid-template-columns: 36px 1fr;
        align-items: center;
        gap: 12px;
        min-height: 74px;
        padding: 15px 14px;
    }

    .service-option-icon {
        font-size: 24px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-option-label {
        font-size: 15px;
        line-height: 1.3;
    }

    .service-note-input {
        min-height: 84px;
        font-size: 16px;
    }

    .service-modal-actions {
        position: sticky;
        bottom: -18px;
        margin: 16px -18px -18px;
        padding: 12px 18px 12px;
        padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
        background: linear-gradient(180deg, rgba(14, 14, 14, 0), rgba(14, 14, 14, 0.98) 28%);
        flex-direction: column-reverse;
    }

    .service-primary-btn,
    .service-secondary-btn {
        width: 100%;
        min-height: 50px;
    }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 110, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 169, 110, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .navbar {
        padding: 12px 16px;
    }

    .brand-text {
        font-size: 18px;
    }

    .main-content {
        padding: 80px 10px 132px;
    }

    .menu-container {
        padding: 24px 16px;
        border-radius: 14px;
    }

    .menu-title {
        font-size: 30px;
    }

    .tab-btn {
        padding: 12px 6px;
        font-size: 13px;
    }

    .tab-icon {
        font-size: 14px;
    }

    .category-title {
        font-size: 18px;
    }

    .item-name {
        font-size: 13px;
    }

    .item-price {
        font-size: 14px;
    }

    .section-image {
        height: 140px;
    }

    .lang-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .service-nav-btn {
        width: 40px;
        height: 40px;
    }

    .service-modal {
        top: 8px;
        top: max(8px, env(safe-area-inset-top));
        left: 8px;
        right: 8px;
        bottom: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        max-height: none;
        padding: 16px;
    }

    .service-modal-title {
        font-size: 22px;
    }

    .service-modal-head {
        top: -16px;
        margin: -16px -16px 12px;
        padding: 16px 16px 8px;
    }

    .service-modal-actions {
        bottom: -16px;
        margin: 14px -16px -16px;
        padding: 10px 16px 10px;
        padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    }

    .service-primary-btn,
    .service-secondary-btn {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .menu-container {
        padding: 40px 36px;
    }

    .menu-title {
        font-size: 44px;
    }

    .section-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .service-modal {
        top: 10px;
        top: max(10px, env(safe-area-inset-top));
        bottom: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: min(calc(100vw - 16px), 380px);
        max-height: none;
        padding: 12px 10px 10px 12px;
        border-radius: 16px;
        overflow: hidden;
    }

    .service-modal-head {
        position: sticky;
        top: 0;
        margin: 0 0 6px;
        padding: 0;
        background: rgba(14, 14, 14, 0.96);
        z-index: 2;
    }

    .service-kicker {
        display: none;
    }

    .service-modal-title {
        font-size: 18px;
        line-height: 1.15;
    }

    .service-modal-scroll {
        padding-right: 2px;
    }

    .service-help {
        margin-bottom: 7px;
        font-size: 11px;
        line-height: 1.2;
    }

    .service-inline-note {
        margin-bottom: 7px;
        padding: 7px 9px;
        font-size: 11px;
        line-height: 1.2;
    }

    .service-options {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 7px;
    }

    .service-option {
        grid-template-columns: 28px 1fr;
        align-items: center;
        gap: 8px;
        min-height: 50px;
        padding: 9px 10px;
    }

    .service-option-icon {
        font-size: 16px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-option-label {
        font-size: 12px;
        line-height: 1.2;
    }

    .service-note-wrap {
        gap: 5px;
    }

    .service-note-label {
        font-size: 11px;
    }

    .service-note-input {
        min-height: 54px;
        padding: 9px 11px;
        font-size: 16px;
    }

    .service-modal-actions {
        position: static;
        margin: 8px 0 0;
        padding: 0;
        background: none;
        flex-direction: column-reverse;
        gap: 6px;
    }

    .service-primary-btn,
    .service-secondary-btn {
        width: 100%;
        min-height: 40px;
        padding: 9px 12px;
    }

    .service-status-text {
        min-height: 18px;
        margin-top: 6px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .service-sticky-cta {
        width: calc(100vw - 14px);
        bottom: 8px;
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        padding: 10px 11px;
        gap: 10px;
        border-radius: 16px;
    }

    .service-sticky-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
        border-radius: 12px;
    }

    .service-sticky-title {
        font-size: 14px;
    }

    .service-sticky-hint {
        font-size: 11px;
    }

    .service-modal {
        width: calc(100vw - 14px);
        top: 7px;
        top: max(7px, env(safe-area-inset-top));
        bottom: 7px;
        bottom: max(7px, env(safe-area-inset-bottom));
        padding: 11px;
    }

    .service-modal-title {
        font-size: 17px;
    }

    .service-option {
        min-height: 46px;
        padding: 8px 9px;
    }

    .service-option-label {
        font-size: 11px;
    }

    .service-inline-note {
        font-size: 10px;
        padding: 6px 8px;
    }
}

/* ---------- Final Mobile Service Modal Override ---------- */
@media (max-width: 820px) {
    .service-modal {
        top: calc(env(safe-area-inset-top, 0px) + 10px) !important;
        right: 8px !important;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 86px) !important;
        left: 8px !important;
        width: auto !important;
        max-width: none !important;
        max-height: none !important;
        min-height: 0 !important;
        transform: none !important;
        padding: 14px !important;
        border-radius: 18px !important;
        overflow: hidden !important;
        display: grid !important;
        grid-template-rows: auto minmax(0, 1fr) !important;
        align-items: stretch !important;
    }

    .service-modal-head {
        position: relative !important;
        top: auto !important;
        margin: 0 0 10px !important;
        padding: 0 !important;
        background: none !important;
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: start !important;
        gap: 12px !important;
        min-height: 0 !important;
    }

    .service-kicker {
        display: block !important;
        margin-bottom: 4px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
    }

    .service-modal-title {
        font-size: 20px !important;
        line-height: 1.15 !important;
    }

    .service-close-btn {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
    }

    .service-modal-scroll {
        min-height: 0 !important;
        overflow-y: auto !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch !important;
        padding-right: 0 !important;
        padding-bottom: 2px !important;
    }

    .service-help {
        margin-bottom: 8px !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
    }

    .service-inline-note {
        margin-bottom: 8px !important;
        padding: 8px 10px !important;
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    .service-options {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-bottom: 8px !important;
    }

    .service-option {
        display: grid !important;
        grid-template-columns: 28px 1fr !important;
        align-items: center !important;
        gap: 10px !important;
        min-height: 62px !important;
        padding: 12px !important;
    }

    .service-option-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 19px !important;
        line-height: 1 !important;
    }

    .service-option-label {
        font-size: 13px !important;
        line-height: 1.2 !important;
    }

    .service-note-wrap {
        gap: 6px !important;
    }

    .service-note-label {
        font-size: 12px !important;
    }

    .service-note-input {
        min-height: 72px !important;
        max-height: 112px !important;
        padding: 12px !important;
        font-size: 16px !important;
        line-height: 1.35 !important;
        resize: none !important;
    }

    .service-modal-actions {
        position: static !important;
        margin: 12px 0 0 !important;
        padding: 0 !important;
        background: transparent !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .service-primary-btn,
    .service-secondary-btn {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 48px !important;
        padding: 12px 14px !important;
        justify-content: center !important;
    }

    .service-status-text {
        min-height: 16px !important;
        margin-top: 6px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 430px) {
    .service-modal {
        top: calc(env(safe-area-inset-top, 0px) + 8px) !important;
        right: 6px !important;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 82px) !important;
        left: 6px !important;
        padding: 12px !important;
        border-radius: 16px !important;
    }

    .service-modal-head {
        margin-bottom: 8px !important;
        gap: 10px !important;
    }

    .service-modal-title {
        font-size: 18px !important;
    }

    .service-help {
        margin-bottom: 7px !important;
        font-size: 11px !important;
    }

    .service-inline-note {
        margin-bottom: 7px !important;
        padding: 7px 9px !important;
        font-size: 10px !important;
    }

    .service-options {
        gap: 7px !important;
        margin-bottom: 7px !important;
    }

    .service-option {
        min-height: 56px !important;
        padding: 10px !important;
    }

    .service-option-icon {
        font-size: 17px !important;
    }

    .service-option-label {
        font-size: 12px !important;
    }

    .service-note-label {
        font-size: 11px !important;
    }

    .service-note-input {
        min-height: 64px !important;
        max-height: 96px !important;
        padding: 10px !important;
    }

    .service-modal-actions {
        margin-top: 8px !important;
        gap: 7px !important;
    }

    .service-primary-btn,
    .service-secondary-btn {
        min-height: 46px !important;
        padding: 11px 13px !important;
    }
}

.guest-order-tip {
    margin-top: 14px;
    color: var(--text-secondary);
    font-size: 13px;
}

.order-cart-cta {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 92px;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 238;
    width: min(calc(100vw - 20px), 440px);
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(16, 16, 16, 0.95), rgba(32, 24, 18, 0.96));
    color: var(--white);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    cursor: pointer;
    transition: var(--transition);
}

.order-cart-cta:hover,
.order-cart-cta:focus-visible {
    border-color: rgba(201, 169, 110, 0.36);
    transform: translateX(-50%) translateY(-2px);
}

.order-cart-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.14);
    color: var(--gold-light);
    font-size: 18px;
}

.order-cart-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.order-cart-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
}

.order-cart-hint {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.2;
}

.order-cart-meta {
    margin-left: auto;
    display: grid;
    justify-items: end;
    gap: 2px;
    text-align: right;
}

.order-cart-meta strong {
    font-size: 18px;
    color: var(--gold-light);
    line-height: 1;
}

.order-cart-meta span {
    font-size: 12px;
    color: var(--cream);
}

.order-overlay {
    position: fixed;
    inset: 0;
    z-index: 175;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.order-overlay[hidden],
.order-modal[hidden] {
    display: none !important;
}

.order-modal {
    position: fixed;
    left: 50%;
    bottom: 96px;
    transform: translateX(-50%);
    z-index: 180;
    width: min(92vw, 560px);
    max-height: min(78vh, 760px);
    max-height: min(78dvh, 760px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 12px;
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: rgba(14, 14, 14, 0.95);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.order-modal-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.order-modal-kicker {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.order-modal-title {
    font-family: var(--font-heading);
    color: var(--cream);
    font-size: 28px;
    line-height: 1.18;
}

.order-modal-subtitle {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.order-close-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    font: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.order-close-btn:hover,
.order-close-btn:focus-visible {
    border-color: rgba(201, 169, 110, 0.36);
    color: var(--gold-light);
}

.order-modal-scroll {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
}

.order-item-pricing,
.order-cart-total {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.08);
}

.order-pricing-row,
.order-cart-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.order-pricing-row span,
.order-cart-total span {
    color: var(--text-secondary);
    font-size: 14px;
}

.order-pricing-row strong,
.order-cart-total strong {
    color: var(--cream);
    font-size: 18px;
}

.order-qty-block,
.order-note-wrap {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.order-field-label {
    color: var(--cream);
    font-size: 14px;
}

.order-qty-controls {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 46px;
    gap: 10px;
}

.order-qty-btn,
.order-qty-input,
.order-note-input,
.order-cart-action,
.order-primary-btn,
.order-secondary-btn {
    font: inherit;
}

.order-qty-btn {
    border: 1px solid rgba(201, 169, 110, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.order-qty-btn:hover,
.order-qty-btn:focus-visible,
.order-cart-action:hover,
.order-cart-action:focus-visible,
.order-primary-btn:hover,
.order-primary-btn:focus-visible,
.order-secondary-btn:hover,
.order-secondary-btn:focus-visible {
    border-color: rgba(201, 169, 110, 0.36);
    transform: translateY(-1px);
}

.order-qty-input {
    width: 100%;
    border: 1px solid rgba(201, 169, 110, 0.16);
    border-radius: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    text-align: center;
}

.order-note-input {
    width: 100%;
    min-height: 92px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(201, 169, 110, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    resize: vertical;
}

.order-note-input:focus,
.order-qty-input:focus {
    outline: none;
    border-color: rgba(201, 169, 110, 0.36);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.order-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.order-primary-btn,
.order-secondary-btn {
    border-radius: 14px;
    padding: 13px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.order-primary-btn {
    flex: 1 1 auto;
    border: none;
    background: linear-gradient(135deg, var(--gold), #b88638);
    color: #22150b;
    font-weight: 700;
}

.order-secondary-btn {
    flex: 0 0 auto;
    border: 1px solid rgba(201, 169, 110, 0.16);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.order-cart-empty {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.order-cart-list {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.order-cart-item {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.order-cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.order-cart-item-name {
    color: var(--cream);
    font-size: 18px;
    line-height: 1.25;
}

.order-cart-item-line-total {
    color: var(--gold-light);
    font-size: 16px;
    white-space: nowrap;
}

.order-cart-item-meta,
.order-cart-item-note {
    color: var(--text-secondary);
    font-size: 13px;
}

.order-cart-item-note strong {
    color: var(--cream);
}

.order-cart-item-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.order-cart-action {
    border: 1px solid rgba(201, 169, 110, 0.16);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.order-cart-action.is-danger {
    border-color: rgba(245, 107, 107, 0.22);
    color: #ffb1b1;
}

.order-status-text {
    min-height: 22px;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 13px;
}

.order-status-text.is-error {
    color: #ff9f9f;
}

.order-status-text.is-success {
    color: #9fe1a8;
}

@media (max-width: 820px) {
    .guest-order-tip {
        font-size: 12px;
    }

    .order-modal {
        top: calc(env(safe-area-inset-top, 0px) + 8px);
        right: 8px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 84px);
        left: 8px;
        width: auto;
        max-width: none;
        max-height: none;
        transform: none;
        padding: 14px;
        border-radius: 18px;
    }

    .order-modal-title {
        font-size: 22px;
    }

    .order-note-input {
        min-height: 76px;
        resize: none;
    }

    .order-modal-actions {
        flex-direction: column-reverse;
    }

    .order-primary-btn,
    .order-secondary-btn {
        width: 100%;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .guest-order-tip {
        margin-top: 12px;
        font-size: 11px;
    }

    .order-cart-cta {
        width: calc(100vw - 20px);
        bottom: calc(88px + env(safe-area-inset-bottom, 0px));
        padding: 11px 12px;
        gap: 10px;
    }

    .order-cart-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        font-size: 17px;
    }

    .order-cart-title {
        font-size: 14px;
    }

    .order-cart-hint,
    .order-cart-meta span {
        font-size: 11px;
    }

    .order-modal {
        right: 6px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 78px);
        left: 6px;
        padding: 12px;
        border-radius: 16px;
    }

    .order-modal-title {
        font-size: 18px;
    }

    .order-item-pricing,
    .order-cart-total,
    .order-cart-item {
        padding: 12px;
    }

    .order-pricing-row span,
    .order-cart-total span,
    .order-field-label,
    .order-cart-item-meta,
    .order-cart-item-note {
        font-size: 12px;
    }

    .order-cart-item-name {
        font-size: 16px;
    }

    .order-status-text {
        min-height: 18px;
        margin-top: 8px;
        font-size: 12px;
    }
}

/* ---------- Menu UX Refresh ---------- */
.main-content {
    padding-top: 92px;
}

.menu-container {
    max-width: 720px;
    background:
        linear-gradient(180deg, rgba(24, 21, 18, 0.92), rgba(14, 14, 14, 0.9)),
        rgba(18, 18, 18, 0.78);
    padding: 26px 22px 30px;
}

.menu-header {
    margin-bottom: 20px;
    padding-bottom: 18px;
}

.menu-subtitle {
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.22em;
}

.menu-title {
    font-size: 34px;
    margin-bottom: 4px;
}

.menu-tagline {
    font-size: 14px;
}

.guest-context {
    margin-top: 14px;
}

.guest-order-tip {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
    border: 1px solid rgba(201, 169, 110, 0.16);
    color: var(--cream);
    font-size: 13px;
    line-height: 1.45;
}

.tab-bar {
    position: sticky;
    top: 78px;
    z-index: 12;
    margin-bottom: 14px;
    padding: 6px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    background: rgba(24, 21, 18, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tab-btn {
    min-height: 50px;
    gap: 8px;
    border-radius: 12px;
    font-weight: 600;
}

.tab-btn.active {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(201, 169, 110, 0.08));
}

.category-jump-shell {
    position: sticky;
    top: 142px;
    z-index: 11;
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    background: rgba(20, 18, 16, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.category-jump-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.category-jump-title {
    color: var(--cream);
    font-size: 13px;
    font-weight: 600;
}

.category-jump-top {
    border: 1px solid rgba(201, 169, 110, 0.16);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-light);
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.category-jump-top:hover,
.category-jump-top:focus-visible,
.category-jump-pill:hover,
.category-jump-pill:focus-visible {
    border-color: rgba(201, 169, 110, 0.36);
    color: var(--cream);
    background: rgba(201, 169, 110, 0.1);
}

.category-jump-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-jump-pill {
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.category-jump-pill.is-active {
    border-color: rgba(201, 169, 110, 0.34);
    color: var(--cream);
    background: rgba(201, 169, 110, 0.14);
}

.tab-content {
    position: relative;
}

.section-image {
    height: 210px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.menu-category {
    margin-bottom: 24px;
    scroll-margin-top: 200px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    font-size: 19px;
    letter-spacing: 0.01em;
}

.menu-items {
    gap: 10px;
}

button.menu-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    background: rgba(255, 255, 255, 0.025);
}

button.menu-item:hover,
button.menu-item:focus-visible {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.18);
    transform: translateY(-1px);
}

button.menu-item.item-active {
    padding-left: 16px;
    border-left: 1px solid rgba(201, 169, 110, 0.3);
    border-color: rgba(201, 169, 110, 0.3);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.05));
}

.item-name {
    flex: 1 1 60%;
    min-width: 180px;
    white-space: normal;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.item-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.14);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.item-dots {
    display: none;
}

.item-price {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    font-size: 15px;
}

.item-price::after {
    margin-left: 4px;
}

button.menu-item.special-item {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
    border-color: rgba(201, 169, 110, 0.18);
}

@media (max-width: 820px) {
    .tab-bar {
        top: 72px;
    }

    .category-jump-shell {
        top: 132px;
    }

    .menu-category {
        scroll-margin-top: 188px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding-top: 80px;
    }

    .menu-container {
        padding: 20px 14px 26px;
    }

    .menu-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }

    .menu-title {
        font-size: 28px;
    }

    .guest-context {
        gap: 8px;
        margin-top: 12px;
    }

    .guest-chip {
        padding: 7px 11px;
        font-size: 11px;
    }

    .guest-order-tip {
        margin-top: 12px;
        padding: 10px 12px;
        border-radius: 14px;
        font-size: 12px;
    }

    .tab-bar {
        top: 64px;
        margin-bottom: 12px;
    }

    .tab-btn {
        min-height: 46px;
        padding: 10px 8px;
        font-size: 13px;
    }

    .category-jump-shell {
        top: 120px;
        padding: 10px 12px;
        margin-bottom: 14px;
        border-radius: 16px;
    }

    .category-jump-head {
        margin-bottom: 8px;
    }

    .category-jump-title {
        font-size: 12px;
    }

    .category-jump-top,
    .category-jump-pill {
        font-size: 11px;
        padding: 7px 10px;
    }

    .section-image {
        height: 160px;
        margin-bottom: 16px;
    }

    .menu-category {
        margin-bottom: 20px;
        scroll-margin-top: 176px;
    }

    .category-title {
        margin-bottom: 12px;
        padding-bottom: 8px;
        font-size: 17px;
    }

    .menu-items {
        gap: 8px;
    }

    button.menu-item {
        padding: 13px 12px;
        border-radius: 16px;
        gap: 7px 8px;
    }

    .item-name {
        min-width: 0;
        font-size: 14px;
    }

    .item-badge {
        padding: 5px 8px;
        font-size: 10px;
    }

    .item-price {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* ---------- Guided UX Layer ---------- */
.guest-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.guest-flow-card {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.guest-flow-step {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.14);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
}

.guest-flow-title {
    color: var(--cream);
    font-size: 14px;
    line-height: 1.2;
}

.guest-flow-text {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.45;
}

.order-item-hero {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 110, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.order-item-thumb {
    width: 108px;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.12);
    background: rgba(255, 255, 255, 0.02);
}

.order-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-copy {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.order-item-helper {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.45;
}

.order-item-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.order-item-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.order-item-chip-muted {
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    font-weight: 600;
}

@media (max-width: 820px) {
    .guest-flow-grid {
        grid-template-columns: 1fr;
    }

    .category-jump-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .category-jump-pills::-webkit-scrollbar {
        display: none;
    }

    .category-jump-pill {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    .order-item-hero {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
        border-radius: 14px;
    }

    .order-item-thumb {
        width: 88px;
        height: 84px;
    }
}

@media (max-width: 480px) {
    .guest-flow-grid {
        gap: 8px;
    }

    .guest-flow-card {
        padding: 12px;
        border-radius: 14px;
        gap: 7px;
    }

    .guest-flow-title {
        font-size: 13px;
    }

    .guest-flow-text {
        font-size: 11px;
    }

    .order-item-hero {
        grid-template-columns: 1fr;
    }

    .order-item-thumb {
        width: 100%;
        height: 140px;
    }

    .order-item-helper {
        font-size: 12px;
    }

.order-item-chip {
        font-size: 11px;
        padding: 6px 9px;
    }
}

/* ---------- Premium Menu Polish ---------- */
.ui-icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.ui-icon {
    width: 1em;
    height: 1em;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.bg-overlay {
    background:
        radial-gradient(circle at top, rgba(201, 169, 110, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(7, 7, 7, 0.68) 0%, rgba(12, 10, 8, 0.78) 45%, rgba(7, 7, 7, 0.9) 100%);
}

.navbar {
    padding: 18px 28px;
    background: rgba(9, 9, 9, 0.72);
    border-bottom: 1px solid rgba(201, 169, 110, 0.14);
}

.navbar-brand {
    gap: 14px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.22), rgba(201, 169, 110, 0.05));
    color: var(--gold-light);
    box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.12);
}

.brand-icon .ui-icon {
    font-size: 18px;
}

.brand-text {
    font-size: 24px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.menu-container {
    max-width: 760px;
    padding: 30px 26px 34px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.menu-header {
    margin-bottom: 26px;
    padding: 12px 10px 24px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.menu-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.16);
}

.menu-title {
    font-size: clamp(38px, 6vw, 52px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-tagline {
    max-width: 460px;
    margin: 0 auto;
    font-size: 16px;
    color: #d8cfbf;
}

.guest-chip,
.guest-order-tip,
.guest-flow-card,
.category-jump-shell,
.tab-bar,
.section-image,
button.menu-item,
.menu-footer,
.service-sticky-cta,
.order-cart-cta {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.guest-chip {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.16), rgba(255, 255, 255, 0.04));
    border-color: rgba(201, 169, 110, 0.22);
}

.guest-order-tip {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 20px;
}

.guest-flow-grid {
    margin-top: 22px;
    gap: 12px;
}

.guest-flow-card {
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(201, 169, 110, 0.05));
}

.tab-bar {
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
    background: rgba(17, 15, 13, 0.9);
}

.tab-btn {
    min-height: 58px;
    gap: 10px;
    border-radius: 16px;
    color: #c2b9aa;
}

.tab-btn.active {
    color: #fff5df;
    border: 1px solid rgba(201, 169, 110, 0.18);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.24), rgba(201, 169, 110, 0.08));
}

.tab-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-light);
    flex-shrink: 0;
}

.tab-icon .ui-icon {
    font-size: 17px;
}

.category-jump-shell {
    padding: 14px 16px;
    border-radius: 22px;
}

.section-image {
    height: 240px;
    border-radius: 24px;
}

.section-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.38));
    pointer-events: none;
}

.category-title {
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    font-size: 22px;
    color: #f2dfbb;
    letter-spacing: 0.03em;
}

.category-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(201, 169, 110, 0.12);
    color: var(--gold-light);
    flex-shrink: 0;
}

.category-icon .ui-icon {
    font-size: 20px;
}

.menu-items {
    gap: 12px;
}

button.menu-item {
    position: relative;
    align-items: center;
    padding: 17px 18px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(201, 169, 110, 0.025)),
        rgba(255, 255, 255, 0.015);
    overflow: hidden;
}

button.menu-item::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(201, 169, 110, 0), rgba(201, 169, 110, 0.75), rgba(201, 169, 110, 0));
    opacity: 0;
    transition: opacity var(--transition);
}

button.menu-item:hover::before,
button.menu-item:focus-visible::before,
button.menu-item.item-active::before {
    opacity: 1;
}

button.menu-item:hover,
button.menu-item:focus-visible {
    transform: translateY(-2px);
}

button.menu-item.item-active {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(255, 255, 255, 0.03));
}

.item-name {
    font-size: 15px;
    line-height: 1.4;
}

.item-dots {
    border-bottom-color: rgba(201, 169, 110, 0.18);
}

.item-price {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.14);
}

.item-price::after {
    margin-left: 4px;
}

button.menu-item.special-item {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(120, 84, 36, 0.08));
    border-color: rgba(201, 169, 110, 0.2);
}

.menu-footer {
    margin-top: 40px;
    padding: 24px 18px 10px;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-brand-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
}

.service-sticky-icon,
.order-cart-icon {
    color: var(--gold-light);
}

.service-sticky-icon .ui-icon,
.order-cart-icon .ui-icon {
    font-size: 18px;
}

@media (max-width: 640px) {
    .navbar {
        padding: 14px 16px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .brand-text {
        font-size: 19px;
        letter-spacing: 0.04em;
    }

    .menu-container {
        padding: 22px 16px 28px;
        border-radius: 24px;
    }

    .menu-title {
        font-size: 34px;
    }

    .tab-btn {
        min-height: 52px;
        padding: 12px 10px;
    }

    .tab-icon {
        width: 30px;
        height: 30px;
    }

    .category-title {
        font-size: 19px;
    }

    .category-icon {
        width: 38px;
        height: 38px;
    }

    .section-image {
        height: 210px;
    }

    button.menu-item {
        padding: 15px 14px;
        border-radius: 18px;
    }
}

/* ============================================
   LAZABAR LIGHT REBRAND OVERRIDES
   ============================================ */

:root {
    --bg-dark: #f6efe5;
    --bg-card: rgba(255, 251, 246, 0.88);
    --bg-card-hover: rgba(255, 255, 255, 0.98);
    --gold: #b77933;
    --gold-light: #d39a55;
    --cream: #37251a;
    --white: #ffffff;
    --text-secondary: #7f6757;
    --text-muted: #a38d7c;
    --overlay: rgba(244, 232, 218, 0.7);
    --glass-border: rgba(183, 121, 51, 0.14);
    --glass-border-hover: rgba(183, 121, 51, 0.28);
    --shadow: 0 22px 60px rgba(125, 84, 49, 0.12);
}

body {
    background:
        radial-gradient(circle at top left, rgba(255, 214, 170, 0.38), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 239, 214, 0.8), transparent 28%),
        linear-gradient(180deg, #fffaf3 0%, #f7ecdf 48%, #f4e6d5 100%);
    color: var(--cream);
}

.bg-image {
    background:
        radial-gradient(circle at 20% 12%, rgba(255, 215, 168, 0.55), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(255, 244, 225, 0.92), transparent 26%),
        radial-gradient(circle at 50% 100%, rgba(240, 203, 164, 0.38), transparent 30%),
        linear-gradient(180deg, #fffaf4 0%, #f5ebde 100%);
    filter: none;
    transform: none;
}

.bg-overlay {
    background:
        linear-gradient(180deg, rgba(255, 250, 244, 0.68) 0%, rgba(246, 237, 225, 0.88) 100%),
        linear-gradient(rgba(183, 121, 51, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(183, 121, 51, 0.05) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    background-position: 0 0, center center, center center;
}

.navbar {
    background: rgba(255, 250, 244, 0.78);
    border-bottom: 1px solid rgba(183, 121, 51, 0.14);
    box-shadow: 0 12px 32px rgba(125, 84, 49, 0.08);
}

.brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff1df, #f4dcc0);
    color: #9a5a19;
    box-shadow: inset 0 0 0 1px rgba(183, 121, 51, 0.16);
}

.brand-text {
    color: #6f3f1d;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lang-btn,
.lang-dropdown,
.lang-option {
    background-color: rgba(255, 252, 247, 0.96);
    color: var(--cream);
}

.lang-btn,
.lang-dropdown {
    border-color: rgba(183, 121, 51, 0.16);
    box-shadow: 0 16px 40px rgba(125, 84, 49, 0.1);
}

.lang-option:hover,
.lang-option:focus-visible {
    background: #fff2df;
}

.menu-container {
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(249, 239, 226, 0.98));
    border: 1px solid rgba(183, 121, 51, 0.14);
    box-shadow: 0 30px 80px rgba(125, 84, 49, 0.12);
    position: relative;
    overflow: hidden;
}

.menu-container::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 180px;
    background:
        radial-gradient(circle at 15% 35%, rgba(255, 192, 122, 0.2), transparent 26%),
        radial-gradient(circle at 85% 20%, rgba(255, 221, 173, 0.28), transparent 24%);
    pointer-events: none;
}

.menu-header {
    border-bottom: none;
    margin-bottom: 22px;
}

.menu-subtitle {
    color: #9e6a34;
    background: rgba(255, 243, 226, 0.95);
    border: 1px solid rgba(183, 121, 51, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    letter-spacing: 0.24em;
}

.menu-title {
    color: #5f3113;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 18px;
    margin-bottom: 10px;
}

.hero-logo-shell {
    background:
        radial-gradient(circle at 50% 40%, #ffffff 0%, #fff9f1 58%, #f7e6d0 100%);
    box-shadow:
        0 22px 50px rgba(125, 84, 49, 0.16),
        inset 0 0 0 1px rgba(183, 121, 51, 0.14);
}

.hero-ring-text text {
    fill: #a86b32;
}

.menu-tagline {
    color: #815d48;
    font-style: normal;
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto;
}

.guest-chip {
    border: 1px solid rgba(183, 121, 51, 0.16);
    background: rgba(255, 248, 239, 0.94);
    color: #744c2e;
}

.guest-chip-muted {
    color: #9a7d68;
    background: rgba(255, 252, 247, 0.8);
}

.tab-bar {
    background: transparent;
    border: none;
    padding: 8px;
    gap: 10px;
}

.tab-btn {
    background: rgba(255, 250, 244, 0.88);
    border: 1px solid rgba(183, 121, 51, 0.12);
    color: #7e6654;
    box-shadow: 0 10px 28px rgba(125, 84, 49, 0.06);
}

.tab-btn:hover,
.tab-btn:focus-visible {
    background: #fff7ee;
    border-color: rgba(183, 121, 51, 0.22);
    color: #5f3113;
}

.tab-btn.active {
    background: linear-gradient(135deg, #fff0d9, #ffe6c0);
    border-color: rgba(183, 121, 51, 0.24);
    color: #653514;
    box-shadow: 0 16px 34px rgba(183, 121, 51, 0.16);
}

.tab-icon {
    background: rgba(255, 255, 255, 0.9);
    color: #b26b24;
    box-shadow: inset 0 0 0 1px rgba(183, 121, 51, 0.12);
}

.category-jump-shell {
    background: rgba(255, 250, 244, 0.8);
    border: 1px solid rgba(183, 121, 51, 0.12);
    box-shadow: 0 14px 30px rgba(125, 84, 49, 0.06);
}

.category-jump-title {
    color: #8a5e35;
}

.category-jump-top,
.category-jump-pill {
    background: #fffaf4;
    border: 1px solid rgba(183, 121, 51, 0.12);
    color: #7a5a47;
}

.category-jump-pill.is-active {
    background: #ffe9c8;
    color: #66381b;
    border-color: rgba(183, 121, 51, 0.24);
}

.menu-category {
    padding: 24px;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 241, 229, 0.96));
    border: 1px solid rgba(183, 121, 51, 0.1);
    box-shadow: 0 20px 44px rgba(125, 84, 49, 0.08);
    position: relative;
    overflow: hidden;
}

.menu-category::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 10px;
    background: linear-gradient(180deg, #ffcf8c 0%, #d98b3d 52%, #f5d8a7 100%);
    opacity: 0.95;
}

.menu-category:nth-of-type(3n + 1)::after {
    background: linear-gradient(180deg, #ffcf8c 0%, #d98b3d 52%, #f5d8a7 100%);
}

.menu-category:nth-of-type(3n + 2)::after {
    background: linear-gradient(180deg, #f7b1a0 0%, #dd7f63 52%, #ffd1b9 100%);
}

.menu-category:nth-of-type(3n + 3)::after {
    background: linear-gradient(180deg, #b9d9a7 0%, #7fb26c 52%, #d4ebc7 100%);
}

.category-title {
    color: #6f3f1d;
    border-bottom: 1px solid rgba(183, 121, 51, 0.12);
}

.category-icon {
    background: linear-gradient(135deg, #fff0da, #ffe4bc);
    border: 1px solid rgba(183, 121, 51, 0.16);
    color: #b16922;
}

.menu-category:nth-of-type(3n + 2) .category-icon {
    background: linear-gradient(135deg, #ffe4dc, #ffd1c0);
    color: #b6583d;
    border-color: rgba(198, 98, 66, 0.16);
}

.menu-category:nth-of-type(3n + 3) .category-icon {
    background: linear-gradient(135deg, #edf8e5, #d9efca);
    color: #5f8d4e;
    border-color: rgba(95, 141, 78, 0.16);
}

button.menu-item {
    background: #fffdf9;
    border: 1px solid rgba(183, 121, 51, 0.12);
    box-shadow: 0 10px 26px rgba(125, 84, 49, 0.06);
    color: var(--cream);
}

button.menu-item::before {
    width: 6px;
    background: linear-gradient(180deg, #ffcc87, #d68b3c, #ffdfb4);
}

button.menu-item:hover,
button.menu-item:focus-visible {
    background: #ffffff;
    border-color: rgba(183, 121, 51, 0.22);
    box-shadow: 0 18px 36px rgba(125, 84, 49, 0.1);
}

button.menu-item.item-active {
    background: linear-gradient(135deg, #fff4e1, #fff8ef);
    border-color: rgba(183, 121, 51, 0.24);
}

.item-name {
    color: #4f2f1c;
    font-weight: 600;
}

.item-dots {
    border-bottom-color: rgba(183, 121, 51, 0.18);
}

.item-price {
    background: #fff4e1;
    border: 1px solid rgba(183, 121, 51, 0.16);
    color: #9f6127;
    font-weight: 700;
}

.menu-category:nth-of-type(3n + 2) .item-price {
    background: #ffe9e1;
    border-color: rgba(198, 98, 66, 0.14);
    color: #b6583d;
}

.menu-category:nth-of-type(3n + 3) .item-price {
    background: #eef7e8;
    border-color: rgba(95, 141, 78, 0.14);
    color: #5f8d4e;
}

.item-price::after {
    color: #9a7d68;
}

.menu-footer {
    border-top: 1px solid rgba(183, 121, 51, 0.12);
}

.menu-footer p,
.footer-brand {
    color: #8b6a55;
}

.footer-brand-icon {
    color: #c4833b;
}

.service-sticky-cta,
.order-cart-cta,
.service-modal,
.order-modal {
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.96), rgba(247, 237, 224, 0.98));
    border: 1px solid rgba(183, 121, 51, 0.14);
    box-shadow: 0 26px 60px rgba(125, 84, 49, 0.16);
}

.service-overlay,
.order-overlay {
    background: rgba(120, 89, 58, 0.18);
    backdrop-filter: blur(8px);
}

.service-sticky-title,
.order-cart-title,
.service-modal-title,
.order-modal-title,
.service-kicker,
.order-modal-kicker {
    color: #5f3113;
}

.service-sticky-hint,
.order-cart-hint,
.service-help,
.service-inline-note,
.order-cart-empty,
.order-field-label,
.service-note-label,
.order-pricing-row span,
.order-cart-total span {
    color: #7f6757;
}

.service-option,
.service-payment-option,
.service-note-input,
.order-note-input,
.order-qty-input,
.order-cart-item,
.order-item-pricing,
.order-cart-total,
.order-item-chip,
.order-item-chip-muted,
.order-item-hero,
.order-cart-list,
.service-inline-note {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(183, 121, 51, 0.12);
    color: #4f2f1c;
}

.service-option.is-selected,
.service-payment-option.is-selected {
    background: linear-gradient(135deg, #fff0da, #ffe1b6);
    border-color: rgba(183, 121, 51, 0.24);
    color: #653514;
}

.service-option-label,
.order-cart-item-name,
.order-modal-subtitle,
.order-pricing-row strong,
.order-cart-total strong,
.order-item-helper,
.order-cart-item-line-total {
    color: #4f2f1c;
}

.service-note-input::placeholder,
.order-note-input::placeholder,
.order-qty-input::placeholder {
    color: #a38d7c;
}

.service-note-input:focus,
.order-note-input:focus,
.order-qty-input:focus {
    border-color: rgba(183, 121, 51, 0.26);
    box-shadow: 0 0 0 3px rgba(183, 121, 51, 0.12);
}

.service-primary-btn,
.order-primary-btn {
    background: linear-gradient(135deg, #d38c42, #b86e2a);
    color: #fffaf3;
    border: none;
}

.service-secondary-btn,
.order-secondary-btn,
.order-cart-action {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(183, 121, 51, 0.14);
    color: #6e4d37;
}

.service-close-btn,
.order-close-btn {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(183, 121, 51, 0.14);
    color: #6e4d37;
}

.service-status-text.is-error,
.order-status-text.is-error {
    color: #b54b36;
}

.service-status-text.is-success,
.order-status-text.is-success {
    color: #2f8b57;
}

@media (max-width: 640px) {
    .menu-category {
        padding: 18px;
        border-radius: 22px;
    }

    .service-payment-options {
        grid-template-columns: 1fr;
    }

    .menu-title {
        font-size: 30px;
    }

    .brand-text {
        font-size: 18px;
    }
}
