/* Language switcher — public restaurant header (works with Canvas + Bootstrap utilities) */
.restaurant-lang-switcher-wrap {
    flex-shrink: 0;
}

.restaurant-lang-switcher {
    display: inline-flex;
    align-items: stretch;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
}

.restaurant-lang-switcher__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.92) !important;
    border: none;
    background: transparent;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}

.restaurant-lang-switcher__btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
}

.restaurant-lang-switcher__btn--active {
    background: rgba(255, 255, 255, 0.95);
    color: #222 !important;
    cursor: default;
    pointer-events: none;
}

/* When header is not transparent (sticky solid), keep contrast */
.sticky-header .restaurant-lang-switcher,
#header.sticky-header .restaurant-lang-switcher {
    border-color: rgba(0, 0, 0, 0.12);
    background: rgba(0, 0, 0, 0.04);
}

.sticky-header .restaurant-lang-switcher__btn,
#header.sticky-header .restaurant-lang-switcher__btn {
    color: #333 !important;
}

.sticky-header .restaurant-lang-switcher__btn:hover,
#header.sticky-header .restaurant-lang-switcher__btn:hover {
    background: rgba(0, 0, 0, 0.06);
}

.sticky-header .restaurant-lang-switcher__btn--active,
#header.sticky-header .restaurant-lang-switcher__btn--active {
    background: #c59d5f;
    color: #fff !important;
}
