/*=========================================================
PET LUDITOS PRODUCT CARD PREMIUM
=========================================================*/

.pl-products-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:60px;

}

.pl-product-card{

background:#fff;
border-radius:24px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.35s;
position:relative;

}

.pl-product-card:hover{

transform:translateY(-10px);

}

.pl-product-image{

position:relative;
padding:20px;
background:#F8FAFC;

}

.pl-product-image img{

width:100%;
transition:.35s;

}

.pl-product-card:hover img{

transform:scale(1.05);

}

.pl-badge-sale{

position:absolute;
left:15px;
top:15px;

background:#FF6B6B;

color:#fff;

padding:7px 14px;

border-radius:50px;

font-size:12px;

font-weight:700;

z-index:5;

}

.pl-badge-new{

position:absolute;
right:15px;
top:15px;

background:#24C8D8;

color:#fff;

padding:7px 14px;

border-radius:50px;

font-size:12px;

font-weight:700;

z-index:5;

}

.pl-product-info{

padding:25px;

}

.pl-product-info h3{

font-size:18px;
line-height:1.5;
min-height:56px;
margin-bottom:12px;

}

.pl-product-info h3 a{

color:#223A5E;

}

.pl-price{

font-size:28px;
font-weight:700;
color:#FF7A59;
margin:18px 0;

}

.pl-delivery{

background:#EEF9F2;

color:#2E7D32;

padding:10px;

border-radius:12px;

text-align:center;

font-size:14px;

font-weight:600;

margin-bottom:18px;

}

.pl-buttons-product{

display:grid;

grid-template-columns:1fr 1fr;

gap:12px;

}

.pl-add-cart,
.pl-whatsapp{

display:flex;

justify-content:center;

align-items:center;

height:50px;

border-radius:14px;

font-weight:700;

transition:.3s;

}

.pl-add-cart{

background:#FF7A59;

color:#fff;

}

.pl-whatsapp{

background:#25D366;

color:#fff;

}

.pl-add-cart:hover{

background:#F26440;

}

.pl-whatsapp:hover{

background:#1EBE5D;

}