/* EU Geo Redirect Popup Styles */

.eu-geo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eu-geo-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.eu-geo-popup-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 50px 60px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    text-align: center;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eu-geo-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 1;
    transition: color 0.2s;
    font-weight: 300;
}

.eu-geo-popup-close:hover {
    color: #333;
}

.eu-geo-popup-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.eu-geo-flag {
    font-size: 80px;
    line-height: 1;
}

.eu-geo-popup-title {
    font-size: 38px;
    font-weight: 400;
    margin: 0 0 25px 0;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

.eu-geo-popup-subtitle {
    font-size: 18px;
    margin: 0 0 12px 0;
    color: #000;
    font-weight: 400;
    text-align: center;
}

.eu-geo-popup-text {
    font-size: 15px;
    margin: 0 0 35px 0;
    color: #666;
    line-height: 1.5;
    text-align: center;
}

.eu-geo-popup-select-wrapper {
    margin-bottom: 35px;
}

.eu-geo-popup-select {
    width: 100%;
    padding: 18px 24px;
    font-size: 17px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M5 7l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 55px;
    font-weight: 400;
}

.eu-geo-popup-select:focus {
    outline: none;
    border-color: #000;
}

.eu-geo-popup-button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 35px;
}

.eu-geo-popup-button {
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: capitalize;
}

.eu-geo-popup-button:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.eu-geo-popup-button:active {
    transform: translateY(0);
}

/* Clear float for button container */
.eu-geo-popup-content::after {
    content: "";
    display: table;
    clear: both;
}

/* Country flag in select (optional enhancement) */
.country-flag {
    margin-right: 10px;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .eu-geo-popup-content {
        padding: 40px 25px;
        width: 95%;
    }
    
    .eu-geo-popup-close {
        top: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .eu-geo-popup-title {
        font-size: 28px;
    }
    
    .eu-geo-popup-subtitle {
        font-size: 16px;
    }
    
    .eu-geo-popup-text {
        font-size: 14px;
    }
    
    .eu-geo-popup-select {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .eu-geo-popup-button {
        font-size: 15px;
        padding: 14px 35px;
    }
    
    .eu-geo-popup-button-wrapper {
        justify-content: center;
    }
}
