.pswp-slider{
    overflow:hidden;
    width:100%;
    padding:10px 0 20px;
}

.pswp-track{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding:10px;
}

.pswp-track::-webkit-scrollbar{
    display:none;
}

.pswp-item{
    flex:0 0 calc(25% - 18px);
}

.pswp-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.25s;
    text-align:center;
    padding:18px;
    box-shadow:0 6px 22px rgba(0,0,0,.05);
    height:100%;
    box-sizing:border-box;
}

.pswp-card-image{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.pswp-card-image img{
    max-width:100%;
    max-height:200px;
    width:auto;
    height:auto;
    object-fit:contain;
}

.pswp-card-title{
    font-size:24px;
    font-weight:600;
    line-height:1.7;
    color:#333;
    margin:0 0 18px;
    height:82px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.pswp-card-price{
    color:#d28a00;
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
}

.pswp-button{
    display:none;
}

/* Tablet */

@media(max-width:1024px){

    .pswp-item{
        flex:0 0 calc(33.333% - 16px);
    }

    .pswp-card-title{
        font-size:20px;
        height:72px;
    }

    .pswp-card-price{
        font-size:28px;
    }

}

/* Mobile */

@media(max-width:767px){

    .pswp-track{
        gap:14px;
    }

    .pswp-item{
        flex:0 0 calc(50% - 7px);
    }

    .pswp-card{
        padding:14px;
        border-radius:14px;
    }

    .pswp-card-image{
        height:150px;
    }

    .pswp-card-image img{
        max-height:135px;
    }

    .pswp-card-title{
        font-size:16px;
        line-height:1.6;
        height:52px;
        margin-bottom:10px;
    }

    .pswp-card-price{
        font-size:22px;
        margin-bottom:0;
    }

}