.wc-currency-switcher {
    position: fixed;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wc-currency-switcher[data-position="bottom-right"] {
    bottom: 20px;
    right: 20px;
}

.wc-currency-switcher[data-position="bottom-left"] {
    bottom: 20px;
    left: 20px;
}

.wc-currency-switcher[data-position="top-right"] {
    top: 20px;
    right: 20px;
}

.wc-currency-switcher[data-position="top-left"] {
    top: 20px;
    left: 20px;
}

.currency-dropdown {
    position: relative;
}

.currency-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.currency-button:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-color: #999;
}

.currency-list {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin: 0;
    margin-bottom: 8px;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.currency-dropdown:hover .currency-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.currency-item:hover {
    background: #f5f5f5;
}

.currency-item.active {
    background: #e8f4fd;
    color: #0066cc;
}

.currency-symbol {
    font-size: 16px;
    font-weight: 600;
    min-width: 24px;
}

.currency-name {
    font-size: 14px;
}