@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background: #fae8e8;
    min-height: 100vh;
}

main {
    padding: 32px 16px 60px;
}

.inner {
    max-width: 3000px;
    margin: 0 auto;
    padding: 0 32px;
}


.menu-title {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 4px;
}

.title-line {
    width: 44px;
    height: 3px;
    background: #c0392b;
    border-radius: 2px;
    margin: 0 auto 10px;
}

.menu-sub {
    text-align: center;
    color: #777;
    font-size: .9rem;
    margin-bottom: 28px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.tab {
    padding: 8px 24px;
    border-radius: 999px;
    border: 1.5px solid #ccc;
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    color: #444;
    transition: all .18s;
}

.tab.active {
    background: #c0392b;
    border-color: #c0392b;
    color: white;
}

.tab:hover:not(.active) {
    border-color: #c0392b;
    color: #c0392b;
}

.cat-block {
    background: white;
    border-radius: 14px;
    padding: 24px 24px 20px;
    margin-bottom: 24px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}

.cat-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 8px;
}

.cat-line {
    border: none;
    border-top: 1.5px solid #e8c0c0;
    margin-bottom: 18px;
}

.items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 560px) {
    .items-grid {
        grid-template-columns: 1fr;
    }
}

.item-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item {
    background: #fdf0f0;
    border: 1.5px solid #f5d5d5;
    border-radius: 10px;
    padding: 14px 16px;
    position: relative !important;
    cursor: pointer;
}

.item-name {
    font-weight: 700;
    font-size: .93rem;
    color: #111;
    margin-bottom: 3px;
}

.item-desc {
    font-size: .79rem;
    color: #999;
    margin-bottom: 6px;
}

.item-price {
    font-weight: 700;
    font-size: .9rem;
    color: #c0392b;
}

.incart {
    font-size: .73rem;
    color: #27a355;
    font-weight: 600;
    margin-top: 3px;
}

.add-btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #c0392b;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.35);
    transition: background .15s, transform .1s;
}

.add-btn:hover {
    background: #a93226;
    transform: scale(1.08);
}

.add-btn:active {
    transform: scale(0.94);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.drink {
    background: #fdf0f0;
    border: 1.5px solid #f5d5d5;
    border-radius: 10px;
    padding: 14px 12px 12px;
}

.drink-name {
    font-weight: 700;
    font-size: .92rem;
    color: #111;
    margin-bottom: 3px;
}

.drink-price {
    font-size: .85rem;
    font-weight: 700;
    color: #c0392b;
    margin-bottom: 10px;
}

.drink-btn {
    width: 100%;
    padding: 8px 0;
    background: #c0392b;
    color: white;
    border: none;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .83rem;
    cursor: pointer;
    transition: background .15s;
}

.drink-btn:hover {
    background: #a93226;
}

.drink-incart {
    text-align: center;
    font-size: .75rem;
    color: #27a355;
    font-weight: 600;
    margin-top: 5px;
}

.hidden {
    display: none;
}

.winkelwagenAlerts {
    color:red;

}