* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #080909;
    color: #f7f0e3;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

body.reduce-motion *,
body.reduce-motion *::before,
body.reduce-motion *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

body.large-text {
    font-size: 118%;
}

body.high-contrast {
    background: #000;
    color: #fff;
}

button,
input,
a {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    background: #fff;
    color: #000;
    padding: .75rem 1rem;
    z-index: 1000;
}

.skip-link:focus {
    top: 1rem;
}

.hero {
    min-height: 58vh;
    background:
        linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.92)),
        radial-gradient(circle at top right, rgba(200,155,60,.22), transparent 40%),
        var(--tp-primary);
    background-size: cover;
    background-position: center;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}

.topbar,
.hero-inner,
.menu-shell {
    width: min(1120px, 100%);
    margin-inline: auto;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .02em;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--tp-accent);
}

.top-actions {
    display: flex;
    gap: .5rem;
}

.language-link {
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    padding: .45rem .65rem;
    border-radius: 999px;
    opacity: .75;
}

.language-link.active {
    background: var(--tp-accent);
    color: #111;
    opacity: 1;
}

.hero-inner {
    flex: 1;
    display: grid;
    align-content: center;
    padding-block: 5rem 3rem;
}

.eyebrow,
.section-heading p {
    color: var(--tp-accent);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .78rem;
    font-weight: 800;
}

.hero h1 {
    font-size: clamp(2.8rem, 9vw, 6.5rem);
    line-height: .9;
    margin: .35rem 0 1rem;
    max-width: 860px;
}

.hero-description {
    max-width: 640px;
    color: rgba(255,255,255,.78);
    font-size: 1.15rem;
}

.menu-switcher {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.5rem;
}

.menu-switcher a {
    text-decoration: none;
    padding: .75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
}

.menu-switcher a.active {
    background: var(--tp-accent);
    color: #111;
}

.menu-shell {
    padding: 1rem 1.25rem 5rem;
}

.tools-panel,
.accessibility-panel,
.category-section,
.featured-section {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.search-box label {
    display: block;
    font-weight: 800;
    margin-bottom: .45rem;
}

.search-box input {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.32);
    color: #fff;
    border-radius: 18px;
    padding: 1rem;
    outline: none;
}

.search-box input:focus,
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--tp-accent);
    outline-offset: 3px;
}

.filter-row,
.quick-filters,
.accessibility-panel,
.label-row,
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.filter-row,
.quick-filters {
    margin-top: 1rem;
}

.filter-chip,
.toggle-chip,
.accessibility-panel button {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 999px;
    padding: .7rem .95rem;
}

.filter-chip.active,
.toggle-chip.active,
.accessibility-panel button.active {
    background: var(--tp-accent);
    color: #111;
}

.accessibility-panel {
    align-items: center;
}

.accessibility-panel span {
    font-weight: 800;
    margin-right: .5rem;
}

.section-heading {
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-size: clamp(1.65rem, 4vw, 2.7rem);
    margin: 0;
}

.subcategory-block {
    margin-top: 1.5rem;
}

.subcategory-block h3 {
    color: rgba(255,255,255,.78);
    font-size: 1rem;
    margin-bottom: .8rem;
}

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

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

.product-card {
    min-width: 0;
}

.product-open {
    width: 100%;
    height: 100%;
    text-align: left;
    color: inherit;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.product-image {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #151515;
}

.product-image img,
.dialog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--tp-accent);
    font-size: 2rem;
    font-weight: 900;
}

.badge {
    position: absolute;
    left: .75rem;
    top: .75rem;
    background: var(--tp-accent);
    color: #111;
    padding: .35rem .6rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 900;
}

.product-content {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.product-content h3 {
    margin: 0 0 .35rem;
    font-size: 1.08rem;
}

.product-content p {
    margin: 0;
    color: rgba(255,255,255,.68);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer,
.dialog-title-row,
.option-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.price,
.dialog-price {
    color: var(--tp-accent);
    font-weight: 900;
    white-space: nowrap;
}

.old-price {
    color: rgba(255,255,255,.45);
    text-decoration: line-through;
    margin-right: .35rem;
    font-size: .9em;
}

.details-link {
    color: rgba(255,255,255,.68);
    font-size: .9rem;
}

.no-results {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(200,155,60,.12);
    color: #fff;
}

.product-dialog {
    width: min(760px, calc(100% - 2rem));
    border: none;
    border-radius: 28px;
    padding: 0;
    background: #111;
    color: #fff;
}

.product-dialog::backdrop {
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(4px);
}

.dialog-shell {
    position: relative;
}

.dialog-close {
    position: absolute;
    right: .85rem;
    top: .85rem;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 1.6rem;
}

.dialog-image {
    max-height: 320px;
}

.dialog-body {
    padding: 1.25rem;
}

.dialog-title-row {
    align-items: flex-start;
}

.dialog-title-row h2 {
    margin: 0;
    font-size: clamp(1.5rem, 5vw, 2.25rem);
}

.label-row,
.pill-row {
    margin-top: .85rem;
}

.label-row span,
.pill-row span {
    border: 1px solid rgba(255,255,255,.12);
    padding: .4rem .65rem;
    border-radius: 999px;
    color: rgba(255,255,255,.82);
    font-size: .85rem;
}

.dialog-description {
    color: rgba(255,255,255,.76);
}

.info-block {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.info-block h3 {
    margin: 0 0 .45rem;
    color: var(--tp-accent);
}

.option-list {
    display: grid;
    gap: .6rem;
}

.option-list > div {
    background: rgba(255,255,255,.05);
    border-radius: 14px;
    padding: .75rem;
}

.meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1rem;
    color: rgba(255,255,255,.72);
}

[hidden] {
    display: none !important;
}

@media (max-width: 860px) {
    .product-grid,
    .product-grid.compact {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 48vh;
    }

    .topbar {
        align-items: flex-start;
    }

    .brand span:last-child {
        max-width: 170px;
    }
}

/* QR Landing / Welcome screen */
.welcome-body {
    min-height: 100svh;
    background: #050606;
    color: #fff;
}

.welcome-screen {
    min-height: 100svh;
    width: min(100%, 460px);
    margin-inline: auto;
    position: relative;
    display: grid;
    align-content: end;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.92)),
        radial-gradient(circle at 50% 0%, rgba(200,155,60,.22), transparent 24rem),
        #080909;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.welcome-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0,0,0,.28) 42%, rgba(0,0,0,.86) 100%);
    pointer-events: none;
}

.welcome-language {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 2;
    display: flex;
    gap: .45rem;
}

.welcome-language a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    background: rgba(0,0,0,.42);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-weight: 800;
}

.welcome-language a.active {
    background: var(--tp-accent);
    color: #111;
}

.welcome-card {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1rem 1.5rem;
}

.welcome-logo {
    display: grid;
    justify-items: center;
    gap: .6rem;
    margin-bottom: .55rem;
}

.welcome-logo img {
    width: 150px;
    max-height: 90px;
    object-fit: contain;
}

.welcome-logo-mark {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.2);
    color: var(--tp-accent);
    font-size: 1.4rem;
    font-weight: 900;
}

.welcome-logo-text {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.welcome-eyebrow {
    margin: 0 0 1.3rem;
    color: var(--tp-accent);
    letter-spacing: .22em;
    font-size: .72rem;
    font-weight: 900;
}

.welcome-card h1 {
    margin: 0;
    font-size: clamp(2.1rem, 11vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.welcome-card h1 span {
    font-weight: 500;
}

.welcome-subtitle {
    margin: 1rem auto 1.5rem;
    max-width: 320px;
    color: rgba(255,255,255,.78);
}

.welcome-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    width: 100%;
    min-height: 56px;
    border-radius: 18px;
    background: linear-gradient(180deg, #d4a844, #af7f22);
    color: #111;
    text-decoration: none;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .02em;
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.welcome-cta span:last-child {
    font-size: 1.6rem;
    line-height: 1;
}

.welcome-secondary {
    display: inline-flex;
    margin-top: 1rem;
    color: rgba(255,255,255,.82);
    text-decoration: none;
    font-size: .92rem;
}

.welcome-footer {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: .15rem;
    padding: 1rem 0 .6rem;
    color: rgba(255,255,255,.7);
    text-align: center;
}

.welcome-footer span {
    color: var(--tp-accent);
}

.welcome-footer strong {
    font-size: .88rem;
}

.welcome-footer small {
    font-size: .76rem;
    color: rgba(255,255,255,.55);
}

/* Desktop refinement for QR Welcome screen */
@media (min-width: 900px) {
    .welcome-body {
        min-height: 100vh;
        background:
            radial-gradient(circle at 78% 18%, rgba(200,155,60,.16), transparent 28rem),
            radial-gradient(circle at 20% 80%, rgba(200,155,60,.08), transparent 24rem),
            #050606;
    }

    .welcome-screen {
        width: 100%;
        max-width: none;
        min-height: 100vh;
        margin: 0;
        padding: 2rem;
        align-content: center;
        justify-items: center;
        background-size: cover;
        background-position: center;
    }

    .welcome-screen::before {
        background:
            linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.66) 42%, rgba(0,0,0,.28) 100%),
            linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.68));
    }

    .welcome-language {
        right: 3rem;
        top: 2rem;
    }

    .welcome-card {
        width: min(100%, 760px);
        min-height: 560px;
        display: grid;
        align-content: center;
        justify-items: start;
        text-align: left;
        padding: 3.5rem;
        border-radius: 36px;
        background:
            linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
        border: 1px solid rgba(255,255,255,.12);
        box-shadow: 0 30px 100px rgba(0,0,0,.45);
        backdrop-filter: blur(10px);
    }

    .welcome-logo {
        justify-items: start;
        margin-bottom: .8rem;
    }

    .welcome-logo-mark {
        width: 68px;
        height: 68px;
    }

    .welcome-logo-text {
        font-size: 1.75rem;
    }

    .welcome-eyebrow {
        margin-bottom: 1.1rem;
    }

    .welcome-card h1 {
        font-size: clamp(3.2rem, 6vw, 5.8rem);
        max-width: 680px;
    }

    .welcome-subtitle {
        margin: 1.2rem 0 2rem;
        max-width: 480px;
        font-size: 1.1rem;
    }

    .welcome-cta {
        width: min(100%, 380px);
    }

    .welcome-secondary {
        margin-left: .2rem;
    }

    .welcome-footer {
        position: absolute;
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%);
        width: min(100%, 520px);
        border-radius: 999px;
        padding: .8rem 1.2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .55rem;
        background: rgba(255,255,255,.055);
        border: 1px solid rgba(255,255,255,.1);
        backdrop-filter: blur(10px);
    }

    .welcome-footer small {
        margin-left: .2rem;
    }
}

/* Large desktop: stronger hospitality landing feeling */
@media (min-width: 1200px) {
    .welcome-screen {
        justify-items: start;
        padding-left: max(4rem, calc((100vw - 1180px) / 2));
        padding-right: max(4rem, calc((100vw - 1180px) / 2));
    }

    .welcome-card {
        width: 720px;
    }
}

/* App navigation: mobile bottom / desktop top */
.desktop-menu-nav {
    display: none;
}

.mobile-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: .75rem;
    transform: translateX(-50%);
    z-index: 40;
    width: min(calc(100% - 1.5rem), 460px);
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .25rem;
    padding: .55rem;
    border-radius: 24px;
    background: rgba(9, 10, 10, .92);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 50px rgba(0,0,0,.42);
    backdrop-filter: blur(14px);
}

.mobile-bottom-nav a {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: .18rem;
    text-decoration: none;
    color: rgba(255,255,255,.66);
    font-size: .68rem;
    line-height: 1.1;
    padding: .35rem .15rem;
    border-radius: 16px;
}

.mobile-bottom-nav a span:first-child {
    color: var(--tp-accent);
    font-size: 1.15rem;
    line-height: 1;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:focus-visible {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.mobile-bottom-nav a:last-child span:last-child {
    font-size: .6rem;
}

.restaurant-info-card {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 5.5rem;
}

.restaurant-info-card h2 {
    margin: 0 0 .4rem;
    color: var(--tp-accent);
}

.restaurant-info-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
}

.restaurant-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .9rem;
}

.restaurant-info-actions a {
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    padding: .5rem .75rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .mobile-bottom-nav {
        display: none;
    }

    .desktop-menu-nav {
        display: flex;
        align-items: center;
        gap: .35rem;
        margin-right: .65rem;
        padding: .35rem;
        border-radius: 999px;
        background: rgba(255,255,255,.055);
        border: 1px solid rgba(255,255,255,.10);
        backdrop-filter: blur(12px);
    }

    .desktop-menu-nav a {
        text-decoration: none;
        color: rgba(255,255,255,.76);
        font-size: .86rem;
        padding: .55rem .75rem;
        border-radius: 999px;
        white-space: nowrap;
    }

    .desktop-menu-nav a:hover,
    .desktop-menu-nav a:focus-visible {
        color: #111;
        background: var(--tp-accent);
    }

    .top-actions {
        align-items: center;
    }

    .restaurant-info-card {
        margin-bottom: 2rem;
    }
}

/* Final CMS-driven navigation */
.nav-svg,
.nav-svg-img {
    width: 22px;
    height: 22px;
    display: block;
}

.nav-svg-img {
    object-fit: contain;
}

.mobile-bottom-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    z-index: 9999 !important;
    width: 100% !important;
    max-width: none !important;
    display: grid !important;
    grid-template-columns: repeat(var(--nav-count, 5), minmax(0, 1fr));
    gap: 0;
    padding: .55rem .55rem calc(.55rem + env(safe-area-inset-bottom));
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, rgba(22,24,24,.98), rgba(10,11,11,.98));
    border: 0;
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 -14px 40px rgba(0,0,0,.42);
    backdrop-filter: blur(16px);
}

.mobile-bottom-nav a {
    min-width: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: .28rem;
    min-height: 58px;
    text-decoration: none;
    color: rgba(255,255,255,.58);
    font-size: .67rem;
    line-height: 1.05;
    padding: .35rem .1rem;
    border-radius: 16px;
}

.mobile-bottom-nav a.active {
    color: var(--tp-accent);
    background: rgba(255,255,255,.045);
}

.mobile-bottom-nav a:focus-visible {
    outline: 3px solid var(--tp-accent);
    outline-offset: -2px;
}

.menu-shell {
    padding-bottom: 6.5rem;
}

.desktop-menu-nav a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.desktop-menu-nav .nav-svg,
.desktop-menu-nav .nav-svg-img {
    width: 18px;
    height: 18px;
}

.desktop-menu-nav a.active {
    color: #111;
    background: var(--tp-accent);
}

@media (min-width: 1024px) {
    .mobile-bottom-nav {
        display: none !important;
    }

    .menu-shell {
        padding-bottom: 4rem;
    }
}

/* Final navigation visual correction */
.mobile-bottom-nav {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    transform: none !important;
    z-index: 9999 !important;

    width: 100% !important;
    max-width: none !important;

    display: grid !important;
    grid-template-columns: repeat(var(--nav-count, 5), minmax(0, 1fr));
    gap: 0;

    padding: .42rem .35rem calc(.42rem + env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;

    background:
        linear-gradient(180deg, rgba(20, 22, 22, .98), rgba(8, 9, 9, .99));

    border: 0;
    border-top: 1px solid rgba(255,255,255,.10);

    box-shadow: 0 -10px 28px rgba(0,0,0,.45);
    backdrop-filter: blur(16px);
}

.mobile-bottom-nav a {
    min-width: 0;
    min-height: 52px;

    display: grid;
    justify-items: center;
    align-content: center;
    gap: .22rem;

    padding: .28rem .05rem;
    border-radius: 14px;

    text-decoration: none;
    color: rgba(255,255,255,.58);

    font-size: .61rem;
    font-weight: 700;
    line-height: 1.05;
}

.mobile-bottom-nav .nav-svg,
.mobile-bottom-nav .nav-svg-img {
    width: 22px !important;
    height: 22px !important;
    color: currentColor;
    stroke: currentColor;
}

.mobile-bottom-nav a.active {
    color: var(--tp-accent);
    background: rgba(200,155,60,.10);
}

.mobile-bottom-nav a:not(.active):hover,
.mobile-bottom-nav a:not(.active):focus-visible {
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.055);
}

.mobile-bottom-nav a:focus-visible {
    outline: 2px solid var(--tp-accent);
    outline-offset: -2px;
}

.menu-shell {
    padding-bottom: 5.9rem !important;
}

/* Desktop navigation should be compact, not mobile-dock style */
.desktop-menu-nav {
    display: none;
}

@media (min-width: 1024px) {
    .mobile-bottom-nav {
        display: none !important;
    }

    .desktop-menu-nav {
        display: flex !important;
        align-items: center;
        gap: .25rem;
        margin-right: .65rem;
        padding: .3rem;
        border-radius: 999px;

        background: rgba(255,255,255,.055);
        border: 1px solid rgba(255,255,255,.10);
        backdrop-filter: blur(12px);
    }

    .desktop-menu-nav a {
        display: inline-flex;
        align-items: center;
        gap: .35rem;

        min-height: 36px;
        padding: .45rem .68rem;
        border-radius: 999px;

        color: rgba(255,255,255,.72);
        text-decoration: none;
        font-size: .8rem;
        font-weight: 750;
        white-space: nowrap;
    }

    .desktop-menu-nav .nav-svg,
    .desktop-menu-nav .nav-svg-img {
        width: 16px !important;
        height: 16px !important;
        color: currentColor;
        stroke: currentColor;
    }

    .desktop-menu-nav a.active {
        color: #111;
        background: var(--tp-accent);
    }

    .desktop-menu-nav a:not(.active):hover,
    .desktop-menu-nav a:not(.active):focus-visible {
        color: #fff;
        background: rgba(255,255,255,.08);
    }

    .menu-shell {
        padding-bottom: 4rem !important;
    }
}

/* Very small phones: protect against label crowding */
@media (max-width: 390px) {
    .mobile-bottom-nav a {
        font-size: .56rem;
    }

    .mobile-bottom-nav .nav-svg,
    .mobile-bottom-nav .nav-svg-img {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Welcome screen requested refinements */
.welcome-language {
    gap: .5rem;
}

.welcome-language a {
    width: auto;
    min-width: 58px;
    height: 38px;
    padding: 0 .65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .28rem;
    border-radius: 999px;
    font-size: .82rem;
}

.welcome-language a span:first-child {
    font-size: 1rem;
    line-height: 1;
}

.welcome-logo img {
    width: 180px;
    height: 140px;
    max-height: 140px;
    object-fit: contain;
}

.welcome-actions {
    width: 100%;
    display: grid;
    gap: .75rem;
}

.welcome-cta {
    min-height: 58px;
    font-size: .98rem;
    box-shadow:
        0 18px 40px rgba(0,0,0,.38),
        0 0 0 1px rgba(255,255,255,.08) inset;
}

.welcome-events-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    width: 100%;
    min-height: 52px;
    border-radius: 18px;
    text-decoration: none;
    color: #f7f0e3;
    font-weight: 850;
    letter-spacing: .01em;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

.welcome-events-cta:hover,
.welcome-events-cta:focus-visible {
    background: rgba(200,155,60,.16);
    border-color: rgba(200,155,60,.55);
}

.credits-footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.credits-footer small {
    color: rgba(255,255,255,.62);
    font-size: .76rem;
    text-align: center;
}

.welcome-logo:has(img) {
    margin-bottom: .7rem;
}

@media (min-width: 900px) {
    .welcome-logo img {
        width: 210px;
        height: 150px;
        max-height: 150px;
    }

    .welcome-actions {
        width: min(100%, 380px);
    }

    .welcome-events-cta {
        width: 100%;
    }

    .credits-footer {
        width: auto;
        min-width: 360px;
    }
}

/* Mobile-only welcome screen scale adjustment: 20% smaller */
@media (max-width: 899px) {
    .welcome-card {
        padding: 1.6rem .8rem 1.2rem;
    }

    .welcome-logo img {
        width: 144px !important;
        height: 112px !important;
        max-height: 112px !important;
    }

    .welcome-logo-mark {
        width: 59px;
        height: 59px;
        font-size: 1.12rem;
    }

    .welcome-logo-text {
        font-size: 1.16rem;
    }

    .welcome-eyebrow {
        font-size: .58rem;
        margin-bottom: 1.04rem;
    }

    .welcome-card h1 {
        font-size: clamp(1.68rem, 8.8vw, 2.72rem);
    }

    .welcome-subtitle {
        font-size: .8rem;
        max-width: 256px;
        margin: .8rem auto 1.2rem;
    }

    .welcome-actions {
        gap: .6rem;
    }

    .welcome-cta {
        min-height: 46px;
        border-radius: 14px;
        font-size: .78rem;
    }

    .welcome-cta span:last-child {
        font-size: 1.28rem;
    }

    .welcome-events-cta {
        min-height: 42px;
        border-radius: 14px;
        font-size: .8rem;
    }

    .welcome-secondary {
        font-size: .74rem;
        margin-top: .8rem;
    }

    .welcome-language a {
        min-width: 46px;
        height: 31px;
        padding: 0 .52rem;
        font-size: .66rem;
    }

    .welcome-language a span:first-child {
        font-size: .8rem;
    }

    .credits-footer small {
        font-size: .61rem;
    }

    .welcome-footer {
        padding: .8rem 0 .48rem;
    }
}

/* Internal menu header logo refinement */
.brand.has-logo img {
    width: 132px;
    height: 88px;
    object-fit: contain;
}

.brand.has-logo {
    gap: 0;
}

.brand.no-logo {
    gap: .75rem;
}

.brand.no-logo .brand-name {
    font-weight: 850;
    letter-spacing: .02em;
}

@media (max-width: 899px) {
    .brand.has-logo img {
        width: 112px;
        height: 74px;
    }

    .topbar {
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .brand.has-logo img {
        width: 150px;
        height: 96px;
    }
}

/* Force internal mobile logo size when uploaded logo exists */
@media (max-width: 899px) {
    header.hero .topbar .brand.has-logo img {
        width: 132px !important;
        height: 92px !important;
        max-width: 132px !important;
        max-height: 92px !important;
        object-fit: contain !important;
    }

    header.hero .topbar .brand.has-logo {
        min-width: 132px;
        flex: 0 0 auto;
    }

    header.hero .topbar .brand.has-logo .brand-name,
    header.hero .topbar .brand.has-logo span:not(.brand-mark) {
        display: none !important;
    }

    header.hero .topbar {
        align-items: center !important;
    }
}

/* Internal mobile logo: slightly smaller, without affecting cover image */
@media (max-width: 899px) {
    header.hero .topbar .brand.has-logo img {
        width: 112px !important;
        height: 76px !important;
        max-width: 112px !important;
        max-height: 76px !important;
        object-fit: contain !important;
    }

    header.hero .topbar .brand.has-logo {
        min-width: 112px !important;
        flex: 0 0 auto;
    }

    header.hero .topbar .brand.has-logo .brand-name,
    header.hero .topbar .brand.has-logo span:not(.brand-mark) {
        display: none !important;
    }
}

/* Keep the internal cover/hero background stable */
header.hero {
    background-size: cover !important;
    background-position: center center !important;
}

/* On mobile, avoid excessive zoom feeling on the cover */
@media (max-width: 899px) {
    header.hero {
        min-height: auto !important;
        background-size: cover !important;
        background-position: center top !important;
    }

    header.hero .hero-inner {
        min-height: 360px !important;
        padding-block: 2.4rem 1.6rem !important;
    }
}

/* Force internal language switcher to match welcome language switcher exactly */
.top-actions .language-link {
    width: auto !important;
    min-width: 58px !important;
    height: 38px !important;
    padding: 0 .65rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .28rem !important;
    border-radius: 999px !important;
    font-size: .82rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.top-actions .language-link span:first-child {
    font-size: 1rem !important;
    line-height: 1 !important;
}

@media (max-width: 899px) {
    .top-actions .language-link {
        min-width: 46px !important;
        height: 31px !important;
        padding: 0 .52rem !important;
        font-size: .66rem !important;
    }

    .top-actions .language-link span:first-child {
        font-size: .8rem !important;
    }
}

/* Internal page language switcher: same top-right position as welcome screen */
@media (max-width: 899px) {
    header.hero {
        position: relative !important;
    }

    header.hero .topbar {
        position: relative !important;
        min-height: 76px !important;
    }

    header.hero .topbar .top-actions {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 20 !important;
        display: flex !important;
        align-items: center !important;
        gap: .5rem !important;
    }

    header.hero .topbar .desktop-menu-nav {
        display: none !important;
    }
}

/* Internal display controls below language switcher */
.display-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .32rem;
    width: 100%;
    margin-top: .42rem;
}

.display-controls button {
    min-width: 34px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(0,0,0,.32);
    color: rgba(255,255,255,.78);
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
}

.display-controls button[data-font-step="2"] {
    font-size: .76rem;
}

.display-controls button[data-font-step="3"] {
    min-width: 48px;
    font-size: .78rem;
}

.display-controls button.active {
    background: var(--tp-accent);
    color: #111;
    border-color: var(--tp-accent);
}

@media (max-width: 899px) {
    header.hero .topbar .top-actions {
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
        width: 142px !important;
    }

    .display-controls {
        margin-top: .35rem;
    }

    .display-controls button {
        min-width: 30px;
        height: 27px;
        font-size: .6rem;
    }

    .display-controls button[data-font-step="2"] {
        font-size: .68rem;
    }

    .display-controls button[data-font-step="3"] {
        min-width: 43px;
        font-size: .68rem;
    }
}

/* Font-size steps: apply only to internal content, not cover/hero */
body.tp-font-step-1 .menu-shell {
    font-size: 100%;
}

body.tp-font-step-2 .menu-shell {
    font-size: 110%;
}

body.tp-font-step-3 .menu-shell {
    font-size: 120%;
}

/* Keep layout stable while text grows */
body.tp-font-step-2 .product-content p,
body.tp-font-step-3 .product-content p {
    -webkit-line-clamp: 3;
}

body.tp-font-step-3 .product-grid {
    gap: .9rem;
}

/* Light mode: do not affect hero / intro cover section */
body.tp-light-mode {
    background: #f4efe7;
    color: #1b1712;
}

body.tp-light-mode .hero {
    color: #f7f0e3;
}

body.tp-light-mode .menu-shell,
body.tp-light-mode .category-section,
body.tp-light-mode .featured-section,
body.tp-light-mode .tools-panel,
body.tp-light-mode .restaurant-info-card {
    background: #f4efe7;
    color: #1b1712;
}

body.tp-light-mode .tools-panel,
body.tp-light-mode .category-section,
body.tp-light-mode .featured-section,
body.tp-light-mode .restaurant-info-card {
    border-color: rgba(45, 34, 20, .14);
    box-shadow: 0 14px 36px rgba(70, 49, 20, .10);
}

body.tp-light-mode .search-box input {
    background: #fff;
    color: #1b1712;
    border-color: rgba(45, 34, 20, .18);
}

body.tp-light-mode .filter-chip,
body.tp-light-mode .toggle-chip,
body.tp-light-mode .restaurant-info-actions a {
    background: rgba(255,255,255,.72);
    color: #1b1712;
    border-color: rgba(45, 34, 20, .16);
}

body.tp-light-mode .product-open {
    background: #fff;
    color: #1b1712;
    border-color: rgba(45, 34, 20, .10);
    box-shadow: 0 10px 26px rgba(70, 49, 20, .08);
}

body.tp-light-mode .product-content p,
body.tp-light-mode .subcategory-block h3,
body.tp-light-mode .restaurant-info-card p {
    color: rgba(27, 23, 18, .68);
}

body.tp-light-mode .details-link {
    color: rgba(27, 23, 18, .62);
}

body.tp-light-mode .old-price {
    color: rgba(27, 23, 18, .42);
}

body.tp-light-mode .mobile-bottom-nav {
    background: rgba(255,255,255,.96);
    border-top-color: rgba(45, 34, 20, .12);
}

body.tp-light-mode .mobile-bottom-nav a {
    color: rgba(27, 23, 18, .58);
}

body.tp-light-mode .mobile-bottom-nav a.active {
    color: #6f4c09;
    background: rgba(200,155,60,.18);
}

body.tp-light-mode .product-dialog {
    background: #fff;
    color: #1b1712;
}

body.tp-light-mode .dialog-description,
body.tp-light-mode .meta-grid,
body.tp-light-mode .label-row span,
body.tp-light-mode .pill-row span {
    color: rgba(27, 23, 18, .72);
}

body.tp-light-mode .label-row span,
body.tp-light-mode .pill-row span,
body.tp-light-mode .option-list > div {
    border-color: rgba(45, 34, 20, .14);
    background: rgba(45, 34, 20, .04);
}

/* Keep display controls dark/glass because they sit over the hero */
body.tp-light-mode .display-controls button {
    background: rgba(0,0,0,.32);
    color: rgba(255,255,255,.78);
    border-color: rgba(255,255,255,.16);
}

body.tp-light-mode .display-controls button.active {
    background: var(--tp-accent);
    color: #111;
    border-color: var(--tp-accent);
}

/* Cleaner internal utility controls */
.top-actions {
    gap: .42rem;
}

.top-actions .language-link {
    min-width: 42px !important;
    height: 34px !important;
    padding: 0 .55rem !important;
    font-size: .72rem !important;
    letter-spacing: .02em;
}

.theme-toggle-button,
.accessibility-open-button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    background: rgba(0,0,0,.36);
    color: #fff;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.theme-toggle-button span {
    font-size: 1.08rem;
}

.accessibility-open-button span {
    font-size: 1.18rem;
}

.theme-toggle-button.active,
.accessibility-open-button.active {
    background: var(--tp-accent);
    color: #111;
    border-color: var(--tp-accent);
}

@media (max-width: 899px) {
    header.hero .topbar .top-actions {
        width: auto !important;
        min-width: 156px;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: .36rem !important;
    }

    .top-actions .language-link {
        min-width: 38px !important;
        height: 31px !important;
        padding: 0 .46rem !important;
        font-size: .66rem !important;
    }

    .theme-toggle-button,
    .accessibility-open-button {
        width: 34px;
        height: 34px;
    }

    .theme-toggle-button span {
        font-size: 1rem;
    }

    .accessibility-open-button span {
        font-size: 1.08rem;
    }
}

/* Accessibility slide-in drawer */
.accessibility-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
}

.accessibility-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
    width: min(390px, 92vw);
    height: 100svh;
    transform: translateX(105%);
    transition: transform .24s ease;
    background:
        linear-gradient(180deg, rgba(23,24,24,.98), rgba(8,9,9,.99));
    color: #fff;
    border-left: 1px solid rgba(255,255,255,.12);
    box-shadow: -24px 0 80px rgba(0,0,0,.55);
    display: flex;
    flex-direction: column;
}

.accessibility-drawer.is-open {
    transform: translateX(0);
}

.accessibility-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.accessibility-drawer-header p {
    margin: 0 0 .25rem;
    color: var(--tp-accent);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.accessibility-drawer-header h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -.03em;
}

.accessibility-close-button {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
}

.accessibility-drawer-body {
    padding: 1rem;
    overflow-y: auto;
}

.accessibility-option-group {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    margin-bottom: .8rem;
}

.accessibility-option-group h3 {
    margin: 0 0 .35rem;
    color: var(--tp-accent);
    font-size: 1rem;
}

.accessibility-option-group p {
    margin: 0 0 .85rem;
    color: rgba(255,255,255,.66);
    font-size: .9rem;
}

.font-size-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
}

.font-size-options button,
.drawer-option-button {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(0,0,0,.22);
    color: #fff;
    font-weight: 900;
}

.font-size-options button:nth-child(1) {
    font-size: .9rem;
}

.font-size-options button:nth-child(2) {
    font-size: 1rem;
}

.font-size-options button:nth-child(3) {
    font-size: 1.05rem;
}

.font-size-options button.active {
    background: var(--tp-accent);
    color: #111;
    border-color: var(--tp-accent);
}

.drawer-option-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

/* Light mode drawer */
body.tp-light-mode .accessibility-drawer {
    background: #fff;
    color: #1b1712;
    border-left-color: rgba(45,34,20,.12);
}

body.tp-light-mode .accessibility-drawer-header {
    border-bottom-color: rgba(45,34,20,.12);
}

body.tp-light-mode .accessibility-close-button,
body.tp-light-mode .accessibility-option-group,
body.tp-light-mode .font-size-options button,
body.tp-light-mode .drawer-option-button {
    background: rgba(45,34,20,.045);
    color: #1b1712;
    border-color: rgba(45,34,20,.12);
}

body.tp-light-mode .accessibility-option-group p {
    color: rgba(27,23,18,.68);
}

body.tp-light-mode .font-size-options button.active {
    background: var(--tp-accent);
    color: #111;
    border-color: var(--tp-accent);
}

/* FINAL internal header controls: no language switcher */
.header-utility-controls {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.theme-toggle-button,
.accessibility-open-button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    background: rgba(0,0,0,.42) !important;
    color: #fff !important;
    display: inline-grid !important;
    place-items: center !important;
    line-height: 1 !important;
    backdrop-filter: blur(10px);
}

.theme-toggle-button span {
    font-size: 1.35rem !important;
    line-height: 1 !important;
}

.accessibility-open-button span {
    font-size: 1.42rem !important;
    line-height: 1 !important;
}

.theme-toggle-button.active,
.accessibility-open-button.active {
    background: var(--tp-accent) !important;
    color: #111 !important;
    border-color: var(--tp-accent) !important;
}

@media (max-width: 899px) {
    header.hero .topbar .top-actions {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 30 !important;
        width: auto !important;
        min-width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: .45rem !important;
    }

    header.hero .topbar .desktop-menu-nav {
        display: none !important;
    }

    .theme-toggle-button,
    .accessibility-open-button {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
    }

    .theme-toggle-button span {
        font-size: 1.22rem !important;
    }

    .accessibility-open-button span {
        font-size: 1.3rem !important;
    }
}

/* Accessibility drawer */
.accessibility-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(3px);
}

.accessibility-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10001;
    width: min(390px, 92vw);
    height: 100svh;
    transform: translateX(105%);
    transition: transform .24s ease;
    background: linear-gradient(180deg, rgba(23,24,24,.98), rgba(8,9,9,.99));
    color: #fff;
    border-left: 1px solid rgba(255,255,255,.12);
    box-shadow: -24px 0 80px rgba(0,0,0,.55);
    display: flex;
    flex-direction: column;
}

.accessibility-drawer.is-open {
    transform: translateX(0);
}

.accessibility-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.accessibility-drawer-header p {
    margin: 0 0 .25rem;
    color: var(--tp-accent);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.accessibility-drawer-header h2 {
    margin: 0;
    font-size: 1.35rem;
    letter-spacing: -.03em;
}

.accessibility-close-button {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
}

.accessibility-drawer-body {
    padding: 1rem;
    overflow-y: auto;
}

.accessibility-option-group {
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    margin-bottom: .8rem;
}

.accessibility-option-group h3 {
    margin: 0 0 .35rem;
    color: var(--tp-accent);
    font-size: 1rem;
}

.accessibility-option-group p {
    margin: 0 0 .85rem;
    color: rgba(255,255,255,.66);
    font-size: .9rem;
}

.font-size-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .45rem;
}

.font-size-options button {
    min-height: 42px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    background: rgba(0,0,0,.22);
    color: #fff;
    font-weight: 900;
}

.font-size-options button.active {
    background: var(--tp-accent);
    color: #111;
    border-color: var(--tp-accent);
}

/* Light mode drawer */
body.tp-light-mode .accessibility-drawer {
    background: #fff;
    color: #1b1712;
    border-left-color: rgba(45,34,20,.12);
}

body.tp-light-mode .accessibility-drawer-header {
    border-bottom-color: rgba(45,34,20,.12);
}

body.tp-light-mode .accessibility-close-button,
body.tp-light-mode .accessibility-option-group,
body.tp-light-mode .font-size-options button {
    background: rgba(45,34,20,.045);
    color: #1b1712;
    border-color: rgba(45,34,20,.12);
}

body.tp-light-mode .accessibility-option-group p {
    color: rgba(27,23,18,.68);
}

body.tp-light-mode .font-size-options button.active {
    background: var(--tp-accent);
    color: #111;
    border-color: var(--tp-accent);
}

/* Final accessibility font steps */
body.tp-font-step-1 .menu-shell {
    font-size: 100% !important;
}

body.tp-font-step-2 .menu-shell {
    font-size: 120% !important;
}

body.tp-font-step-3 .menu-shell {
    font-size: 140% !important;
}

/* Keep cards usable when text grows */
body.tp-font-step-2 .product-content,
body.tp-font-step-3 .product-content {
    gap: .65rem;
}

body.tp-font-step-2 .product-content p,
body.tp-font-step-3 .product-content p {
    -webkit-line-clamp: 3;
}

body.tp-font-step-3 .product-open {
    min-height: 132px;
}

body.tp-font-step-3 .product-footer {
    flex-wrap: wrap;
}

/* Active state inside accessibility drawer */
.font-size-options button.active {
    background: var(--tp-accent) !important;
    color: #111 !important;
    border-color: var(--tp-accent) !important;
}

/* Final accessibility font steps */
body.tp-font-step-1 .menu-shell {
    font-size: 100% !important;
}

body.tp-font-step-2 .menu-shell {
    font-size: 120% !important;
}

body.tp-font-step-3 .menu-shell {
    font-size: 140% !important;
}

/* Keep cards usable when text grows */
body.tp-font-step-2 .product-content,
body.tp-font-step-3 .product-content {
    gap: .65rem;
}

body.tp-font-step-2 .product-content p,
body.tp-font-step-3 .product-content p {
    -webkit-line-clamp: 3;
}

body.tp-font-step-3 .product-open {
    min-height: 132px;
}

body.tp-font-step-3 .product-footer {
    flex-wrap: wrap;
}

/* Active state inside accessibility drawer */
.font-size-options button.active {
    background: var(--tp-accent) !important;
    color: #111 !important;
    border-color: var(--tp-accent) !important;
}

/* Strong final font-size accessibility behavior */

/* A = default */
body.tp-font-step-1 .menu-shell,
body.tp-font-step-1 .menu-shell h2,
body.tp-font-step-1 .menu-shell h3,
body.tp-font-step-1 .menu-shell p,
body.tp-font-step-1 .menu-shell button,
body.tp-font-step-1 .menu-shell input,
body.tp-font-step-1 .menu-shell .price,
body.tp-font-step-1 .menu-shell .details-link,
body.tp-font-step-1 .menu-shell .filter-chip,
body.tp-font-step-1 .menu-shell .toggle-chip {
    font-size: revert-layer;
}

/* AA = +20% */
body.tp-font-step-2 .menu-shell .section-heading h2 {
    font-size: calc(clamp(1.55rem, 8vw, 2.3rem) * 1.2) !important;
}

body.tp-font-step-2 .menu-shell .product-content h3,
body.tp-font-step-2 .menu-shell .subcategory-block h3 {
    font-size: 1.2rem !important;
}

body.tp-font-step-2 .menu-shell .product-content p,
body.tp-font-step-2 .menu-shell .search-box label,
body.tp-font-step-2 .menu-shell .filter-chip,
body.tp-font-step-2 .menu-shell .toggle-chip,
body.tp-font-step-2 .menu-shell .details-link,
body.tp-font-step-2 .menu-shell .restaurant-info-card p,
body.tp-font-step-2 .menu-shell .restaurant-info-actions a {
    font-size: 1.08rem !important;
}

body.tp-font-step-2 .menu-shell .price {
    font-size: 1.14rem !important;
}

body.tp-font-step-2 .menu-shell input {
    font-size: 1.08rem !important;
}

/* AAA+ = +40% */
body.tp-font-step-3 .menu-shell .section-heading h2 {
    font-size: calc(clamp(1.55rem, 8vw, 2.3rem) * 1.4) !important;
}

body.tp-font-step-3 .menu-shell .product-content h3,
body.tp-font-step-3 .menu-shell .subcategory-block h3 {
    font-size: 1.4rem !important;
}

body.tp-font-step-3 .menu-shell .product-content p,
body.tp-font-step-3 .menu-shell .search-box label,
body.tp-font-step-3 .menu-shell .filter-chip,
body.tp-font-step-3 .menu-shell .toggle-chip,
body.tp-font-step-3 .menu-shell .details-link,
body.tp-font-step-3 .menu-shell .restaurant-info-card p,
body.tp-font-step-3 .menu-shell .restaurant-info-actions a {
    font-size: 1.22rem !important;
}

body.tp-font-step-3 .menu-shell .price {
    font-size: 1.3rem !important;
}

body.tp-font-step-3 .menu-shell input {
    font-size: 1.22rem !important;
}

/* Preserve layout better when text grows */
body.tp-font-step-2 .product-open,
body.tp-font-step-3 .product-open {
    min-height: auto !important;
}

body.tp-font-step-2 .product-content,
body.tp-font-step-3 .product-content {
    gap: .75rem !important;
}

body.tp-font-step-2 .product-content p,
body.tp-font-step-3 .product-content p {
    -webkit-line-clamp: 4 !important;
}

body.tp-font-step-3 .product-footer {
    flex-wrap: wrap !important;
    align-items: flex-start !important;
}

/* Drawer active button */
.font-size-options button.active {
    background: var(--tp-accent) !important;
    color: #111 !important;
    border-color: var(--tp-accent) !important;
}

/* FINAL accessibility font scaling: each step = +40%
   A = 100%, AA = 140%, AAA+ = 180%
   Applies to menu content + accessibility drawer content.
*/

/* A / default */
body.tp-font-step-1 .menu-shell,
body.tp-font-step-1 .accessibility-drawer {
    --tp-access-font-scale: 1;
}

/* AA / +40% */
body.tp-font-step-2 .menu-shell,
body.tp-font-step-2 .accessibility-drawer {
    --tp-access-font-scale: 1.4;
}

/* AAA+ / +80% */
body.tp-font-step-3 .menu-shell,
body.tp-font-step-3 .accessibility-drawer {
    --tp-access-font-scale: 1.8;
}

/* Menu section headings */
body.tp-font-step-2 .menu-shell .section-heading h2,
body.tp-font-step-3 .menu-shell .section-heading h2 {
    font-size: calc(2rem * var(--tp-access-font-scale)) !important;
}

/* Product/category text */
body.tp-font-step-2 .menu-shell .product-content h3,
body.tp-font-step-3 .menu-shell .product-content h3,
body.tp-font-step-2 .menu-shell .subcategory-block h3,
body.tp-font-step-3 .menu-shell .subcategory-block h3 {
    font-size: calc(1rem * var(--tp-access-font-scale)) !important;
}

body.tp-font-step-2 .menu-shell .product-content p,
body.tp-font-step-3 .menu-shell .product-content p,
body.tp-font-step-2 .menu-shell .search-box label,
body.tp-font-step-3 .menu-shell .search-box label,
body.tp-font-step-2 .menu-shell .filter-chip,
body.tp-font-step-3 .menu-shell .filter-chip,
body.tp-font-step-2 .menu-shell .toggle-chip,
body.tp-font-step-3 .menu-shell .toggle-chip,
body.tp-font-step-2 .menu-shell .details-link,
body.tp-font-step-3 .menu-shell .details-link,
body.tp-font-step-2 .menu-shell .restaurant-info-card p,
body.tp-font-step-3 .menu-shell .restaurant-info-card p,
body.tp-font-step-2 .menu-shell .restaurant-info-actions a,
body.tp-font-step-3 .menu-shell .restaurant-info-actions a,
body.tp-font-step-2 .menu-shell input,
body.tp-font-step-3 .menu-shell input {
    font-size: calc(.9rem * var(--tp-access-font-scale)) !important;
}

body.tp-font-step-2 .menu-shell .price,
body.tp-font-step-3 .menu-shell .price {
    font-size: calc(.95rem * var(--tp-access-font-scale)) !important;
}

/* Accessibility drawer text also scales */
body.tp-font-step-2 .accessibility-drawer-header p,
body.tp-font-step-3 .accessibility-drawer-header p {
    font-size: calc(.72rem * var(--tp-access-font-scale)) !important;
}

body.tp-font-step-2 .accessibility-drawer-header h2,
body.tp-font-step-3 .accessibility-drawer-header h2 {
    font-size: calc(1.35rem * var(--tp-access-font-scale)) !important;
}

body.tp-font-step-2 .accessibility-option-group h3,
body.tp-font-step-3 .accessibility-option-group h3 {
    font-size: calc(1rem * var(--tp-access-font-scale)) !important;
}

body.tp-font-step-2 .accessibility-option-group p,
body.tp-font-step-3 .accessibility-option-group p {
    font-size: calc(.9rem * var(--tp-access-font-scale)) !important;
}

body.tp-font-step-2 .font-size-options button,
body.tp-font-step-3 .font-size-options button {
    font-size: calc(.95rem * var(--tp-access-font-scale)) !important;
}

/* Keep layout from breaking too aggressively */
body.tp-font-step-2 .product-content p,
body.tp-font-step-3 .product-content p {
    -webkit-line-clamp: 5 !important;
}

body.tp-font-step-2 .product-footer,
body.tp-font-step-3 .product-footer {
    flex-wrap: wrap !important;
    gap: .45rem !important;
}

body.tp-font-step-3 .accessibility-drawer {
    width: min(520px, 96vw) !important;
}

body.tp-font-step-3 .font-size-options {
    grid-template-columns: 1fr !important;
}

/* Active font button */
.font-size-options button.active {
    background: var(--tp-accent) !important;
    color: #111 !important;
    border-color: var(--tp-accent) !important;
}

/* Accessibility scaling refinement:
   A = 100%, AA = 140%, AAA+ = 160%
*/
body.tp-font-step-1 .menu-shell,
body.tp-font-step-1 .accessibility-drawer {
    --tp-access-font-scale: 1 !important;
}

body.tp-font-step-2 .menu-shell,
body.tp-font-step-2 .accessibility-drawer {
    --tp-access-font-scale: 1.4 !important;
}

body.tp-font-step-3 .menu-shell,
body.tp-font-step-3 .accessibility-drawer {
    --tp-access-font-scale: 1.6 !important;
}

/* Keep accessibility drawer fully inside viewport */
.accessibility-drawer {
    width: min(430px, 94vw) !important;
    max-width: 94vw !important;
    overflow: hidden !important;
}

.accessibility-drawer-header {
    position: sticky;
    top: 0;
    z-index: 2;
    align-items: flex-start !important;
    padding: 1rem !important;
    gap: .75rem !important;
    background: inherit;
}

.accessibility-drawer-header > div {
    min-width: 0 !important;
    flex: 1 1 auto !important;
}

.accessibility-drawer-header h2 {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    line-height: 1.12 !important;
}

.accessibility-close-button {
    flex: 0 0 40px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* At largest font size, protect drawer header and controls */
body.tp-font-step-3 .accessibility-drawer {
    width: min(460px, 96vw) !important;
    max-width: 96vw !important;
}

body.tp-font-step-3 .accessibility-drawer-header {
    padding: .9rem !important;
}

body.tp-font-step-3 .accessibility-close-button {
    flex-basis: 42px !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
}

body.tp-font-step-3 .accessibility-drawer-header h2 {
    font-size: clamp(1.45rem, 7vw, 2.15rem) !important;
}

/* Prevent option buttons from overflowing */
.font-size-options {
    min-width: 0 !important;
}

.font-size-options button {
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
}

/* On small phones, keep drawer layout safe */
@media (max-width: 420px) {
    .accessibility-drawer {
        width: 96vw !important;
    }

    .accessibility-drawer-header {
        padding: .85rem !important;
    }

    .accessibility-drawer-body {
        padding: .75rem !important;
    }

    .accessibility-option-group {
        padding: .85rem !important;
    }

    body.tp-font-step-3 .accessibility-drawer-header h2 {
        font-size: 1.75rem !important;
    }
}

/* Fix product modal header: keep price away from close button */
.product-dialog {
    padding-top: 1rem !important;
}

.product-dialog .dialog-close,
.product-dialog [data-dialog-close],
.product-dialog button[aria-label*="Close"],
.product-dialog button[aria-label*="Κλείσιμο"] {
    position: absolute !important;
    top: .9rem !important;
    right: .9rem !important;
    z-index: 5 !important;
}

.dialog-header,
.product-dialog-header {
    padding-right: 4.5rem !important;
}

.dialog-price,
.product-dialog .price,
.product-dialog [data-dialog-price] {
    display: inline-flex !important;
    margin-right: 4.25rem !important;
    max-width: calc(100% - 5rem) !important;
    white-space: nowrap !important;
}

@media (max-width: 520px) {
    .dialog-header,
    .product-dialog-header {
        padding-right: 3.8rem !important;
    }

    .dialog-price,
    .product-dialog .price,
    .product-dialog [data-dialog-price] {
        margin-right: 3.75rem !important;
        max-width: calc(100% - 4.4rem) !important;
    }
}

/* Mobile quickbar above bottom navigation */
.mobile-quickbar {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: calc(76px + env(safe-area-inset-bottom));
    z-index: 9998;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .35rem;
    padding: .38rem;
    border-radius: 18px;
    background: rgba(200, 155, 60, .96);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 -10px 32px rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
}

.mobile-quickbar a {
    min-width: 0;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .28rem;
    border-radius: 14px;
    color: #111;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
}

.mobile-quickbar a:hover,
.mobile-quickbar a:focus-visible {
    background: rgba(255,255,255,.24);
}

.mobile-quickbar a span:first-child {
    font-size: 1rem;
}

/* Add enough bottom spacing for quickbar + bottom nav */
@media (max-width: 1023px) {
    .menu-shell {
        padding-bottom: 10rem !important;
    }
}

@media (min-width: 1024px) {
    .mobile-quickbar {
        display: none !important;
    }
}

body.tp-light-mode .mobile-quickbar {
    background: rgba(200, 155, 60, .96);
    color: #111;
}

/* Compact category/filter rail */
.tools-panel {
    overflow: hidden !important;
}

.filter-list,
.filters,
.category-filters,
.chip-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: .45rem !important;
    padding: .25rem .05rem .65rem !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.filter-list::-webkit-scrollbar,
.filters::-webkit-scrollbar,
.category-filters::-webkit-scrollbar,
.chip-list::-webkit-scrollbar {
    height: 4px;
}

.filter-list::-webkit-scrollbar-thumb,
.filters::-webkit-scrollbar-thumb,
.category-filters::-webkit-scrollbar-thumb,
.chip-list::-webkit-scrollbar-thumb {
    background: rgba(200,155,60,.45);
    border-radius: 999px;
}

.filter-chip,
.toggle-chip {
    flex: 0 0 auto !important;
    min-height: 38px !important;
    padding: .55rem .78rem !important;
    border-radius: 999px !important;
    font-size: .84rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    scroll-snap-align: start;
}

@media (max-width: 899px) {
    .tools-panel {
        padding: .9rem !important;
        border-radius: 22px !important;
    }

    .tools-panel h2,
    .tools-panel h3,
    .search-title {
        font-size: 1.05rem !important;
        margin-bottom: .6rem !important;
    }

    .search-box input {
        min-height: 48px !important;
        font-size: .95rem !important;
    }

    .filter-chip,
    .toggle-chip {
        min-height: 36px !important;
        padding: .5rem .68rem !important;
        font-size: .78rem !important;
    }
}

/* Legal notes at end of menu */
.menu-legal-notes {
    margin: 1.5rem 0 6rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.035);
}

.menu-legal-notes h2 {
    margin: 0 0 .6rem;
    color: var(--tp-accent);
    font-size: .92rem !important;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.menu-legal-notes ul {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: .32rem;
}

.menu-legal-notes li {
    color: rgba(255,255,255,.58);
    font-size: .68rem !important;
    line-height: 1.35;
}

body.tp-light-mode .menu-legal-notes {
    background: rgba(255,255,255,.7);
    border-color: rgba(45,34,20,.12);
}

body.tp-light-mode .menu-legal-notes li {
    color: rgba(27,23,18,.62);
}

/* Hide top shortcut until user scrolls */
.mobile-quickbar [data-scroll-top] {
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .18s ease, transform .18s ease;
}

body.has-scrolled .mobile-quickbar [data-scroll-top] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* FINAL compact category navigator */
.category-navigator-panel {
    margin: .75rem 0 .55rem;
    display: grid;
    gap: .35rem;
}

.category-navigator-panel label {
    color: var(--tp-accent);
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.category-navigator-control {
    position: relative;
}

.category-navigator-control select {
    width: 100%;
    min-height: 48px;
    appearance: none;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.055);
    color: #fff;
    padding: 0 2.7rem 0 1rem;
    font-size: .96rem;
    font-weight: 850;
    outline: none;
}

.category-navigator-control span {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tp-accent);
    font-size: 1.1rem;
    pointer-events: none;
}

.category-navigator-control select:focus-visible {
    outline: 3px solid var(--tp-accent);
    outline-offset: 2px;
}

/* Hide old bulky category chips, keep Δημοφιλή / Vegan */
.legacy-category-chip-hidden {
    display: none !important;
}

/* Make remaining filter row compact */
.filter-list,
.filters,
.category-filters,
.chip-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .45rem !important;
    padding-top: .45rem !important;
}

.filter-chip,
.toggle-chip {
    min-height: 36px !important;
    padding: .45rem .68rem !important;
    font-size: .78rem !important;
    border-radius: 999px !important;
}

/* Hide the entire yellow quickbar until user scrolls */
.mobile-quickbar {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(14px) !important;
    transition: opacity .18s ease, transform .18s ease !important;
}

body.has-scrolled .mobile-quickbar {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* Since the quickbar is hidden initially, avoid huge empty bottom gap at top */
@media (max-width: 1023px) {
    .menu-shell {
        padding-bottom: 8.5rem !important;
    }

    body.has-scrolled .menu-shell {
        padding-bottom: 10rem !important;
    }
}

/* Prevent background page from drifting when product modal is open */
body.product-modal-open {
    overflow: hidden;
}

/* Product modal price/header fix */
.product-dialog {
    position: fixed !important;
}

.product-dialog .dialog-close,
.product-dialog [data-dialog-close],
.product-dialog button[aria-label*="Close"],
.product-dialog button[aria-label*="Κλείσιμο"] {
    position: absolute !important;
    top: .9rem !important;
    right: .9rem !important;
    z-index: 10 !important;
}

.product-dialog h2,
.product-dialog .dialog-title,
.product-dialog [data-dialog-title] {
    padding-right: 4rem !important;
    max-width: calc(100% - 4rem) !important;
}

.product-dialog .dialog-price,
.product-dialog [data-dialog-price],
.product-dialog .price {
    font-size: .95rem !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    color: var(--tp-accent) !important;
    margin-right: 4rem !important;
    max-width: calc(100% - 4.5rem) !important;
    white-space: nowrap !important;
}

/* Make modal price match outside product price under accessibility scaling */
body.tp-font-step-2 .product-dialog .dialog-price,
body.tp-font-step-2 .product-dialog [data-dialog-price],
body.tp-font-step-2 .product-dialog .price {
    font-size: calc(.95rem * 1.4) !important;
}

body.tp-font-step-3 .product-dialog .dialog-price,
body.tp-font-step-3 .product-dialog [data-dialog-price],
body.tp-font-step-3 .product-dialog .price {
    font-size: calc(.95rem * 1.6) !important;
}

/* Light mode support for category navigator */
body.tp-light-mode .category-navigator-control select {
    background: #fff;
    color: #1b1712;
    border-color: rgba(45,34,20,.16);
}

@media (max-width: 520px) {
    .product-dialog h2,
    .product-dialog .dialog-title,
    .product-dialog [data-dialog-title] {
        padding-right: 3.5rem !important;
        max-width: calc(100% - 3.5rem) !important;
    }

    .product-dialog .dialog-price,
    .product-dialog [data-dialog-price],
    .product-dialog .price {
        margin-right: 3.5rem !important;
        max-width: calc(100% - 4rem) !important;
    }
}

/* Product search dropdown */
.product-search-wrapper {
    position: relative;
    z-index: 50;
}

.product-search-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + .45rem);
    z-index: 80;
    max-height: min(420px, 62vh);
    overflow-y: auto;
    padding: .45rem;
    border-radius: 18px;
    background: rgba(14, 15, 15, .98);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 22px 60px rgba(0,0,0,.55);
    backdrop-filter: blur(14px);
}

.product-search-result {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #fff;
    text-align: left;
    padding: .78rem .85rem;
    display: grid;
    gap: .2rem;
}

.product-search-result:hover,
.product-search-result:focus-visible {
    background: rgba(200,155,60,.14);
    outline: 2px solid rgba(200,155,60,.55);
}

.product-search-result-title {
    font-weight: 950;
    font-size: .95rem;
    line-height: 1.15;
}

.product-search-result-description {
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-search-result-price {
    color: var(--tp-accent);
    font-weight: 950;
    font-size: .86rem;
}

.product-search-empty {
    padding: .9rem;
    color: rgba(255,255,255,.66);
    font-size: .9rem;
}

body.tp-light-mode .product-search-dropdown {
    background: rgba(255,255,255,.98);
    border-color: rgba(45,34,20,.14);
}

body.tp-light-mode .product-search-result {
    color: #1b1712;
}

body.tp-light-mode .product-search-result-description {
    color: rgba(27,23,18,.62);
}

body.tp-light-mode .product-search-empty {
    color: rgba(27,23,18,.62);
}

/* Product card layout: title left, price right, details in footer */
.product-open {
    position: relative !important;
}

.product-content {
    display: grid !important;
    gap: .45rem !important;
    min-width: 0 !important;
}

.product-content h3,
.product-open h3 {
    padding-right: 5.6rem !important;
    margin-bottom: .12rem !important;
    line-height: 1.16 !important;
}

/* Pull price to top-right of product card */
.product-open > .price,
.product-open .product-footer .price,
.product-open .price {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    color: var(--tp-accent) !important;
    font-weight: 950 !important;
    font-size: .95rem !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/* Footer becomes details location */
.product-footer {
    margin-top: .35rem !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.details-link {
    color: rgba(255,255,255,.72) !important;
    font-size: .82rem !important;
    font-weight: 850 !important;
    text-decoration: none !important;
}

.details-link::before {
    content: "Λεπτομέρειες";
    display: inline;
}

.details-link {
    font-size: 0 !important;
}

.details-link::before {
    font-size: .82rem !important;
}

/* If no details link exists but footer is empty, keep cards clean */
.product-footer:empty::after {
    content: "Λεπτομέρειες";
    color: rgba(255,255,255,.72);
    font-size: .82rem;
    font-weight: 850;
}

/* Accessibility scaling price */
body.tp-font-step-2 .product-open .price {
    font-size: calc(.95rem * 1.4) !important;
}

body.tp-font-step-3 .product-open .price {
    font-size: calc(.95rem * 1.6) !important;
}

body.tp-light-mode .details-link,
body.tp-light-mode .product-footer:empty::after {
    color: rgba(27,23,18,.62) !important;
}

@media (max-width: 420px) {
    .product-content h3,
    .product-open h3 {
        padding-right: 4.7rem !important;
    }

    .product-open .price {
        right: .85rem !important;
        top: .9rem !important;
        font-size: .88rem !important;
    }
}

/* Disable old fixed body modal lock that caused jump-to-top */
body.product-modal-open {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
}

body.product-modal-open-soft {
    overflow: hidden !important;
}

/* FINAL product autocomplete dropdown */
.product-search-wrapper-final {
    position: relative !important;
    z-index: 200 !important;
}

.product-search-dropdown-final {
    position: absolute !important;
    top: calc(100% + .45rem) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    max-height: min(460px, 64vh) !important;
    overflow-y: auto !important;
    padding: .45rem !important;
    border-radius: 18px !important;
    background: rgba(12,13,13,.985) !important;
    border: 1px solid rgba(255,255,255,.14) !important;
    box-shadow: 0 24px 70px rgba(0,0,0,.62) !important;
    backdrop-filter: blur(14px);
}

.product-search-result-final {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #fff;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .18rem .65rem;
    padding: .75rem .85rem;
}

.product-search-result-final:hover,
.product-search-result-final:focus-visible {
    background: rgba(200,155,60,.14);
    outline: 2px solid rgba(200,155,60,.48);
}

.product-search-result-final .ps-title {
    min-width: 0;
    font-size: .95rem;
    font-weight: 950;
    line-height: 1.15;
}

.product-search-result-final .ps-price {
    color: var(--tp-accent);
    font-size: .88rem;
    font-weight: 950;
    white-space: nowrap;
}

.product-search-result-final .ps-description {
    grid-column: 1 / -1;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-search-empty-final {
    padding: .85rem;
    color: rgba(255,255,255,.65);
    font-size: .9rem;
}

body.tp-light-mode .product-search-dropdown-final {
    background: rgba(255,255,255,.985) !important;
    border-color: rgba(45,34,20,.14) !important;
}

body.tp-light-mode .product-search-result-final {
    color: #1b1712;
}

body.tp-light-mode .product-search-result-final .ps-description,
body.tp-light-mode .product-search-empty-final {
    color: rgba(27,23,18,.62);
}

/* Manual expandable category sections */
.category-section-toggle {
    cursor: pointer;
    position: relative;
    padding-right: 2.2rem;
}

.category-section-toggle::after {
    content: "⌄";
    position: absolute;
    right: .2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tp-accent);
    font-size: 1.2rem;
    line-height: 1;
}

.category-section.category-collapsed .category-section-toggle::after {
    content: "›";
}

.category-section-toggle:focus-visible {
    outline: 3px solid var(--tp-accent);
    outline-offset: 4px;
    border-radius: 12px;
}

/* Search dropdown must not be clipped by tools/category panels */
.tools-panel,
.product-search-wrapper-final,
.product-search-wrapper {
    overflow: visible !important;
}

.product-search-dropdown-final,
.product-search-dropdown {
    position: fixed !important;
    z-index: 20000 !important;
    max-height: min(430px, 58vh) !important;
}

/* Variant products show "Από" before outside-card price */
.product-open[data-has-variants="1"] .price::before {
    content: "Από ";
    font-size: .74em;
    font-weight: 850;
    color: rgba(255,255,255,.72);
}

body.tp-light-mode .product-open[data-has-variants="1"] .price::before {
    color: rgba(27,23,18,.62);
}

/* Remove earlier pseudo-details duplication */
.details-link::before {
    content: none !important;
}

.details-link {
    font-size: .82rem !important;
}

/* Remove repeated menu title inside category cards */
.category-section .eyebrow,
.category-section .section-eyebrow,
.category-section .menu-eyebrow {
    display: none !important;
}

/* FINAL product finder panel */
.product-finder-wrapper {
    position: relative !important;
    z-index: 300 !important;
    overflow: visible !important;
}

.product-finder-panel {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + .55rem) !important;
    z-index: 30000 !important;
    max-height: min(520px, 68vh);
    overflow-y: auto;
    border-radius: 20px;
    background: rgba(11,12,12,.99);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 24px 80px rgba(0,0,0,.65);
    padding: .55rem;
}

.product-finder-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .45rem .55rem .65rem;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
}

.product-finder-head button {
    border: 0;
    border-radius: 999px;
    padding: .4rem .65rem;
    background: rgba(200,155,60,.18);
    color: var(--tp-accent);
    font-weight: 900;
    font-size: .72rem;
}

.product-finder-results {
    display: grid;
    gap: .35rem;
}

.product-finder-result {
    width: 100%;
    border: 0;
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    color: #fff;
    padding: .78rem .85rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .22rem .75rem;
    text-align: left;
}

.product-finder-result:hover,
.product-finder-result:focus-visible {
    background: rgba(200,155,60,.14);
    outline: 2px solid rgba(200,155,60,.55);
}

.pf-main {
    min-width: 0;
    display: grid;
    gap: .16rem;
}

.pf-title {
    font-weight: 950;
    font-size: .94rem;
    line-height: 1.16;
}

.pf-meta {
    color: var(--tp-accent);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.pf-price {
    color: var(--tp-accent);
    font-weight: 950;
    font-size: .88rem;
    white-space: nowrap;
}

.pf-desc {
    grid-column: 1 / -1;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-finder-empty {
    padding: .9rem;
    color: rgba(255,255,255,.66);
    font-size: .9rem;
}

body.tp-light-mode .product-finder-panel {
    background: rgba(255,255,255,.99);
    border-color: rgba(45,34,20,.14);
}

body.tp-light-mode .product-finder-result {
    background: rgba(45,34,20,.045);
    color: #1b1712;
}

body.tp-light-mode .pf-desc,
body.tp-light-mode .product-finder-empty,
body.tp-light-mode .product-finder-head {
    color: rgba(27,23,18,.66);
}

.product-open[data-has-variants="1"] .price::before {
    content: "Από " !important;
    font-size: .76em !important;
    font-weight: 900 !important;
    color: rgba(255,255,255,.72) !important;
}

body.tp-light-mode .product-open[data-has-variants="1"] .price::before {
    color: rgba(27,23,18,.62) !important;
}

/* Absolute final modal lock */
html.tp-product-modal-locked-html {
    overflow: hidden !important;
    scroll-behavior: auto !important;
}

body.tp-product-modal-locked {
    overflow: hidden !important;
    touch-action: none;
    overscroll-behavior: none;
}

body.tp-product-modal-locked .product-dialog {
    overscroll-behavior: contain;
}

/* Neutralize broken modal body fixed lock */
body.tp-product-modal-locked,
body.product-modal-open,
body.product-modal-open-soft {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
}

html.tp-product-modal-locked-html {
    overflow: auto !important;
}

/* WCAG skip links */
.skip-links {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 50000;
    display: grid;
    gap: .35rem;
}

.skip-links a {
    position: absolute;
    transform: translateY(-180%);
    min-width: max-content;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: var(--tp-accent);
    color: #111;
    font-weight: 950;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0,0,0,.32);
}

.skip-links a:focus {
    position: relative;
    transform: translateY(0);
    outline: 3px solid #fff;
    outline-offset: 3px;
}

/* Accessible category accordion heading */
.category-heading-button {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    cursor: pointer;
}

.category-heading-button::after {
    content: "⌄";
    flex: 0 0 auto;
    color: var(--tp-accent);
    font-size: 1.2rem;
    line-height: 1;
}

.category-section.category-collapsed .category-heading-button::after {
    content: "›";
}

.category-heading-button:focus-visible {
    outline: 3px solid var(--tp-accent);
    outline-offset: 6px;
    border-radius: 12px;
}

/* Strong focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--tp-accent) !important;
    outline-offset: 3px !important;
}

/* Avoid focus being hidden behind sticky bottom nav */
.product-open,
.category-section,
.tools-panel,
.menu-legal-notes {
    scroll-margin-top: 120px;
    scroll-margin-bottom: 160px;
}

/* Remove old duplicate accordion arrows */
.category-section-toggle::after {
    content: none !important;
}

/* Final category accordion visual behavior */
.category-a11y-panel[hidden] {
    display: none !important;
}

.category-section.category-collapsed > :not(.section-heading):not(h2):not(.category-section-toggle) {
    display: none !important;
}

.category-heading-button {
    width: 100% !important;
    border: 0 !important;
    background: transparent !important;
    color: inherit !important;
    font: inherit !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.category-heading-button::after {
    content: "⌄" !important;
    flex: 0 0 auto;
    color: var(--tp-accent);
    font-size: 1.25rem;
    line-height: 1;
}

.category-section.category-collapsed .category-heading-button::after {
    content: "›" !important;
}

.category-heading-button:focus-visible {
    outline: 3px solid var(--tp-accent) !important;
    outline-offset: 6px !important;
    border-radius: 12px;
}

/* Smaller repeated menu label inside category sections */
.category-section .eyebrow,
.category-section .section-eyebrow,
.category-section .menu-eyebrow,
.category-section [class*="eyebrow"] {
    display: block !important;
    font-size: .54rem !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
    opacity: .58 !important;
    margin-bottom: .35rem !important;
    color: rgba(255,255,255,.52) !important;
}

@media (max-width: 899px) {
    .category-section .eyebrow,
    .category-section .section-eyebrow,
    .category-section .menu-eyebrow,
    .category-section [class*="eyebrow"] {
        font-size: .48rem !important;
        margin-bottom: .25rem !important;
    }
}

body.tp-light-mode .category-section .eyebrow,
body.tp-light-mode .category-section .section-eyebrow,
body.tp-light-mode .category-section .menu-eyebrow,
body.tp-light-mode .category-section [class*="eyebrow"] {
    color: rgba(27,23,18,.48) !important;
}

/* Screen-reader-only helper */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* MASTER category accordion visual state */

/* Kill older duplicated arrows */
.category-heading-button::after,
.category-section-toggle::after {
    content: none !important;
}

/* Hide content when collapsed */
.category-master-content[hidden],
.category-section.category-collapsed > .category-master-content {
    display: none !important;
}

/* Button heading */
.category-heading-button-master {
    width: 100% !important;
    border: 0 !important;
    background: transparent !important;
    color: inherit !important;
    font: inherit !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    padding: 0 !important;
    cursor: pointer !important;
}

/* Single arrow only */
.category-heading-button-master::after {
    content: "›" !important;
    flex: 0 0 auto;
    color: var(--tp-accent);
    font-size: 1.25rem;
    line-height: 1;
    transform: rotate(0deg);
}

.category-heading-button-master[aria-expanded="true"]::after {
    content: "⌄" !important;
}

/* Focus visibility */
.category-heading-button-master:focus-visible {
    outline: 3px solid var(--tp-accent) !important;
    outline-offset: 6px !important;
    border-radius: 12px;
}

/* Screen-reader-only live region */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* HARD FINAL category accordion visuals */

/* Hide old duplicate arrows */
.category-heading-button::after,
.category-heading-button-master::after,
.category-section-toggle::after {
    content: none !important;
}

/* Final content panel visibility */
.tp-category-panel-final[hidden],
.tp-category-closed-final > .tp-category-panel-final {
    display: none !important;
}

.tp-category-open-final > .tp-category-panel-final {
    display: block !important;
}

/* Final category heading button */
.tp-category-button-final {
    width: 100% !important;
    border: 0 !important;
    background: transparent !important;
    color: inherit !important;
    font: inherit !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    padding: 0 !important;
    cursor: pointer !important;
}

.tp-category-button-final::after {
    content: "›" !important;
    flex: 0 0 auto;
    color: var(--tp-accent);
    font-size: 1.3rem;
    line-height: 1;
}

.tp-category-button-final[aria-expanded="true"]::after {
    content: "⌄" !important;
}

.tp-category-button-final:focus-visible {
    outline: 3px solid var(--tp-accent) !important;
    outline-offset: 6px !important;
    border-radius: 12px;
}

/* Prevent old accordion wrappers from forcing display state */
.category-a11y-panel,
.category-master-content {
    display: contents;
}

/* Screen-reader-only live region */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Internal GR/EN switcher */
.internal-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .2rem;
    border-radius: 999px;
    background: rgba(0,0,0,.38);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

.internal-language-switcher a {
    min-width: 34px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
}

.internal-language-switcher a.active {
    background: var(--tp-accent);
    color: #111;
}

@media (max-width: 899px) {
    .header-utility-controls {
        gap: .35rem !important;
    }

    .internal-language-switcher a {
        min-width: 30px;
        height: 28px;
        font-size: .62rem;
    }
}

body.tp-light-mode .internal-language-switcher {
    background: rgba(255,255,255,.72);
    border-color: rgba(45,34,20,.14);
}

body.tp-light-mode .internal-language-switcher a {
    color: #1b1712;
}

body.tp-light-mode .internal-language-switcher a.active {
    color: #111;
}

/* Remove repeated "Κύριο Μενού" from each category card */
.category-section .eyebrow,
.category-section .section-eyebrow,
.category-section .menu-eyebrow,
.category-section [class*="eyebrow"] {
    display: none !important;
}

/* Follow us expandable bottom nav item */
.follow-us-nav-item {
    position: relative;
    display: grid;
    place-items: center;
}

.mobile-bottom-nav .follow-us-nav-item {
    min-width: 0;
    min-height: 52px;
    align-content: center;
    justify-items: center;
    border-radius: 14px;
    color: rgba(255,255,255,.58);
}

.follow-us-toggle {
    border: 0;
    background: transparent;
    color: inherit;
    display: grid;
    gap: .15rem;
    place-items: center;
    font: inherit;
    padding: .35rem;
}

.mobile-bottom-nav .follow-us-toggle {
    width: 100%;
    min-height: 52px;
    padding: .28rem .05rem;
    border-radius: 14px;
}

.mobile-bottom-nav .follow-us-toggle:hover,
.mobile-bottom-nav .follow-us-toggle:focus-visible {
    color: rgba(255,255,255,.86);
    background: rgba(255,255,255,.055);
}

.mobile-bottom-nav .follow-us-toggle:focus-visible {
    outline: 2px solid var(--tp-accent);
    outline-offset: -2px;
}

.follow-us-toggle span:first-child {
    font-size: 1.1rem;
    color: var(--tp-accent);
}

.follow-us-toggle span:last-child {
    font-size: .62rem;
    font-weight: 800;
}

.follow-us-popover {
    position: absolute;
    bottom: calc(100% + .75rem);
    right: 0;
    min-width: 150px;
    padding: .45rem;
    border-radius: 16px;
    background: rgba(14,15,15,.98);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
    display: grid;
    gap: .25rem;
}

.follow-us-popover a,
.follow-us-empty {
    min-height: 36px;
    padding: .55rem .75rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #fff;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 850;
}

.follow-us-popover a:hover,
.follow-us-popover a:focus-visible {
    background: rgba(200,155,60,.16);
}

.follow-us-empty {
    color: rgba(255,255,255,.62);
}

body.tp-light-mode .follow-us-popover {
    background: #fff;
    border-color: rgba(45,34,20,.14);
}

body.tp-light-mode .follow-us-popover a,
body.tp-light-mode .follow-us-empty {
    color: #1b1712;
}

body.tp-light-mode .mobile-bottom-nav .follow-us-nav-item,
html.tp-light-mode .mobile-bottom-nav .follow-us-nav-item {
    color: rgba(27,23,18,.68);
}

body.tp-light-mode .mobile-bottom-nav .follow-us-toggle:hover,
body.tp-light-mode .mobile-bottom-nav .follow-us-toggle:focus-visible,
html.tp-light-mode .mobile-bottom-nav .follow-us-toggle:hover,
html.tp-light-mode .mobile-bottom-nav .follow-us-toggle:focus-visible {
    color: #1b1712;
    background: rgba(45,34,20,.06);
}

/* Early theme class support: prevents dark-to-light flash */
html.tp-light-mode,
html.tp-light-mode body {
    background: #f6f0e6 !important;
    color: #1b1712 !important;
}

html.tp-light-mode body {
    color-scheme: light;
}

/* Mirror the main light-mode behavior when class is on html before body exists */
html.tp-light-mode .hero,
html.tp-light-mode .menu-shell,
html.tp-light-mode .tools-panel,
html.tp-light-mode .category-section,
html.tp-light-mode .product-open,
html.tp-light-mode .restaurant-info-card,
html.tp-light-mode .menu-legal-notes {
    background-color: rgba(255,255,255,.72);
    color: #1b1712;
}

html.tp-light-mode .product-open,
html.tp-light-mode .category-section,
html.tp-light-mode .tools-panel {
    border-color: rgba(45,34,20,.14);
}

html.tp-light-mode input,
html.tp-light-mode select,
html.tp-light-mode textarea {
    background: rgba(255,255,255,.92);
    color: #1b1712;
    border-color: rgba(45,34,20,.16);
}

html.tp-light-mode .filter-chip,
html.tp-light-mode .toggle-chip,
html.tp-light-mode .category-navigator-control select {
    background: rgba(255,255,255,.9);
    color: #1b1712;
    border-color: rgba(45,34,20,.16);
}

html.tp-light-mode .mobile-bottom-nav,
html.tp-light-mode .mobile-quickbar,
html.tp-light-mode .desktop-menu-nav,
html.tp-light-mode .internal-language-switcher,
html.tp-light-mode .header-utility-controls button {
    color: #1b1712;
}

/* Keep hero/cover intro branded and readable even in automatic light mode */
html.tp-light-mode .hero,
html.tp-light-mode body.tp-light-mode .hero,
body.tp-light-mode .hero {
    color: #fff !important;
}

html.tp-light-mode .hero h1,
html.tp-light-mode .hero .hero-title,
html.tp-light-mode .hero .hero-description,
html.tp-light-mode .hero p,
html.tp-light-mode .hero .eyebrow,
html.tp-light-mode .hero .brand-name,
body.tp-light-mode .hero h1,
body.tp-light-mode .hero .hero-title,
body.tp-light-mode .hero .hero-description,
body.tp-light-mode .hero p,
body.tp-light-mode .hero .eyebrow,
body.tp-light-mode .hero .brand-name {
    color: #fff !important;
}

html.tp-light-mode .hero .eyebrow,
body.tp-light-mode .hero .eyebrow {
    color: var(--tp-accent) !important;
}

html.tp-light-mode .hero .brand,
html.tp-light-mode .hero .brand a,
html.tp-light-mode .hero .brand span,
body.tp-light-mode .hero .brand,
body.tp-light-mode .hero .brand a,
body.tp-light-mode .hero .brand span {
    color: #fff !important;
}

/* Keep hero background dark/covered, not white card style */
html.tp-light-mode .hero,
body.tp-light-mode .hero {
    background-color: #050606 !important;
}

/* Top utility controls remain readable on hero */
html.tp-light-mode .hero .theme-toggle-button,
html.tp-light-mode .hero .accessibility-open-button,
body.tp-light-mode .hero .theme-toggle-button,
body.tp-light-mode .hero .accessibility-open-button {
    background: rgba(0,0,0,.48) !important;
    color: #fff !important;
    border-color: rgba(255,255,255,.18) !important;
}

html.tp-light-mode .hero .internal-language-switcher,
body.tp-light-mode .hero .internal-language-switcher {
    background: rgba(0,0,0,.38) !important;
    border-color: rgba(255,255,255,.16) !important;
}

html.tp-light-mode .hero .internal-language-switcher a,
body.tp-light-mode .hero .internal-language-switcher a {
    color: #fff !important;
}

html.tp-light-mode .hero .internal-language-switcher a.active,
body.tp-light-mode .hero .internal-language-switcher a.active {
    color: #111 !important;
}

/* Desktop container centering */
@media (min-width: 1024px) {
    .hero-inner,
    .tools-panel,
    .category-navigator-panel,
    .category-section,
    .restaurant-info-card,
    .menu-legal-notes {
        width: min(1180px, calc(100vw - 96px));
        max-width: 1180px;
        margin-left: auto;
        margin-right: auto;
    }
}
