.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.2s ease-in;
}

.dropdown-menu {
    margin-top: 0;
    border: 1px solid #f0e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 200px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background-color: #fcf7f6;
    transform: translateX(5px);
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: #c88a48;
    transition: height 0.2s ease;
}

.dropdown-item:hover::before {
    height: 70%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Category badges */
.category-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-left: 0.5rem;
    background-color: #f8f0ee;
    color: #c88a48;
}