.psbp-products-block {
    margin: 35px 0 20px;
}

.psbp-title {
    text-align: center;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 22px;
    color: #6b1738;
    font-weight: 700;
}

.psbp-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.psbp-product-card {
    background: #fff;
    border: 1px solid #ece7e8;
    padding: 16px;
    text-align: center;
    transition: all .25s ease;
}

.psbp-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.psbp-product-image-wrap {
    display: block;
    margin-bottom: 14px;
}

.psbp-product-image {
    max-width: 100%;
    height: auto;
}

.psbp-product-name {
    min-height: 42px;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
}

.psbp-product-name a {
    color: #242424;
    text-decoration: none;
}

.psbp-product-card:hover .psbp-product-name a {
    color: #c4a551;
}

.psbp-product-price {
    color: #6b1738;
    font-weight: 700;
    font-size: 15px;
}

@media (max-width: 991px) {
    .psbp-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .psbp-products-block {
        margin-top: 28px;
    }

    .psbp-title {
        font-size: 21px;
    }

    .psbp-product-card {
        padding: 12px;
    }
}
