.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Adds left & right gap */
}
.product-section {
  margin: 40px 0;  /* 40px top & bottom margin, 0 left & right */
}
.product-section-heading {
  margin-bottom: 30px;  /* adds space below the heading */
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    flex: 1 1 calc(50% - 40px);
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 250px;
    margin-bottom: 15px;
}

/* Responsive: 1 card per row on smaller screens */
@media (max-width: 768px) {
    .product-card {
        flex: 1 1 100%;
    }
}
