.custom-menu-wrapper {
    max-width: 600px;
    margin: 0 auto;
    font-family: system-ui, Arial, sans-serif;
}
.custom-menu-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
    text-align: center;
}
.custom-menu-tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin-bottom: 1.2rem;
    gap: 1.7rem;
    overflow-x: auto;
    scrollbar-width: thin;
}
.custom-menu-tab {
    display: inline-block;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    padding: .2rem 0 .7rem 0;
    border-bottom: 3px solid transparent;
    transition: border-color .18s;
    min-width: 90px;
    text-align: center;
    flex-shrink: 0;
    cursor: pointer;
}
.custom-menu-tab.active, .custom-menu-tab[aria-current="page"] {
    border-bottom: 3px solid #111;
    color: #111;
}
.custom-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}
.custom-menu-item {
    background: #fafbfc;
    border-radius: 10px;
    padding: 1rem 1.3rem;
    border: 2px solid transparent;
    box-shadow: 0 1px 5px rgba(0,0,0,0.03);
    transition: border .15s;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}
.custom-menu-item.highlight {
    border: 2px solid #212124;
}
.custom-menu-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px dotted #bbb;
    padding-bottom: .2rem;
    margin-bottom: .2rem;
}
.custom-menu-left {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.custom-menu-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 7px;
    margin-right: 1em;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #ddd;
}
.custom-menu-labels {
    display: flex;
    gap: 0.5em;
}
.custom-menu-label {
    background: #ededed;
    color: #333;
    border-radius: 6px;
    font-size: .82em;
    font-weight: 700;
    padding: 0.15em 0.65em;
}
.custom-menu-label-vegan { background: #a2e900; color: #1a4400; }
.custom-menu-label-spicy { background: #ffe0e0; color: #d8001a; }
.custom-menu-label-glutenfree { background: #ffe9b3; color: #b58900; }
.custom-menu-label-new {
    background: #e90056;
    color: #fff;
    font-size: .87em;
    font-weight: 700;
    border-radius: 6px;
    padding: 0.18em 0.7em;
    margin-right: 0.6em;
    display: inline-block;
}
.custom-menu-title-text {
    font-size: 1.13em;
    font-weight: 700;
    color: #1c1c1c;
    letter-spacing: -0.03em;
}
.custom-menu-price {
    font-weight: 700;
    color: #111;
    font-size: 1.06em;
    white-space: nowrap;
    margin-left: 1.2rem;
    position: relative;
}
.custom-menu-desc {
    color: #414042;
    font-size: 1em;
    margin-top: 2px;
    margin-left: 2px;
}
@media (max-width: 600px) {
    .custom-menu-wrapper { padding: 0 .3rem; }
    .custom-menu-title { font-size: 1.3rem; }
    .custom-menu-tabs {
        gap: 0.7rem;
        font-size: 1rem;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: thin;
    }
    .custom-menu-tab {
        font-size: 1rem;
        min-width: 90px;
        text-align: center;
        flex-shrink: 0;
    }
    .custom-menu-item { padding: .75rem .5rem; }
    .custom-menu-img { width: 38px; height: 38px; }
    .custom-menu-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
    }
    .custom-menu-price {
        margin-left: 0;
        margin-top: 0.2em;
        font-size: 1em;
    }
}