/* Modern digital menu */

html {
    scroll-behavior: smooth;
}

.menu-page {
    background: #141413;
    min-height: 100vh;
    padding: 12px 0 16px;
    color: #f3efe4;
}

.menu-hero {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto 12px;
    text-align: center;
}

.menu-hero__eyebrow {
    margin: 0 0 8px;
    color: #e8c547;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.menu-hero__title {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.menu-cats {
    position: relative;
    width: 100%;
    margin: 8px 0 12px;
}

.menu-cats .owl-carousel {
    position: relative;
}

.menu-cat {
    display: block;
    color: inherit;
}

.menu-cat__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 6px;
}

.menu-cat__name {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    margin: 0;
    padding: 0 10px;
    border: 1px solid rgba(232, 197, 71, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-cat:hover .menu-cat__name {
    background: #e8c547;
    border-color: #e8c547;
    color: #1a180f;
}

.menu-cats .owl-nav {
    display: block;
    pointer-events: none;
}

.menu-cats .owl-prev,
.menu-cats .owl-next {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    float: none;
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none;
    opacity: 1;
    font-size: 0;
    line-height: 0;
    transform: translateY(-50%);
}

.menu-cats .owl-prev {
    left: 0;
}

.menu-cats .owl-next {
    right: 0;
}

.menu-cats .owl-prev:hover,
.menu-cats .owl-next:hover {
    background: transparent !important;
    background-image: none !important;
}

.menu-cats .owl-prev span,
.menu-cats .owl-next span {
    display: none !important;
}

.menu-cats .owl-prev::before,
.menu-cats .owl-next::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2.5px solid #e8c547;
    border-right: 2.5px solid #e8c547;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.85));
}

.menu-cats .owl-prev::before {
    margin-left: 3px;
    transform: rotate(-135deg);
}

.menu-cats .owl-next::before {
    margin-right: 3px;
    transform: rotate(45deg);
}

.menu-cats .owl-prev:hover::before,
.menu-cats .owl-next:hover::before {
    border-color: #fff;
}

.menu-cats.is-hinting .owl-next {
    animation: menu-cats-arrow-hint 0.75s ease-in-out 3;
}

@keyframes menu-cats-arrow-hint {
    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-cats.is-hinting .owl-next {
        animation: none;
    }
}

.menu-sections {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.menu-section {
    scroll-margin-top: 16px;
    padding: 28px 0 8px;
}

.menu-section:last-child {
    padding-bottom: 0;
}

.menu-section__title {
    margin: 0 0 18px;
    padding: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
}

.menu-grid {
    display: grid;
    gap: 12px;
}

.menu-card {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    background: #1d1d1b;
    min-width: 0;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
    border-color: rgba(232, 197, 71, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.menu-card__media {
    position: relative;
    align-self: stretch;
    width: 140px;
    min-height: 140px;
    overflow: hidden;
    border-radius: 0;
    background: #2a2a27;
}

.menu-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #e8c547;
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(160deg, #2c2a22, #1f1e1b);
}

.menu-card__body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 10px 12px 10px 0;
}

.menu-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.menu-card__name {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.menu-card__price {
    margin: 0;
    color: #e8c547;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.menu-card__desc {
    margin: 6px 0 0;
    color: #b7b2a6;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    min-height: calc(1.45em * 2);
}

.menu-card__desc--empty {
    visibility: hidden;
}

.menu-card__meta {
    margin-top: auto;
    padding-top: 8px;
    color: #8f8a7e;
    font-size: 12px;
    font-weight: 500;
}

@media (min-width: 768px) {
    .menu-page {
        padding-top: 16px;
    }

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

    .menu-card {
        display: flex;
        flex-direction: column;
        padding: 0 0 16px;
        overflow: hidden;
    }

    .menu-card:hover {
        transform: translateY(-3px);
    }

    .menu-card__media {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
        border-radius: 0;
    }

    .menu-card__media img {
        position: absolute;
        inset: 0;
    }

    .menu-card__body {
        padding: 14px 16px 0;
        flex: 1;
        height: auto;
    }

    .menu-card__name {
        font-size: 18px;
    }
}

@media (min-width: 1100px) {
    .menu-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
