.menu-tabs {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 32px var(--gutter);
    box-sizing: border-box;
    background: var(--accent);
}

.menu-tab {
    display: inline-block;
    font-family: var(--font-title);
    font-size: clamp(10px, 1.2vw, 15px);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: clamp(10px, 1.2vw, 14px) clamp(16px, 1.8vw, 22px);
    border-radius: 999px;
    background: var(--bg2);
    color: var(--text);
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.menu-tab:hover,
.menu-tab.is-active {
    background: var(--bg2);
    color: var(--accent2);
    text-shadow: 0 0 6px rgba(255,255,255,.55), 0 0 14px rgba(255,255,255,.35);
    transform: translateY(-2px);
}
/* ----- Section header ----- */
.drink,
.snack {
    padding: 48px var(--gutter) 56px;
    box-sizing: border-box;
}

.drink {
    background: var(--bg);
}

.snack {
    background: var(--bg2);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
    gap: 4px;
}

.section-header p {
    font-size: clamp(10px, 0.9vw, 13px);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent2);
    font-family: var(--font-title);
    margin: 0;
    opacity: 0.85;
    font-weight: 500;
}

.section-header h2 {
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 0 28px rgba(127, 168, 160, 0.40);
}

.section-badge {
    display: inline-block;
    font-family: var(--font-title);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--text);
    opacity: 0.65;
    margin-top: 6px;
}

/* ----- Grid cartes ----- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ----- Carte ----- */
.menu_card {
    border-radius: var(--radius);
    border: var(--border);
    border-top: 2px solid var(--accent);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.drink .menu_card {
    background: var(--bg2);
}

.snack .menu_card {
    background: var(--bg);
}

.menu_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2), 0 0 24px rgba(127, 168, 160, 0.20);
}

.menu_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}

.menu_card:hover img {
    transform: scale(1.04);
}

.card_content {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-name {
    font-size: clamp(14px, 1.3vw, 18px);
    margin: 0 0 8px;
    line-height: 1.3;
    color: var(--text);
}

.card_content > p {
    font-size: clamp(12px, 1vw, 15px);
    color: var(--text);
    opacity: 0.75;
    margin: 0 0 14px;
    line-height: 1.55;
}

/* ----- Risque ----- */
.risk {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.risk p {
    font-size: clamp(10px, 0.85vw, 13px);
    color: var(--accent2);
    font-style: italic;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.risk p svg {
    font-size: 13px;
    opacity: 0.75;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-radiation path {
    fill: var(--accent2);
}

/* ----- Section cachée (filtre JS) ----- */
.drink[hidden],
.snack[hidden] {
    display: none !important;
}

/* ----- Responsive ----- */

.menu-tabs-select option {
    background: #1A2E2B;
    color: white;
    font-family: var(--font-title);
    text-align: center;
}