/* Region Popup Styles */
.region-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.region-popup-overlay.region-popup-hidden {
    opacity: 0;
    pointer-events: none;
}
.region-popup-container {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.region-popup-overlay.region-popup-hidden .region-popup-container {
    transform: translateY(-20px);
}
.region-popup-question {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}
.region-popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.region-popup-button {
    background: linear-gradient(135deg, #ffd200 0%, #cb9f25 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 100px;
}
.region-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
.region-popup-button:active {
    transform: translateY(0);
}
.region-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}
.region-popup-close:hover {
    background-color: #f0f0f0;
}
@media (max-width: 480px) {
    .region-popup-container {
        padding: 30px 20px;
        margin: 20px;
    }
    .region-popup-question {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .region-popup-buttons {
        flex-direction: column;
        align-items: center;
    }
    .region-popup-button {
        width: 100%;
        max-width: 200px;
    }
}
