.drm-menu {
    --drm-border: #e7e2dc;
    --drm-text: #222;
    --drm-muted: #6e6e6e;
    --drm-accent: #8b2f20;
    color: var(--drm-text);
    width: 100%;
}

.drm-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.drm-filter {
    appearance: none;
    border: 1px solid var(--drm-border);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    line-height: 1;
    padding: 12px 18px;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.drm-filter:hover,
.drm-filter:focus-visible,
.drm-filter.is-active {
    background: var(--drm-accent);
    border-color: var(--drm-accent);
    color: #fff;
}

.drm-category {
    margin-bottom: 46px;
}

.drm-category[hidden] {
    display: none !important;
}

.drm-category-title {
    font-size: clamp(26px, 3vw, 38px);
    margin: 0 0 8px;
}

.drm-category-description {
    color: var(--drm-muted);
    margin-bottom: 20px;
}

.drm-category-description p:last-child {
    margin-bottom: 0;
}

.drm-items {
    border-top: 1px solid var(--drm-border);
}

.drm-item {
    align-items: flex-start;
    border-bottom: 1px solid var(--drm-border);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 20px 0;
}

.drm-item-name {
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 5px;
    padding: 0;
}

.drm-item-subtitle {
    color: var(--drm-muted);
    font-size: 15px;
    line-height: 1.5;
}

.drm-item-prices {
    min-width: 180px;
    text-align: right;
}

.drm-portion-prices {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
}

.drm-portion-price {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    min-width: 68px;
    white-space: nowrap;
}

.drm-portion-label {
    color: var(--drm-muted);
    display: block;
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.drm-price {
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
}

.drm-price-single {
    white-space: nowrap;
}

.drm-empty {
    border: 1px solid var(--drm-border, #e7e2dc);
    padding: 20px;
}

@media (max-width: 600px) {
    .drm-filters {
        flex-wrap: nowrap;
        gap: 8px;
        margin: 0 -16px 24px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 16px 8px;
        scroll-behavior: smooth;
        scroll-padding-inline: 16px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .drm-filters::-webkit-scrollbar {
        display: none;
    }

    .drm-filter {
        flex: 0 0 auto;
        font-size: 14px;
        line-height: 1.15;
        padding: 10px 15px;
        scroll-snap-align: start;
        white-space: nowrap;
    }

    .drm-category {
        margin-bottom: 32px;
    }

    .drm-category-title {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 7px;
    }

    .drm-category-description {
        font-size: 14px;
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .drm-item {
        gap: 9px;
        grid-template-columns: 1fr;
        padding: 16px 0;
    }

    .drm-item-name {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 3px;
    }

    .drm-item-subtitle {
        font-size: 13.5px;
        line-height: 1.45;
    }

    .drm-item-prices {
        min-width: 0;
        text-align: left;
    }

    .drm-portion-prices {
        justify-content: flex-start;
    }

    .drm-portion-prices {
        gap: 18px;
    }

    .drm-portion-price {
        align-items: flex-start;
        min-width: 58px;
    }

    .drm-portion-label {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .drm-price {
        font-size: 15.5px;
    }
}
