.epgcs-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    min-height: 38px;
    padding: 3px;
    border: 1px solid rgba(18, 58, 120, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 5px 16px rgba(18, 58, 120, 0.07);
    backdrop-filter: blur(8px);
}

.epgcs-switcher__option {
    min-width: 46px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 999px;
    color: #46617f;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.epgcs-switcher__option:hover {
    color: #0d3b77;
}

.epgcs-switcher__option.is-active {
    color: #fff;
    background: linear-gradient(135deg, #0d326a 0%, #15549d 100%);
    box-shadow: 0 5px 12px rgba(13, 59, 119, 0.20);
}

.epgcs-switcher__option.is-disabled {
    color: #9ba9b8;
    cursor: not-allowed;
}

.epgcs-switcher__divider {
    display: none;
}

.epgcs-switcher--mobile {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
    min-height: 46px;
    border-radius: 14px;
}

.epgcs-switcher--mobile .epgcs-switcher__option {
    flex: 1 1 50%;
    min-height: 36px;
}

@media (max-width: 767px) {
    .epgcs-switcher--header {
        display: none;
    }
}
