﻿body {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.currency-selection-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #be2239 0%, #7a4178 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.currency-selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(Images/hero-with-flower-01.svg);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    pointer-events: none;
}

.currency-selection-container {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 48px 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.currency-selection-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: none;
}

    .currency-selection-close:hover {
        color: #be2239;
    }

.currency-selection-header {
    text-align: center;
    margin-bottom: 32px;
}

.currency-selection-logo {
    margin-bottom: 24px;
}

    .currency-selection-logo img {
        max-width: 180px;
        height: auto;
    }

.currency-selection-title {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 600;
    color: #073b50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.currency-selection-subtitle {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    color: #666;
    margin: 0;
}

.currency-selection-section {
    margin-bottom: 32px;
}

.currency-selection-label {
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #073b50;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-selection-dropdown {
    position: relative;
}

.currency-selection-button {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    color: #073b50;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

    .currency-selection-button:hover {
        border-color: #be2239;
    }

    .currency-selection-button:focus {
        outline: none;
        border-color: #be2239;
        box-shadow: 0 0 0 3px rgba(190, 34, 57, 0.1);
    }

    .currency-selection-button.active {
        border-color: #be2239;
    }

.currency-selection-arrow {
    font-size: 12px;
    color: #be2239;
    transition: transform 0.3s ease;
}

.currency-selection-button.active .currency-selection-arrow {
    transform: rotate(180deg);
}

.currency-dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
}

    .currency-dropdown-menu-custom.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.currency-dropdown-list {
    padding: 8px 0;
}

.currency-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #073b50;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease;
    cursor: pointer;
}

    .currency-dropdown-item:hover {
        background: #f5f5f5;
        color: #be2239;
    }

    .currency-dropdown-item.selected {
        background: #f0f0f0;
        color: #be2239;
        font-weight: 600;
    }

.currency-selection-submit-button {
    width: 100%;
    padding: 16px 24px;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #be2239 0%, #7a4178 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(190, 34, 57, 0.3);
}

    .currency-selection-submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(190, 34, 57, 0.4);
    }

    .currency-selection-submit-button:active {
        transform: translateY(0);
    }

    .currency-selection-submit-button:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

@media (max-width: 768px) {
    .currency-selection-container {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .currency-selection-title {
        font-size: 24px;
    }

    .currency-selection-subtitle {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .currency-selection-container {
        width: 95%;
        padding: 24px 20px;
    }

    .currency-selection-title {
        font-size: 20px;
    }

    .currency-selection-logo img {
        max-width: 140px;
    }
}