@font-face {
    font-family: 'Fontatica4F';
    src: url('fontatica/Fontatica4F.woff2') format('woff2'),
         url('fontatica/Fontatica4F.woff') format('woff'),
         url('fontatica/Fontatica4F.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-body: #111;
    --bg-black: #111;
    --bg-white: #ffffff;
    --bg-hover: #141414;
    --bg-active: #0e0e0e;
    --bg-topbar: rgba(0, 0, 0, 0.92);
    --bg-backdrop: rgba(0, 0, 0, 0.72);
    --bg-modal-dark: #181818;
    --bg-modal-close: rgba(0, 0, 0, 0.55);
    --bg-search: rgba(255, 255, 255, 0.08);
    --bg-wine: #f0f0f0;

    --text-white: #fff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --text-placeholder: rgba(255, 255, 255, 0.58);
    --text-dark: #111;
    --text-dark-muted: rgba(17, 17, 17, 0.82);
    --text-light-muted: rgba(255, 255, 255, 0.82);

    --brand-red: #b91818;
    --brand-red-95: rgba(185, 24, 24, 0.95);
    --brand-red-85: rgba(185, 24, 24, 0.85);
    --brand-red-68: rgba(185, 24, 24, 0.68);
    --brand-red-22: rgba(185, 24, 24, 0.22);
    --brand-red-0: rgba(185, 24, 24, 0);

    --transparent: transparent;

    --border-light: rgba(255, 255, 255, 0.18);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-active: rgba(255, 255, 255, 0.02);
    --border-neumorph: rgba(255, 255, 255, 0.04);
    --border-dark-muted: rgba(17, 17, 17, 0.12);
    --border-light-muted: rgba(255, 255, 255, 0.12);
    --border-brown: brown;

    --shadow-search: 0 12px 24px rgba(0, 0, 0, 0.28);
    --shadow-search-focus: 0 0 0 3px var(--brand-red-22);
    --shadow-white: 2px 0px 6px rgba(255, 255, 255, 0.58), -6px 2px 14px rgba(255, 255, 255, 0.32);
    --shadow-white-2: 0 0 14px rgba(255, 255, 255, 0.08), -6px -6px 14px rgba(255, 255, 255, 0.12);
    --shadow-neumorph: 9px 9px 18px #000000, -9px -9px 18px rgba(255, 255, 255, 0.24);
    --shadow-neumorph-hover: 12px 12px 24px #000000, -12px -12px 24px rgba(255, 255, 255, 0.07);
    --shadow-neumorph-active: inset 6px 6px 12px #000000, inset -6px -6px 12px rgba(255, 255, 255, 0.04);
    --shadow-modal: 0 20px 50px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

*,
html,
body {
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-body);
    color: var(--text-white);
}

body.modal-open {
    overflow: hidden;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: var(--text-white);
}

#main {
    padding: 24px 0 48px;
}

#navbar.special-case {
    display: none;
}

#navbar.special-case.sticky {
    display: inline-flex;
}

.restaurant-name~a>h5 {
    margin-bottom: 1em;
    color: white !important;
}

.menu-header {
    background-color: var(--bg-black);
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    width: min(100%, 768px);
    margin: 0 auto 24px;
    padding: 12px 16px;
    background: var(--bg-topbar);
    backdrop-filter: blur(12px);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.back-button {
    border: 0;
    background: var(--transparent);
    color: var(--text-white);
    cursor: pointer;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.back-icon {
    width: 28px;
    height: 28px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-inline: auto;
}

.search-toggle {
    border: 0;
    background: var(--brand-red-95);
    color: var(--text-white);
    width: 62px;
    height: 44px;
    padding: 0;
    border-radius: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    box-shadow: var(--shadow-search);
}

.search-icon {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-search-wrap {
    margin-top: 12px;
}

.menu-search {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: var(--bg-search);
    color: var(--text-white);
    padding: 12px 14px;
    font-size: 1rem;
    outline: none;
}

.menu-search::placeholder {
    color: var(--text-placeholder);
}

.menu-search:focus {
    border-color: var(--brand-red-85);
    box-shadow: var(--shadow-search-focus);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

h1,
p {
    text-align: center;
}

.main-categories-link {
    width: auto;
    overflow: hidden;
    color: var(--text-white);
}

.category.swiper-slide.active .main-categories-link {
    background-color: var(--brand-red) !important;
    color: var(--text-white) !important;
    border-radius: 18px;
    padding: 6px 12px;
}

li.category {
    width: fit-content !important;
}

#categories {
    margin-block: 32px;
    padding: 14px;
}

.category-nav {
    width: min(100%, 768px);
    margin: 0 auto 28px;
    padding: 0 16px;
}

.category-nav-title {
    margin-bottom: 14px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

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

.category-button {
    text-decoration: none;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    transition: all 0.15s ease;
    color: var(--text-dark) !important;
    box-shadow:
        -1px -1px 15px rgba(255, 255, 255, 0.5),
        3px 3px 15px rgba(100, 100, 100, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}

.category-image img {
    width: 60px;
    object-fit: contain;
    padding: 8px;
}

.category-button-label {
    font-size: 1rem;
    font-weight: 700;
}

.category-button:hover,
.category-button:focus-visible {
    background: #f8f8f8;
    color: var(--text-dark);
    outline: none;
    box-shadow:
        -1px 0px 7px rgba(255, 255, 255, 0.55),
        5px 7px 5px rgba(255, 254, 255, 0.4);
    transform: translateY(-2px);
}

.category-button:active {
    background: #e8e8e8;
    color: var(--text-dark);
    box-shadow:
        inset 5px 5px 12px rgba(0, 0, 0, 0.15),
        inset -5px -5px 12px rgba(255, 255, 255, 0.9);
    transform: translateY(2px) scale(0.98);
}

.main {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    /* padding-inline: 16px; */
    background-color: var(--bg-black);
}

#menu-wrap {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    padding-inline: 16px;
    background-color: var(--bg-black);
    box-sizing: border-box;
}

.category-title {
    position: relative;
    padding-top: 28px;
    padding-bottom: 24px;
    margin-block: 24px;
    /* background-image: url(category-bg.svg); */
    /* background-size: 100%;
    background-repeat: no-repeat; */
    /* border-top: 10px solid rgb(0, 188, 63); */
    border-top-right-radius: 90px;
    font-size: 2.75em;
}

.category-title-text {
    display: block;
}

.category-title-banner {
    font-size: 1rem;
    font-weight: normal;
    margin-top: 16px;
    margin-bottom: 12px;
}

.category-title-banner img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    box-shadow: -1px -1px 15px rgba(255, 255, 255, 0.5), 3px 3px 15px rgba(100, 100, 100, 0.5);
}

.category-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgb(0, 188, 63);
    border-radius: 90px;
}

.category-wrap {
    scroll-margin-top: 108px;
    padding-inline: 18px;
}

.category-placeholder {
    padding: 20px 0 8px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.grid-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    color: var(--text-white);
}

.grid-items .item {
    position: relative;
    min-width: 0;
    display: inline-flex;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
    height: auto;
    /* overflow: hidden; */
    cursor: pointer;
}

.grid-items .item:focus-visible {
    outline: 3px solid var(--text-white);
    outline-offset: 6px;
}

.item-name {
    text-align: center;
}

.item-img {
    display: flex;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.wine-matcher {
    position: absolute;
    top: -4px;
    right: -4px;
    display: flex;
    width: 55px;
    height: 55px;
    padding: 4px;
    background-color: var(--bg-wine);
    border-radius: 50%;
    border: 1px solid var(--border-brown);
    z-index: 10;
}

.wine-matcher img {
    min-width: unset;
    width: 100%;
    display: flex;
    object-fit: contain;
    min-height: unset;
    max-height: unset;
}

.grid-items .item .card-img {
    width: 100%;
    min-width: 0;
    max-width: 375px;
    height: auto !important;
    aspect-ratio: 1.522 !important;
    object-fit: cover;
}

.item-details {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    z-index: 0;
}

.item-prices {
    display: flex;
    /* height: 50px; */
    /* background-image: url(assets/images/bottom-svg.svg); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.item-price {
    position: relative;
    width: 100%;
    display: flex;
    align-items: end;
    padding-inline: 0px;
    z-index: 1;
}

.item-prices .item-price:only-child {
    width: 50%;
    margin-left: auto;
    justify-content: flex-end;
    border-bottom-right-radius: 0;
}

.item-prices:has(.item-price:only-child) {
    background-size: 200% 100%;
    background-position: right top;

}

.item-prices .item-price:only-child .price-bg {
    margin-left: auto;
    text-align: right;
    width: 100%;
}

.price-bg {
    display: block;
    position: relative;
    width: 100%;
    padding-inline: 10px;
    padding-block: 8px;
    font-size: 1em;
}

.price-left .price-bg {
    background: linear-gradient(to right, rgba(0, 130, 45, 0.95) 40%, rgba(0, 130, 45, 0) 100%);
    border-radius: 35px;
    border-top-left-radius: 0;
    text-align: left;
}

.price-right .price-bg {
    background: linear-gradient(to left, rgba(0, 130, 45, 0.95) 40%, rgba(0, 130, 45, 0) 100%);
    border-radius: 35px;
    border-top-right-radius: 0;
    text-align: right;
}

.item-sizes {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    /* padding: 0 10px 6px; */
}

.item-weight {
    display: inline-block;
    min-width: 104px;
    max-width: 136px;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: lowercase;
    padding: 4px 16px;
}

.item-weight.size-left {
    background: linear-gradient(to right, var(--brand-red-85) 40%, var(--brand-red-0) 100%);
    /* border-radius: 35px; */
    border-bottom-left-radius: 0;
}

.item-weight.size-right {
    text-align: right;
    margin-left: auto;
    background: linear-gradient(to left, var(--brand-red-85) 40%, var(--brand-red-0) 100%);
    /* border-radius: 35px; */
    /* border-bottom-right-radius: 0; */
}

.item-sizes .item-weight:only-child {
    text-align: right;
    margin-left: auto;
    background: linear-gradient(to left, var(--brand-red-85) 40%, var(--brand-red-0) 100%);
    /* border-radius: 35px; */
    /* border-bottom-right-radius: 0; */
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--bg-backdrop);
}

/* Old modal design
.modal-content{
    position: relative;
    width: min(100%, 480px);
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-modal-dark);
    color: var(--text-white);
    box-shadow: var(--shadow-modal);
}
.modal-close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--bg-modal-close);
    color: var(--text-white);
    font-size: 1.75rem;
    cursor: pointer;
}
.modal-image{
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.modal-body{
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
}
.modal-body h3,
.modal-description,
.modal-meta{
    text-align: left;
}
.modal-description{
    color: var(--text-light-muted);
    line-height: 1.5;
}
.modal-meta{
    font-size: 1rem;
}
.modal-price{
    font-weight: 700;
}
*/
.modal-content {
    position: relative;
    width: min(100%, 780px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.670);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--text-dark);
    box-shadow: var(--shadow-modal);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

.modal-close {
    display: grid;
    place-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-red);
    color: var(--text-white);
    font-size: 1.75rem;
    cursor: pointer;
    z-index: 2;
}

.modal-image {
    display: block;
    width: 100%;
    max-width: 760px;
    max-height: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.modal-title-v2,
.modal-summary,
.modal-meta {
    text-align: left;
}

.modal-title-v2 {
    padding-left: 48px !important;
    padding-right: 48px !important;
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.modal-prices .modal-summary-weight {
    width: 100% !important;
    text-align: inherit !important;
}

.modal-image-wrap {
    padding: 0 8px;
}

.modal-summary {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 0 12px;
}

.modal-summary-weight {
    font-weight: 700;
    color: var(--text-dark);
    width: 33%;
    text-align: right;
    line-height: 1.55;
    white-space: nowrap;
}

.modal-summary-text {
    font-weight: 400;
    color: var(--text-dark-muted);
    width: 67%;
    text-align: left;
    line-height: 1.55;
}

.modal-meta {
    font-size: 1.25rem;
}

.modal-price {
    font-weight: 700;
}

.modal-prices {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}

.modal-prices .modal-price+.modal-price::before {
    /* content: '/'; */
    margin: 0 6px;
    font-weight: 400;
    opacity: 0.5;
}

.modal-price-v2 {
    padding-top: 8px;
    border-top: 1px solid var(--border-dark-muted);
}

@media (max-width: 640px) {
    .modal-title-v2 {
        font-size: 1.25rem !important;
        padding-left: 44px !important;
        padding-right: 44px !important;
    }

    .topbar {
        margin-bottom: 16px;
    }

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

    .grid-items {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 12px;
    }

    .modal-content {
        max-height: calc(100vh - 24px);
    }

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


/* .item-prices .price-left .price-bg::before, .item-prices .price-right .price-bg::before{
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background: url(assets/images/qrmenu-black.svg);
    background-size: 320px 45px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
}
.item-prices .price-right .price-bg::before{
    transform: scale(1);
} */

#language {
    background-color: var(--bg-black);
    color: var(--text-white);
    border: 1px solid var(--brand-red);
    border-radius: 18px;
    height: 38px;
    padding: 0 10px;
    cursor: pointer;
    outline: none;
}

.menu-tabs {
    background-color: var(--bg-black) !important;
}

.menu-tabs .cat-link {
    color: var(--text-white) !important;
}

.menu-tabs .active .cat-link,
.menu-tabs .category-item.active .cat-link,
.menu-tabs .swiper-slide.active .cat-link {
    background-color: var(--brand-red) !important;
    color: var(--text-white) !important;
    border-radius: 6px;
    padding: 6px 12px;
}

.restaurant-name {
    display: none !important;
}

/* --- Landing Cover Styles --- */
:root {
    --landing-page-ratio: 0.625; /* 900 x 1440 PDF ratio */
    --landing-page-width: min(96vw, 680px);
    --landing-page-height: calc(var(--landing-page-width) / var(--landing-page-ratio));
    --landing-red: #ed0808;
    --landing-deep-red: #a80000;
}

@media (min-width: 600px) {
    :root {
        --landing-page-width: min(92vw, 850px);
    }
}

body.landing-active #menu-tab.main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #111 !important;
}

body.landing-active .landing-cover {
    display: flex !important;
}

body.landing-active .restaurant-img-name,
body.landing-active #navbar,
body.landing-active #categories,
body.landing-active .category-wrap,
body.landing-active .menu-footer {
    display: none !important;
}

.landing-cover {
    display: none;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 24px 12px;
    background: #111;
    box-sizing: border-box;
    width: 100%;
}

.menu-page--cover {
    position: relative;
    width: var(--landing-page-width);
    height: var(--landing-page-height);
    margin: auto;
    overflow: hidden;
    background-image: url("front-page/assets/menu-background.png");
    background-size: 100% calc(100% + 10px);
    background-position: center bottom;
    box-shadow: 0 18px 52px rgba(0, 0, 0, .55);
}

.menu-nav {
    position: absolute;
    left: 35.1%;
    top: 42.5%;
    width: 29.8%;
    display: grid;
    gap: 8%;
    z-index: 3;
}

.menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--landing-page-height) * .059);
    border-radius: calc(var(--landing-page-width) * .027);
    background: linear-gradient(180deg, #f31616 0%, #e80404 58%, #d20000 100%);
    color: var(--text-white) !important;
    text-decoration: none;
    font-size: clamp(20px, calc(var(--landing-page-width) * .046), 54px);
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-align: center;
    text-shadow: 0 2px 1px rgba(0, 0, 0, .32);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .12),
        0 10px 18px rgba(0, 0, 0, .18);
    font-family: 'Fontatica4F', "Arial Narrow", "Impact", "Roboto Condensed", Arial, sans-serif;
    transition: transform 0.1s ease, filter 0.1s ease;
}

.menu-button:active {
    transform: scale(0.98);
    filter: brightness(0.9);
}

.menu-button--dark {
    background: linear-gradient(180deg, #c90000 0%, var(--landing-deep-red) 100%);
}

.menu-nav .menu-button:nth-child(1) {
    background: #af0404 !important;
}

.menu-nav .menu-button:nth-child(2) {
    background: #d10707 !important;
}

.menu-nav .menu-button:nth-child(3) {
    background: #ed1212 !important;
}

@media (max-width: 480px) {
    .landing-cover {
        padding: 14px 8px;
    }
}