/* World2Door Currency Converter Header Dropdown Styles */

.w2d-currency-dropdown-wrap {
    display: inline-flex;
    align-items: center;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.w2d-currency-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.w2d-currency-dropdown .w2d-currency-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #1f2937 !important;
    font-weight: 600;
    font-size: 13.5px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.w2d-currency-dropdown .w2d-currency-dropdown-btn::after {
    display: none !important;
}

.w2d-currency-dropdown .w2d-currency-dropdown-btn:hover,
.w2d-currency-dropdown .w2d-currency-dropdown-btn:focus,
.w2d-currency-dropdown .w2d-currency-dropdown-btn.show {
    background-color: rgba(0, 0, 0, 0.05) !important;
    color: #111827 !important;
}

.w2d-flag-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.w2d-currency-dropdown .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    border-radius: 12px !important;
    padding: 6px 0 0 0;
    overflow: hidden !important;
    z-index: 1050 !important;
    min-width: 100% !important;
}

.w2d-currency-dropdown .dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}

.w2d-currency-dropdown .dropdown-menu.show {
    animation: w2dDropdownSlideUp 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.w2d-currency-opt-btn {
    display: flex;
    align-items: center;
    padding: 7px 16px;
    color: #2b303a;
    transition: background-color 0.15s ease, color 0.15s ease;
    border: none;
    width: 100%;
    background: transparent;
    text-align: left;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
    user-select: none;
}

.w2d-currency-opt-btn:hover {
    background-color: #f5f2eb;
    color: #07aa41;
}

.w2d-currency-opt-btn.active {
    background-color: #e6f9ed;
    color: #07aa41;
    font-weight: 700 !important;
}

.w2d-currency-notice-banner {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}

.w2d-currency-notice-banner i {
    color: #07aa41;
    font-size: 15px;
}

/* Bottom-to-Top Slide Opening Transition */
@keyframes w2dDropdownSlideUp {
    0% {
        opacity: 0;
        margin-top: 14px;
    }
    100% {
        opacity: 1;
        margin-top: 4px;
    }
}






