/* Product Grid Layout */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* Grid Columns */
.product-grid.grid-cols-1 .product-card { width: 100%; }
.product-grid.grid-cols-2 .product-card { width: 48%; }
.product-grid.grid-cols-3 .product-card { width: 32%; }
.product-grid.grid-cols-4 .product-card { width: 24%; }
.product-grid.grid-cols-5 .product-card { width: 19%; }
.product-grid.grid-cols-6 .product-card { width: 16%; }

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Product Image */
.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Product Title */
.product-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    color: #333;
}

/* Product Description */
.product-card p {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

/* Price */
.product-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #DA2027;
    display: block;
    margin: 10px 0;
}

/* Learn More Button */
.product-card .learn-more-btn {
    display: inline-block;
    background:#DA2027;
    color: #fff;
    padding: 8px 15px;
    border-radius: 0px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease-in-out;
}

.product-card .learn-more-btn:hover {
    background: #263a57;
}

.no-products{
    margin-top:20px;
}
/* Responsive Adjustments */
@media (max-width: 991px) {
    .product-grid.grid-cols-3 .product-card,
    .product-grid.grid-cols-4 .product-card,
    .product-grid.grid-cols-5 .product-card,
    .product-grid.grid-cols-6 .product-card {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .product-grid.grid-cols-2 .product-card,
    .product-grid.grid-cols-3 .product-card,
    .product-grid.grid-cols-4 .product-card,
    .product-grid.grid-cols-5 .product-card,
    .product-grid.grid-cols-6 .product-card {
        width: 100%;
    }
}
