.pll-custom-switcher {
    position: relative;
    display: inline-block;
    font-family: inherit;
    z-index: 9999;
}

.pll-selected {
    cursor: pointer;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: inherit;
    white-space: nowrap;
}

.pll-selected i {
    font-size: 16px;
    transition: transform 0.2s;
}

.pll-custom-switcher.open .pll-selected i {
    transform: rotate(180deg);
}

.pll-list {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    list-style: none;
    margin: 4px 0 0;
    padding: 4px 0;
    min-width: 110px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pll-custom-switcher.open .pll-list {
    display: block;
}

.pll-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    transition: background 0.15s;
}

.pll-list li a:hover {
    background: #f5f5f5;
}

.pll-list li.current a {
    font-weight: 600;
    color: #000;
}

@media (max-width: 768px) {
    .pll-custom-switcher {
        display: none;
    }
}

/* ── Geo Popup ────────────────────────────────────────────── */
.pll-popup-modal {
    background: #ffffff;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(4, 43, 134, 0.08);
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.pll-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: #6e7a75;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 50%;
    transition: background 0.15s;
}

.pll-popup-close:hover {
    background: #f3f4f5;
}

.pll-popup-body {
    padding: 32px;
}

.pll-popup-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #042b86;
    margin: 0 0 8px;
    line-height: 1.3;
}

.pll-popup-subtitle {
    font-size: 0.875rem;
    color: #6e7a75;
    margin: 0 0 24px;
}

.pll-popup-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pll-popup-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(189, 201, 196, 0.3);
    background: #ffffff;
    text-decoration: none;
    color: #042b86;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s;
}

.pll-popup-option:hover {
    background: #f3f4f5;
    border-color: #56BAA4;
    color: #042b86;
    text-decoration: none;
}

.pll-popup-flag {
    font-size: 1.4rem;
    line-height: 1;
}

.pll-popup-label {
    flex: 1;
}

.pll-popup-arrow {
    color: #56BAA4;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.pll-popup-option:hover .pll-popup-arrow {
    opacity: 1;
}

.pll-popup-continue {
    display: block;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: center;
    font-size: 0.875rem;
    color: #6e7a75;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(86, 186, 164, 0.4);
    text-underline-offset: 4px;
    transition: color 0.2s;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}

.pll-popup-continue:hover,
.pll-popup-continue:focus,
.pll-popup-continue:active {
    color: #042b86;
    outline: none;
    background: none;
    box-shadow: none;
}

.pll-popup-continue:hover {
    color: #042b86;
}

.pll-popup-bar {
    height: 6px;
    background: linear-gradient(135deg, #006b5a, #56BAA4);
}

@media (max-width: 480px) {
    .pll-popup-body {
        padding: 24px;
    }
    .pll-popup-title {
        font-size: 1.2rem;
    }
}
