/* Layout */
.wc-shop-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

/* Sidebar */
.wc-sidebar {
    width: 250px;
    height: fit-content;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
}

/* Accordion */
.wc-filter-section {
    margin-bottom: 15px;
}
.wc-filter-title {
    font-weight: bold;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wc-filter-title span.toggle {
    font-size: 18px;
}
.wc-filter-options {
    display: none;
    margin-top: 10px;
}
.wc-filter-options label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}
.wc-filter-options input[type="checkbox"] {
    margin-right: 8px;
}

/* Product Grid */
/* #wc-products-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
} */

/* Page Header */
.wc-page-header {
    max-width: 1200px;
    margin: 15px auto;
}
.wc-page-title {
    font-size: 28px;
    margin-bottom: 5px;
}
.wc-breadcrumb {
    font-size: 14px;
    color: #555;
}
.wc-breadcrumb a {
    color: #0071a1;
    text-decoration: none;
    margin-right: 5px;
}