/* Seek & Go Currency Popup Styles */
.seek-currency-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.seek-currency-popup-overlay.seek-visible {
    opacity: 1;
    visibility: visible;
}

.seek-currency-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 600px;
    height: 512px;

    border: 2px solid #CCCCCC;
    transform: rotate(0deg);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', sans-serif;
    /* Assuming Inter or theme font */
    text-align: center;
    position: relative;
}

.seek-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: url('close-btn.png') no-repeat center center;
    background-size: contain;
    width: 20px;
    height: 20px;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.seek-popup-close:hover {
    opacity: 1;
    background-color: transparent;
}

.seek-popup-title {
    font-size: 24px;
    font-weight: 500;
    color: #444444;
}

.seek-popup-text {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.seek-popup-info-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.seek-popup-info-item {
    margin: 25px 0;
}

.seek-currency-selector-wrapper {
    margin-bottom: 25px;
}

.seek-currency-select {
    width: 100%;
    padding: 12px;
    padding-right: 32px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #f9f9f9;
    box-shadow: 0px 3.79px 9.47px 0px #00000040;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.42375 5.48799C1.26375 5.65866 1.18908 5.86132 1.19975 6.09599C1.21042 6.33066 1.30642 6.52799 1.48775 6.68799L7.42375 11.92C7.59442 12.0587 7.78642 12.128 7.99975 12.128C8.21308 12.128 8.40508 12.0587 8.57575 11.92L14.5117 6.68799C14.6931 6.52799 14.7891 6.33066 14.7997 6.09599C14.8104 5.86132 14.7384 5.65599 14.5837 5.47999C14.4291 5.30399 14.2317 5.21066 13.9917 5.19999C13.7517 5.18932 13.5464 5.25866 13.3757 5.40799L7.99975 10.144L2.62375 5.40799C2.45308 5.25866 2.24775 5.18932 2.00775 5.19999C1.76775 5.21066 1.57308 5.30666 1.42375 5.48799Z' fill='%23444444'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.seek-popup-btn {
    display: inline-block;
    width: 100%;
    max-height: 48px;
    padding: 14px;
    background-color: #FF8200;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.seek-popup-btn:hover {
    background-color: #FF8200;
}

@media (max-width: 600px) {
    .seek-currency-popup-content {
        padding: 10px;
        height: 574px;
    }
    .seek-popup-close {
        top: 6px;
        right: 0px;
    }

    .seek-currency-popup-overlay.seek-visible {
        padding-left: 12px;
        padding-right: 12px;
    }

    .seek-popup-text {
        font-size: 14px;
    }

    .seek-currency-selector-wrapper {
        margin-top: 25px;
    }
}