.product-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
    height:100%;
}

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

.product-image{
    width:100%;
    height:240px;
    overflow:hidden;
    background:#f8f8f8;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

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

.product-body{
    padding:10px;
}

/*.product-title{
    font-size:16px;
    font-weight:700;
    color:#222;
    margin-bottom:8px;
}*/

.product-title{
    font-size:16px;
    font-weight:700;
    line-height:24px;
    height:46px;      /* 24px × 2 lines */
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
	 color:#222;
}

.product-desc{
    color:#666;
    font-size:14px;
    height:42px;
    overflow:hidden;
    margin-bottom:15px;
}

.product-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.price{
    font-size:18px;
    font-weight:700;
    color:#00853F;
}

.stock{
    background:#E9F9EE;
    color:#00853F;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

.btn-whatsapp{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
    width:100%;
    padding:13px;
    border-radius:8px;
    text-decoration:none;
    background:#25D366;
    color:#fff;
    font-weight:600;
}

.btn-whatsapp:hover{
    background:#20bf5a;
    color:#fff;
}


.contact-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    padding:25px;
    max-width:600px;
}

.contact-card h3{
    margin-bottom:25px;
    font-size:24px;
    font-weight:700;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:15px 0;
    border-bottom:1px solid #f1f1f1;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item i{
    width:48px;
    height:48px;
    line-height:48px;
    text-align:center;
    border-radius:50%;
    background:#ffffff;
   /* color:#fff;*/
    font-size:20px;
}

.contact-item label{
    display:block;
    color:#777;
    font-size:13px;
    margin-bottom:3px;
}

.contact-item a{
    color:#222;
    text-decoration:none;
    font-weight:600;
}

.contact-item a:hover{
    color:#0a8f43;
}