.product-banner {
    position: relative;
    background: url('/static/images/bg_banner_1.png') no-repeat center center;
    background-size: cover;
}

.product-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 43, 123, 0.9);
}

.product-list-items {
    padding: 100px 135px;
    background: #fff;
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-list-items .product-item-image {
    padding: 10px;
    background-color: #f8f9fa;
    max-height: 480px;
}

@media screen and (min-width: 1440px) {
    .product-list-items .product-item-image {
        padding: 10px;
        background-color: #f8f9fa;
        max-height: 480px;
    }

    .product-list-items .product-item-image img {
        max-width: 450px;
        max-height: 350px;
    }
}

@media screen and (max-width: 1024px) {
    .product-list-items {
        padding: 0;
        background: #fff;
        gap: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .product-list-items .product-item-image {
        padding: 10px;
        background-color: #f8f9fa;
        max-height: 480px;
    }

    .product-item-image {
        padding: 10px;
        background-color: #f8f9fa;
        max-height: 480px;
    }
}