* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #1b3b8d;
}

/* Header */
header {
    background-image: url(/img/milk.jpg);
    color: rgb(231, 231, 231);
    background-size: cover;
    text-align: center;
    padding: 30px 10px;
}

/* Menu */
nav {
    background: rgb(53, 132, 138);
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav a:hover {
    color: #4facfe;
}

/* Product list */
.product-list {
    max-width: 1000px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    padding: 0 20px;
}



.card:hover {
    transform: translateY(-8px);
}

.price {
    color: #4facfe;
    font-size: 18px;
    font-weight: bold;
}

button {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: #4facfe;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #007bff;
}

/* Order form */
.order {
    background: white;
    max-width: 500px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 15px;
}

.order h2 {
    text-align: center;
    margin-bottom: 20px;
}

.order input,
.order select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}
.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.card button {
    margin-top: auto;
}
