@charset "utf-8";
/* CSS Document */
 
/* Currency Widget Styles */
.currency-widget {
    position: fixed;
    top: 20px; /* Same height as language widget */
    right: 20px; /* Position to the left of the language widget */
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.currency-toggle {
    width: 42px;
    height: 42px;
    border-radius: 0px;
    background-color: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.currency-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 250px;
    background: #1a1a1a;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 15px;
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
}

.currency-dropdown.show {
    display: block;
    animation: fadeIn 0.3s;
}

.dropdown-title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 300;
}

.currency-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.currency-option {
    margin-bottom: 5px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.currency-option a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    text-decoration: none;
    color: #fff;
}

.currency-option:hover {
    background: rgba(187, 187, 187, 0.2);
}

.currency-option.active {
    background: rgba(187, 187, 187, 0.2);
    border-left: 3px solid #505050;
}

.currency-code {
    font-weight: 600;
    font-size: 16px;
}

.currency-name {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Currency status indicator */
.currency-status {
    position: absolute;
    top: 50px;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.currency-status.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .currency-widget {
        margin-right: 10px;
		top: 37px
    }
    
    .currency-toggle {
        width: 37px;
        height: 37px;
    }
    
    .currency-dropdown {
        width: 230px;
    }
}