#make,
#model,
#engine {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box; /* Prevents width overflow */
}
.products-container {

    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default: 4 columns */
    gap: 5%;
    padding: 20px;
    text-align: center;
	margin-bottom: 60px;
}

/* Responsive behavior: Stack into a single column when screen width is under 820px */
@media (max-width: 820px) {
    .products-container {
        grid-template-columns: 1fr; /* 1 column for smaller screens */
    gap: 2%;
	}
	.product-card img {
    width: 100%;
    max-height: 100px;
    object-fit: cover;
    border-radius: 8px;

}
}




.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0px 6px 18px rgba(196, 228, 97, 0.6); /* Stronger glow on hover */
}


.product-card img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;

}

.product-card h4, .product-card p {
    color: #3FB332;
    text-align: center;
}