/* Category archive layout with sidebar */
.lf-archive-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px 80px;
    align-items: start;
}

.lf-cat-sidebar {
    position: sticky;
    top: 100px;
    padding-top: 8px;
}

.lf-filter-group {
    margin-bottom: 32px;
}

.lf-filter-heading {
    font-family: 'Jost', sans-serif;
    font-size: 0.63rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #1A1A18;
    font-weight: 500;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2DDD6;
}

.lf-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lf-filter-list li a {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: #8A8780;
    text-decoration: none;
    padding: 6px 10px;
    border-left: 2px solid transparent;
    transition: all 0.2s;
    letter-spacing: 0.04em;
}

.lf-filter-list li a:hover {
    color: #1A1A18;
    border-left-color: #D4B896;
    background: rgba(184, 154, 106, 0.05);
}

.lf-filter-list li.active a {
    color: #1A1A18;
    font-weight: 400;
    border-left-color: #B89A6A;
    background: rgba(184, 154, 106, 0.08);
}

.lf-clear-filters {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8A8780;
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 8px;
    display: inline-block;
}

.lf-clear-filters:hover {
    color: #1A1A18;
}

.lf-archive-products {
    min-width: 0;
}

/* Override WooCommerce default main content width */
.woocommerce-page .woocommerce {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .lf-archive-layout {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
    }

    .lf-cat-sidebar {
        position: static;
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

    .lf-filter-group {
        margin-bottom: 16px;
    }
}
