/* Country Selection Popup Modal */
.farmdeck-country-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.farmdeck-country-popup.show {
    opacity: 1;
    visibility: visible;
}

.farmdeck-country-popup-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.farmdeck-country-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    padding: 0;
}

.farmdeck-country-popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.farmdeck-country-popup-icon {
    margin-bottom: 20px;
}

.farmdeck-country-popup-icon svg {
    width: 90px;
    height: 100px;
}

.farmdeck-country-popup h2 {
    color: #0A2540;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
}

.farmdeck-country-select-wrapper {
    position: relative;
}

.farmdeck-country-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    background: white;
    color: #333;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.farmdeck-country-select:focus {
    outline: none;
    border-color: #66c008;
    box-shadow: 0 0 0 3px rgba(102, 192, 8, 0.1);
}

.farmdeck-country-select option {
    padding: 12px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .farmdeck-country-popup {
        padding: 15px;
    }

    .farmdeck-country-popup-content {
        padding: 30px 20px;
        max-width: 95%;
    }

    .farmdeck-country-popup h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .farmdeck-country-popup-icon svg {
        width: 70px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .farmdeck-country-popup-content {
        padding: 25px 15px;
    }

    .farmdeck-country-popup h2 {
        font-size: 22px;
    }

    .farmdeck-country-select {
        padding: 14px 16px;
        font-size: 15px;
    }
}