.hs-product-card{
    width:100%;
    height:100%;
    box-sizing:border-box;
    border-radius:24px;
    border:1px solid #e5e7eb;
    background:#fff;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    transition:.25s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.04);
}

.hs-product-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.hs-product-media{
    position:relative;
    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:#fff;
    box-sizing:border-box;
}

.hs-product-image{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.hs-product-image img{
    max-width:100%;
    max-height:210px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.25s ease;
    display:block;
}

.hs-product-card:hover .hs-product-image img{
    transform:scale(1.04);
}

.hs-product-badge-sale{
    position:absolute;
    top:14px;
    left:14px;
    z-index:5;
    background:#16a34a;
    color:#fff;
    border-radius:999px;
    padding:7px 12px;
    font-size:12px;
    font-weight:800;
    line-height:1;
}

.hs-product-body{
    width:100%;
    box-sizing:border-box;
    padding:18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.hs-product-brand{
    font-size:12px;
    color:#64748b;
    font-weight:700;
    margin-bottom:8px;
}

.hs-product-title{
    font-size:17px;
    line-height:1.45;
    font-weight:700;
    margin:0 0 12px;
    min-height:50px;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.hs-product-title a{
    color:#111827;
    text-decoration:none;
}

.hs-product-price-wrap{
    margin-top:auto;
}

.hs-product-price{
    font-size:25px;
    font-weight:800;
    color:#111827;
    line-height:1.2;
}

.hs-product-old-price{
    font-size:14px;
    color:#94a3b8;
    text-decoration:line-through;
    margin-top:4px;
    line-height:1.2;
}

.hs-product-cart-btn{
    margin-top:14px;
    height:50px;
    border:none;
    border-radius:14px;
    background:#111827;
    color:#fff;
    font-size:15px;
    font-weight:700;
    width:100%;
    cursor:pointer;
    transition:.25s ease;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-sizing:border-box;
}

.hs-product-cart-btn:hover{
    background:#16a34a;
    color:#fff;
}

.hs-product-price-contact{
    font-size:16px;
    font-weight:700;
    color:#475569;
}

@media(max-width:768px){
    .hs-product-media{
        height:210px;
    }

    .hs-product-image img{
        max-height:170px;
    }

    .hs-product-title{
        font-size:15px;
        min-height:44px;
    }

    .hs-product-price{
        font-size:22px;
    }

    .hs-product-cart-btn{
        height:46px;
        font-size:14px;
    }
}