:root {
    --bg-color: #FAF6F0;
    --primary-color: #C17225;
    --dark-color: #2F323A;
    --text-color: #333333;
    --card-bg: #F2EBE1;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--bg-color); color: var(--text-color); min-height: 100vh; }
.container { max-width: 1300px; margin: 0 auto; padding: 2rem 1.5rem; }
h1, h2 { color: var(--primary-color); }
h2 { font-size: 1.6rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 10px; }

input, textarea { width: 100%; padding: 0.8rem 1.2rem; border: 1px solid #ddd; border-radius: 30px; font-size: 1rem; margin-bottom: 15px; outline: none; }
input:focus, textarea:focus { border-color: var(--primary-color); }
button { background: var(--primary-color); color: white; border: none; padding: 0.8rem 1.5rem; border-radius: 30px; font-weight: 600; cursor: pointer; transition: 0.3s; }
button:hover { filter: brightness(1.1); }
.btn-outline { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-primary { display: inline-block; text-decoration: none; background: var(--primary-color); color: white; padding: 0.8rem 1.5rem; border-radius: 30px; font-weight: 600; }
.btn-primary:hover { filter: brightness(1.1); }

.landing { max-width: 600px; margin: 4rem auto; text-align: center; padding: 0 1.5rem; }
.landing p { margin: 1rem 0 2rem; color: #555; }

.restaurant-header { display: flex; align-items: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.logo-area { width: 120px; height: 120px; flex-shrink: 0; }
.logo-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid white; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.company-info-central { flex: 1; text-align: center; min-width: 250px; }
.company-info-central h1 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.contact-info { display: flex; justify-content: center; gap: 1.5rem; font-size: 0.95rem; font-weight: 600; color: #555; flex-wrap: wrap; }
.contact-info a { color: inherit; text-decoration: none; }

.search-container { text-align: center; margin-bottom: 3rem; }
.search-container input { max-width: 600px; margin: 0 auto; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.carousels-wrapper { display: flex; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.carousel-section { flex: 1; min-width: 320px; background: var(--card-bg); border-radius: 20px; padding: 2rem; text-align: center; }
.carousel-container { position: relative; width: 100%; overflow: hidden; border-radius: 15px; margin-top: 1rem; background: #f0f0f0; }
.carousel-track { display: flex; }
.carousel-slide { min-width: 100%; height: 280px; display: flex; justify-content: center; align-items: center; background: #f0f0f0; position: relative; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; }
.carousel-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.7); color: white; padding: 10px; text-align: left; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.card-img { width: 100%; height: 200px; object-fit: contain; background: #f0f0f0; }
.card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.card-price { color: var(--primary-color); font-size: 1.4rem; font-weight: 800; margin: auto 0 1rem 0; }

.cart-btn { position: fixed; bottom: 20px; right: 20px; background: var(--primary-color); width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: white; font-size: 1.8rem; cursor: pointer; z-index: 100; box-shadow: 0 5px 15px rgba(193,114,37,0.4); }
.cart-badge { position: absolute; top: -5px; right: -5px; background: #FFC107; color: black; font-size: 0.8rem; font-weight: bold; width: 22px; height: 22px; border-radius: 50%; display: flex; justify-content: center; align-items: center; border: 2px solid var(--bg-color); }

.modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); backdrop-filter: blur(5px); z-index: 1000; justify-content: center; align-items: center; }
.modal-content { background: var(--bg-color); width: 90%; max-width: 500px; padding: 2.5rem; border-radius: 30px; max-height: 90vh; overflow-y: auto; }
.modal-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }
.modal-actions button { flex: 1; }

@media (max-width: 768px) {
    .restaurant-header { flex-direction: column; text-align: center; }
    .carousels-wrapper { flex-direction: column; }
}
