/* Dynamic Product Menu Styles */
.product-subcategory {
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hide product categories and subcategories from main navigation */
.nav .menu-item:has(.menu-item) .sub-menu,
.nav .menu-item-has-children .sub-menu {
    display: none !important;
}

/* Alternative approach - hide specific product menu items */
.nav .menu-item[class*="products"] .sub-menu {
    display: none !important;
}

.product-subcategory.active {
    color: #DA2129;
    font-weight: bold;
}

.loading-message, .error-message {
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #666;
}

.error-message {
    color: #DA2129;
}

.no-products {
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    color: #666;
}

/* Let static CSS handle all grid layouts */