/* Reset some basic styles */
body, h2, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    padding: 10px;
}
a {
  text-decoration: none;
  color: black;
}
.title {
            font-size: 32px;
            color: #4CAF50;
            text-align: center;
            margin-bottom: 20px;
            font-weight: bold;
            margin-top:10px;
        }
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-item {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 1px;
}

.product-item img {
    width: 100%;
    height: auto;
}

.product-item h2 {
    font-size: 16px;
    margin: 10px 0;
}

.product-item p {
    font-size: 14px;
    color: #333;
}

/* Ensure the design only applies to mobile views */
@media (min-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}
