.shop-page {
    min-height: 70vh;
    background: #f4f8fd;
}

.shop-heading {
    padding: 52px 0 82px;
    color: #ffffff;
    background: linear-gradient(120deg, #032d60, #0b67bd);
}

.shop-heading h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 52px);
}

.shop-heading p {
    margin: 0;
    color: #e5f0ff;
    font-size: 18px;
}

.shop-content {
    margin-top: -42px;
    padding-bottom: 80px;
}

.shop-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #dbe7f5;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(6, 59, 120, .12);
}

.shop-filters label span {
    display: block;
    margin-bottom: 7px;
    color: #063b78;
    font-size: 13px;
    font-weight: 900;
}

.shop-filters select {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    color: #152238;
    background: #eef5fd;
    border: 1px solid #c9dbee;
    border-radius: 10px;
    font: inherit;
}

.shop-result-count {
    margin: 25px 0 18px;
    color: #607086;
}

.shop-empty {
    padding: 35px;
    background: #ffffff;
    border-radius: 16px;
    text-align: center;
}

.shop-page .product-card h2 {
    min-height: 65px;
    font-size: 15px;
    line-height: 1.45;
}

.shop-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 38px;
}

.shop-pagination a {
    display: grid;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    place-items: center;
    color: #063b78;
    background: #ffffff;
    border: 1px solid #c9dbee;
    border-radius: 10px;
    font-weight: 900;
    text-decoration: none;
}

.shop-pagination a:hover,
.shop-pagination a.active {
    color: #17304f;
    background: #ffc928;
    border-color: #ffc928;
}

.pagination-arrow {
    font-size: 24px;
    line-height: 1;
}

.pagination-ellipsis {
    display: grid;
    min-width: 30px;
    height: 42px;
    place-items: center;
    color: #607086;
    font-weight: 900;
}

@media (max-width: 720px) {
    .shop-filters {
        grid-template-columns: 1fr;
    }

    .shop-heading {
        padding: 38px 0 72px;
    }
}
