.products{
    padding:80px 0;
}

.product-card{

    background:#fff;

    border:1px solid #e7e7e7;

    transition:.25s;

    height:100%;

    overflow:hidden;

}

.product-card:hover{

    transform:translateY(-5px);

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.product-image{

    height:240px;

    overflow:hidden;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.05);

}

.product-body{

    padding:20px;

}

.product-body h3{

    font-size:20px;

    font-weight:700;

    margin-bottom:15px;

    color:#0d1b2a;

}

.product-meta{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

    margin-bottom:15px;

    color:#666;

    font-size:14px;

}

.product-meta i{

    color:#d32027;

    margin-inline-end:4px;

}

.product-body p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    min-height:82px;
}
html[lang="ar"] .product-body p{
    text-align:justify;
}

.product-footer{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:18px 0;

}

.product-footer strong{

    color:#d32027;

    font-size:18px;

}
.product-tags{
    display:flex;
    justify-content:space-between;
    gap:10px;
    flex-wrap:wrap;
    margin:18px 0;
}

.product-tags span{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 14px;
    background:#f7f7f7;
    border:1px solid #e5e5e5;
    font-size:14px;
    font-weight:600;
    color:#444;
}

.product-tags i{
    color:#d32027;
}


.product-footer small{

    color:#888;

}

.product-buttons{

    display:flex;

    gap:10px;

}

.product-buttons .btn{

    flex:1;

    border-radius:4px;

    font-size:14px;

    padding:10px;

}

.btn-call{

    background:#003b73;

    color:#fff;

}

.btn-call:hover{

    background:#002b55;

    color:#fff;

}

.btn-whatsapp{

    background:#25D366;

    color:#fff;

}

.btn-whatsapp:hover{

    background:#1ea952;

    color:#fff;

}

.pagination{

    gap:8px;

}

.pagination .page-link{

    border-radius:4px;

    color:#003b73;

    border:1px solid #ddd;

}

.pagination .active .page-link{

    background:#d32027;

    border-color:#d32027;

}
