/* GRID */
.product-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 80px 0px;
}

.product-card {
    background: whitesmoke;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.product-image {
    height: 313px;
    overflow: hidden;
}

.product-image-ro {
    height: 313px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.product-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.product-image.no-image i {
    font-size: 64px;
    color: #94a3b8;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-content {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    /* min-height: 60px; */
    color: #1e293b;
}

.category {
    color: #64748b;
    margin-top: 8px;
}

.whatsapp-btn {
    display: block;
    margin-top: 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.whatsapp-btn:hover {
    background: #1ca750;
}