/* Apply Google Font to the whole page */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
}
/* Centering the container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
/* Styling for the page title */
.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
/* Grid layout for product display */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
/* Individual product card styling */
.product-card {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* Image styling */
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
/* Title styling */
.product-card h2 {
    font-size: 18px;
    margin: 10px 0;
}
/* Description styling */
.product-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
/* Price styling */
.product-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}