﻿.product-grid {
    display: flex;
    flex-wrap: wrap; /* Allows items to move to the next row */
    justify-content: center; /* Centers items in the row */
    gap: 20px; /* Space between the cards */
    padding: 20px 0;
}

/* Individual Product Card */
.product-card {
    flex: 0 1 calc(20% - 20px); /* 5 items per row on large screens */
    min-width: 200px; /* Prevents cards from getting too small */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .product-card:hover {
        transform: translateY(-5px); /* Lift effect on hover */
    }

    .product-card img {
        width: 100%;
        height: auto;
        max-height: 200px;
        object-fit: contain; /* Keeps images looking clean */
        margin-bottom: 10px;
    }

.price {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: bold;
    margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 1 calc(33.33% - 20px);
    }
    /* 3 items per row */
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 1 calc(50% - 20px);
    }
    /* 2 items per row */
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 1 100%;
    }
    /* 1 item per row */
}
