.page-title-container { text-align: center; padding: 40px 0; background-color: var(--accent-gray); }
.page-title-container h1 { font-family: var(--font-title); margin: 0; }
.category-hero-container { aspect-ratio: 10 / 1; padding: 0; overflow: hidden; line-height: 0; }
.category-hero-image { display: block; width: 100%; height: 100%; margin: 0; object-fit: cover; object-position: center; }
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 40px; padding: 40px 0; }
.filters-sidebar { border-right: 1px solid #eee; padding-right: 20px; }
.filter-group { margin-bottom: 30px; }
.filter-group h4 { font-family: var(--font-title); margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.filter-group label { display: block; margin-bottom: 10px; cursor: pointer; }
.filter-group input[type="range"] { width: 100%; }
.mobile-filter-toggle,
.mobile-filter-header,
.mobile-filter-close { display: none; }

@media (max-width: 768px) {
    .shop-layout { display: block; padding-top: 18px; }
    .mobile-filter-toggle {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 16px;
        margin-bottom: 18px;
        border: 1px solid #d8e0ea;
        border-radius: 10px;
        background: var(--primary-blue);
        color: #fff;
        font: 700 15px var(--font-body);
        box-shadow: 0 2px 8px rgba(13, 44, 84, .08);
        cursor: pointer;
    }
    .mobile-filter-count { color: #dbe8f7; font-size: 12px; font-weight: 600; }
    .mobile-filter-backdrop {
        position: fixed;
        z-index: 1090;
        inset: 0;
        background: rgba(8, 24, 43, .42);
    }
    .filters-sidebar {
        position: fixed;
        z-index: 1100;
        top: 0;
        right: -105%;
        width: min(88vw, 360px);
        height: 100dvh;
        overflow-y: auto;
        box-sizing: border-box;
        padding: 22px 20px 30px;
        border: 0;
        background: #fff;
        box-shadow: -8px 0 24px rgba(0, 0, 0, .18);
        transition: right .25s ease;
    }
    .filters-sidebar.is-open { right: 0; }
    .mobile-filter-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .mobile-filter-header h3 { margin: 0; color: var(--primary-blue); }
    .mobile-filter-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: 0;
        border-radius: 50%;
        background: #eef2f6;
        color: var(--primary-blue);
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }
    .filter-group { margin-bottom: 24px; }
    .filter-group h4 { margin-bottom: 12px; }
    body.mobile-filters-open { overflow: hidden; }
}
