
/* Product Category Archives */
#main.site-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Optional: Adds space between columns */
}

.woocommerce-category-sidebar {
    flex: 0 0 25%; /* Sidebar takes 25% width */
    max-width: 25%;
}

.product_cat_grid {
    flex: 0 0 70%; /* Product grid takes 70% width */
    max-width: 70%;
}

.woocommerce-category-sidebar .widget {
    padding: 15px;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
    #main.site-main {
        flex-direction: column;
    }

    .woocommerce-category-sidebar,
    .product_cat_grid {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
