* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {

    background: #f5f5f5;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 100vh;

    padding: 30px;

}

.container {

    width: 100%;

    max-width: 900px;

    background: #ffffff;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}

h1 {

    text-align: center;

    color: #ff6b00;

    margin-bottom: 10px;

}

.subtitle {

    text-align: center;

    color: #666;

    margin-bottom: 35px;

    font-size: 18px;

}

label {

    display: block;

    margin-top: 20px;

    margin-bottom: 8px;

    font-weight: bold;

    color: #333;

}

input[type="text"],
input[type="email"],
input[type="number"] {

    width: 100%;

    padding: 14px;

    border: 1px solid #cccccc;

    border-radius: 8px;

    font-size: 16px;

    transition: 0.3s;

}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus {

    outline: none;

    border-color: #ff6b00;

    box-shadow: 0 0 6px rgba(255, 107, 0, 0.3);

}

.food-container {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 15px;

}

.food-card {

    border: 2px solid #dddddd;

    border-radius: 12px;

    padding: 12px;

    cursor: pointer;

    text-align: center;

    transition: all 0.3s ease;

    background: #fafafa;

}

.food-card:hover {

    transform: translateY(-4px);

    border-color: #ff6b00;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);

}

.food-card img {

    width: 100%;

    height: 150px;

    object-fit: cover;

    border-radius: 10px;

}

.food-card span {

    display: block;

    margin-top: 12px;

    font-size: 17px;

    font-weight: bold;

    color: #333;

}

.food-card input {

    display: none;

}

/* Highlight selected food */

.food-card:has(input:checked) {

    border: 3px solid #ff6b00;

    background: #fff4ec;

    box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);

}

button {

    margin-top: 30px;

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 10px;

    background: #ff6b00;

    color: white;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;

}

button:hover {

    background: #e65f00;

}

#result {

    margin-top: 30px;

    padding: 18px;

    border-radius: 10px;

    text-align: center;

    font-size: 17px;

    font-weight: bold;

    background: #f8f8f8;

    color: #333;

}

#result h3 {

    margin-bottom: 10px;

}

#result p {

    margin: 8px 0;

}

/* Mobile Responsive */

@media (max-width: 768px) {

    .container {

        padding: 25px;

    }

    .food-container {

        grid-template-columns: 1fr;

    }

    .food-card img {

        height: 180px;

    }

    h1 {

        font-size: 28px;

    }

    .subtitle {

        font-size: 16px;

    }

}