/* Culture Selector Styles */
.culture-selector {
    position: relative;
}

.culture-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
}

.culture-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.culture-selector:hover .culture-dropdown,
.culture-toggle[aria-expanded="true"] + .culture-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.culture-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.culture-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
}

.culture-item:hover {
    background-color: var(--color-light-gray);
}

.culture-flag {
    width: 16px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .culture-dropdown {
        right: auto;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .culture-selector:hover .culture-dropdown,
    .culture-toggle[aria-expanded="true"] + .culture-dropdown {
        transform: translateX(-50%) translateY(0);
    }
}