body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Space between products */
    padding: 20px;
    justify-content: center;
}

.product {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: center;
    background: #f9f9f9;
}
.product img {
    width: 100%; /* Make images responsive */
    max-width: 200px; /* Limit max size */
    height: auto;
}

button {
    background: #28a745;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #218838;
}

/* Address Form & Order Message */
.hidden {
    display: none;
}

#addressForm {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 300px;
    border-radius: 5px;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}