.angie-cs-shop-container-1073 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}

.angie-cs-shop-sidebar-1073 {
    flex: 0 0 250px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.angie-cs-shop-content-1073 {
    flex: 1;
    min-width: 0; /* Prevents overflow */
}

.angie-cs-product-categories-nav-1073 {
    width: 100%;
}

.angie-cs-product-categories-menu-1073 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.angie-cs-product-categories-menu-1073 li {
    margin-bottom: 10px;
}

.angie-cs-product-categories-menu-1073 a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: block;
    padding: 8px 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.angie-cs-product-categories-menu-1073 a:hover,
.angie-cs-product-categories-menu-1073 .current-menu-item > a {
    background-color: #0073aa;
    color: #fff;
}

.angie-cs-product-categories-menu-1073 .sub-menu {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
    display: block; /* CHANGED: Always show sub-menus */
}

@media (max-width: 768px) {
    .angie-cs-shop-container-1073 {
        flex-direction: column;
    }
    .angie-cs-shop-sidebar-1073 {
        flex: none;
        width: 100%;
    }
}