/* Simple Category Navigation - Remove Dropdowns */

/* Hide all dropdown menus */
.category-dropdown,
.subcategory-item {
    display: none !important;
}

/* Ensure category items are simple links */
.category-item {
    position: relative;
}

.category-item:hover .category-dropdown {
    display: none !important;
}

/* Clean category link styling */
.category-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    background: transparent;
}

.category-link:hover {
    background: #4a7c59;
    color: white;
}

.category-link.active {
    background: #4a7c59;
    color: white;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .category-nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .category-item {
        flex: 0 0 auto;
        margin: 5px;
    }
    
    .category-link {
        padding: 8px 16px;
        font-size: 14px;
        border-radius: 20px;
        border: 1px solid #ddd;
    }
}

/* Ensure no dropdown arrows or indicators */
.category-item::after,
.category-link::after {
    display: none !important;
}

/* Remove any hover effects that might show dropdowns */
.shop-category-nav .category-item:hover {
    background: transparent;
}

.shop-category-nav .category-item:hover .category-link {
    background: #4a7c59;
    color: white;
}