/* Drinks menu — organized sections, catalog panels, grouped cards */

.drm-page .drm-dine-banner {
    background: rgba(30, 58, 95, 0.4);
    border-color: rgba(96, 165, 250, 0.35);
}

.drm-menu {
    --drm-blue: #3b82f6;
    --drm-blue-soft: rgba(59, 130, 246, 0.14);
    --drm-panel: rgba(20, 24, 36, 0.72);
    --drm-panel-border: rgba(255, 255, 255, 0.1);
}

.drm-nav {
    position: sticky;
    top: 4.5rem;
    z-index: 40;
    padding: 0.75rem clamp(1rem, 3vw, 2rem) 1rem;
    margin: 0 auto;
    max-width: 76rem;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.92) 70%, rgba(18, 18, 18, 0));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.drm-nav .fdm-nav__link {
    font-size: 0.72rem;
    padding: 0.48rem 0.95rem;
}

.drm-nav .fdm-nav__link:hover {
    background: var(--drm-blue-soft);
    border-color: rgba(59, 130, 246, 0.35);
}

.drm-section + .drm-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: clamp(2rem, 4vw, 3rem);
}

/* ─── Subsection headers (juices, mocktails, blended) ─── */
.drm-subsection {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.drm-subsection:last-child {
    margin-bottom: 0;
}

.drm-subsection__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem 1rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(245, 158, 11, 0.22);
}

.drm-subsection__title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f59e0b;
}

.drm-subsection__note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* ─── Image card grids ─── */
.drm-grid--cards {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
}

.drm-card .fdm-card__media::after {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.78) 0%, transparent 55%);
}

.drm-price-unit {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.03em;
    text-transform: lowercase;
}

/* ─── Catalog panels (wines, beers, spirits) ─── */
.drm-catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.drm-catalog-panel {
    display: flex;
    flex-direction: column;
    border-radius: 1.25rem;
    overflow: hidden;
    background: var(--drm-panel);
    border: 1px solid var(--drm-panel-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.drm-catalog-panel__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.drm-catalog-panel__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.drm-catalog-panel__body {
    padding: 1rem 1.1rem 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.drm-catalog-panel__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.85rem;
}

.drm-catalog-panel__head h3 {
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.drm-catalog-panel__note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.drm-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.drm-menu-list__row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.drm-menu-list__main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.drm-menu-list__name {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
}

.drm-menu-list__price {
    font-size: 0.78rem;
    font-weight: 700;
    color: #f59e0b;
    white-space: nowrap;
}

.drm-menu-list__price small {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: lowercase;
}

.drm-menu-list__action {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 600;
    color: #25d366;
    text-decoration: none;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.25);
    transition: background 0.2s, transform 0.2s;
}

.drm-menu-list__action:hover {
    background: rgba(37, 211, 102, 0.18);
    transform: translateY(-1px);
}

.drm-cta-strip {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.55), rgba(139, 26, 43, 0.45));
}

@media (min-width: 900px) {
    .drm-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .drm-section#section-wines .drm-catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .drm-nav {
        top: 3.75rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

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

    .drm-nav .fdm-nav__link {
        flex-shrink: 0;
    }
}
