/* ==========================================================================
   Viltgroen — Menu Page: Sidebar Nav, Categories, Items with Prices
   ========================================================================== */

.menu-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-48);
}

/* Sticky sidebar nav */
.menu-sidebar {
    position: static;
}

.menu-sidebar__nav {
    display: flex;
    overflow-x: auto;
    gap: var(--s-16);
    padding-bottom: var(--s-8);
    -webkit-overflow-scrolling: touch;
}

.menu-sidebar__link {
    display: block;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--c-text-dim);
    text-decoration: none;
    padding: var(--s-4) 0;
    border-bottom: 1px solid transparent;
    transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.menu-sidebar__link:hover,
.menu-sidebar__link.is-active {
    color: var(--c-white);
    border-color: var(--c-accent);
}

/* Menu content area */
.menu-content {
    display: flex;
    flex-direction: column;
    gap: var(--s-64);
}

/* Menu category */
.menu-category {
    scroll-margin-top: calc(var(--header-h) + var(--s-24));
}

.menu-category__title {
    font-family: var(--f-heading);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 300;
    color: var(--c-white);
    margin-bottom: var(--s-24);
    padding-bottom: var(--s-12);
    border-bottom: 1px solid var(--c-border);
}

/* Menu items */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: var(--s-16);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s-16);
    padding-bottom: var(--s-16);
    border-bottom: 1px solid rgba(45, 51, 59, 0.4);
}

.menu-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item__info {
    flex: 1;
}

.menu-item__name {
    font-family: var(--f-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--c-white);
    margin-bottom: var(--s-4);
}

.menu-item__desc {
    font-size: 0.8125rem;
    color: var(--c-text-dim);
}

.menu-item__price {
    font-family: var(--f-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--c-white);
    white-space: nowrap;
}

/* Menu note */
.menu-note {
    font-size: 0.8125rem;
    font-style: italic;
    color: var(--c-text-dim);
    margin-top: var(--s-16);
}

/* Dietary badges */
.menu-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1px 4px;
    border: 1px solid var(--c-accent);
    border-radius: var(--r-sm);
    color: var(--c-accent);
    margin-left: var(--s-4);
    vertical-align: super;
}

/* Subcategory title */
.menu-subcategory {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-steel);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--s-24);
    margin-bottom: var(--s-16);
}

/* Menu highlights (homepage) */
.menu-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--s-24);
    max-width: 600px;
    margin: 0 auto;
}

.menu-highlight {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--s-16);
    padding-bottom: var(--s-24);
    border-bottom: 1px solid var(--c-border);
}

.menu-highlight:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-highlight__name {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--c-white);
    margin-bottom: var(--s-4);
}

.menu-highlight__desc {
    font-size: 0.8125rem;
    color: var(--c-text-dim);
}

.menu-highlight__price {
    font-family: var(--f-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--c-white);
    white-space: nowrap;
}
