/*#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

#menu .menu_wrapper h1 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 4rem;
}

.menu_items, .menu_plates, .menu_specialty, .menu_drinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}*/


__________________________________________________________________________________

/*#menu .menu_wrapper .menu_items, .menu_plates, .menu_specialty, .menu_drinks {
    display: grid;
    grid-template-columns: 100px 90px 1000px 100px 90px 1000px;
    text-align: center;
}

#menu .menu_wrapper .menu_items_header h2, .menu_plates_header h2, 
.menu_specialty_header h2, .menu_drinks_header h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

#menu .menu_wrapper .menu_items h3, .menu_plates h3, .menu_specialty h3, .menu_drinks h3 {
    
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

#menu .menu_wrapper .menu_items p, .menu_plates p, .menu_specialty p, .menu_drinks p {
    
    gap: 2rem;
    margin-bottom: 4rem;
}

#menu .menu_wrapper .menu_items img, .menu_plates img, 
.menu_specialty img, .menu_drinks img {
   
    width: 10%;
    border-radius: 10px;
}*/
___________________________________________________________________________________
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu_items,
.menu_plates,
.menu_specialty,
.menu_drinks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.menu-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.menu-card:hover {
    transform: scale(1.03);
}

.menu-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.menu-card h3 {
    margin: 10px 0 5px;
}

.menu-card p {
    font-weight: bold;
    margin-bottom: 10px;
}

button {
    background-color: #ff5733;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #e04a2b;
}

h2 {
    margin: 40px 0 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

#cart, #checkout {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ccc;
}

button {
    background: green;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background: darkgreen;
}

#checkout {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

input, select {
    display: block;
    margin: 10px 0;
    padding: 8px;
    width: 100%;
}

button {
    background: #d62828;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #a61b1b;
}

.pickup-note {
    margin-top: 10px;
    font-weight: bold;
}

/*
if locked open admin page console and run this code to unlock it:
localStorage.removeItem("adminLocked"); 
*/