


.shop-banner {
    background: linear-gradient(135deg, #3b4663, #1c2a3a);
    border-radius: 2rem;
    padding: 3rem 5rem;
    position: relative;
    min-height: 15.625rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.shop-banner__image {
    position: absolute;
    bottom: -1rem;
    right: 1rem;
}
.shop-banner h1 {
    font-size: 2.438rem;
    color: #fff;
    margin-bottom: 1rem;
}
nav.breadcrumb strong {
    font-weight: 600;
    font-size: 1rem;
}
.shop-banner p {
    color: #fff;
    font-size: 1rem;
}
.shop-banner__image img {
    max-width: 80%;
    margin-left: auto;
    display: block;
}

.shop-body {
    display: grid;
    grid-template-columns: 25rem 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.shop-filter h3 {
    font-size: 2.25rem;
    margin-bottom: 0;
}
.head-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}
.result-count {
    font-size: 0.875rem;
    color: #666;
}

.filter-group {
    margin-top: 1rem;
}

.filter-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.content-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-filter a {
    color: #000;
    font-size: 1rem;
    text-decoration: none;
}
.filter-group:not(.is-open) .content-filter {
    display: none;
}
.filter-group.is-open    button.filter-toggle img {
    transform: scaleY(-1);
}
.content-filter {
    padding: 1rem;
    padding-bottom: 0;
}
.load-more {
    margin-left: calc(25rem/2);
    text-align: center;
    width: 100%;
    grid-column: span 2;
    margin-bottom: 8rem;
}
main.shop-page {
    overflow: hidden;
}
@media screen and (max-width: 992px) {
    .shop-body {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .shop-banner {
        padding: 3rem;
        text-align: center;
        flex-direction: column;
        min-height: auto;
    }

    .shop-banner__image {
        position: static;
        margin-top: 2rem;
    }

    .shop-banner__image img {
        max-width: 20rem;
        margin: 0 auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .load-more {
        margin-left: 0;
        grid-column: span 1;
    }

    .shop-filter {
        padding: 2rem;
        background: #fff;
        border-radius: 1.5rem;
        border: 1px solid rgba(27, 42, 65, 0.1);
    }
}

@media screen and (max-width: 768px) {
    .shop-banner h1 {
        font-size: 2rem;
    }

    .product-grid {
        gap: 1.5rem;
    }

    .filter-toggle {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 414px) {
    html {
        font-size: 60%;
    }

    .shop-banner {
        padding: 2rem 1.5rem;
        padding-bottom: 0;
    }

    .shop-banner h1 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-item {
        margin-right: 0;
    }

    .breadcrumb {
        font-size: 1.1rem;
        flex-wrap: wrap;
    }

    .breadcrumb span {
        font-size: 1.4rem;
    }

    .load-more {
        margin-bottom: 4rem;
    }

    .head-filter h3 {
        font-size: 1.8rem;
    }
}