* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; background: #FFF8F0; color: #1C1208; }
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(28,12,8,0.96); padding: 0 2rem; height: 65px; display: flex; align-items: center; border-bottom: 2px solid #E8711A; }
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #F7C948; display: flex; align-items: center; gap: 8px; }
.cart-btn { background: linear-gradient(135deg, #C0392B, #E8711A); color: #fff; border: none; border-radius: 50px; padding: 0.5rem 1.4rem; font-weight: 700; cursor: pointer; font-size: 0.9rem; }
.hero { min-height: 100vh; background: linear-gradient(135deg, #1C1208, #922B21, #E8711A); display: flex; align-items: center; justify-content: space-between; padding: 100px 4rem 4rem; }
.hero-content { max-width: 600px; }
.tagline { color: #F7C948; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 1rem; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 1rem; }
.hero-content h1 span { color: #F7C948; font-style: italic; }
.subtitle { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; line-height: 1.7; }
.btn-primary { background: linear-gradient(135deg, #F4A118, #F7C948); color: #1C1208; font-weight: 900; padding: 0.9rem 2.2rem; border-radius: 50px; text-decoration: none; display: inline-block; font-size: 1rem; }
.hero-emoji { font-size: 10rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-20px);} }
.menu-section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: #1C1208; margin-bottom: 0.5rem; }
.section-header p { color: #7B4A1E; font-size: 1.1rem; }
.category-filter { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-bottom: 2.5rem; }
.cat-btn { padding: 0.5rem 1.3rem; border-radius: 50px; border: 2px solid #E8711A; background: transparent; color: #E8711A; font-weight: 700; cursor: pointer; transition: all 0.2s; font-size: 0.85rem; }
.cat-btn:hover, .cat-btn.active { background: linear-gradient(135deg, #C0392B, #E8711A); color: #fff; border-color: transparent; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.food-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 18px rgba(192,57,43,0.1); transition: transform 0.25s; }
.food-card:hover { transform: translateY(-6px); }
.food-card.hidden { display: none; }
.card-emoji-wrap { background: linear-gradient(135deg, #FDEBD0, #FFF3E0); padding: 1.8rem; text-align: center; position: relative; }
.card-emoji { font-size: 3.5rem; }
.card-badge { position: absolute; top: 10px; right: 10px; background: linear-gradient(135deg, #C0392B, #E8711A); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; }
.card-body { padding: 1.2rem; }
.card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #1C1208; margin-bottom: 0.3rem; }
.card-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: #A0623A; font-weight: 700; margin-bottom: 0.5rem; }
.card-desc { font-size: 0.9rem; color: #7B4A1E; line-height: 1.5; margin-bottom: 1rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #C0392B; }
.add-btn { background: linear-gradient(135deg, #C0392B, #E8711A); color: #fff; border: none; border-radius: 50px; padding: 0.45rem 1.2rem; font-weight: 700; cursor: pointer; transition: transform 0.15s; }
.add-btn:hover { transform: scale(1.06); }
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1100; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 380px; height: 100vh; background: #fff; z-index: 1200; display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(192,57,43,0.2); transition: right 0.35s; border-left: 3px solid #E8711A; }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: linear-gradient(135deg, #1C1208, #2D1B0E); border-bottom: 2px solid #E8711A; }
.cart-header h2 { font-family: 'Playfair Display', serif; color: #F7C948; }
.cart-header button { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1rem; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.2rem; }
.cart-item { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(232,113,26,0.15); }
.cart-item-emoji { font-size: 1.8rem; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: #1C1208; }
.cart-item-price { font-size: 0.8rem; color: #E8711A; font-weight: 700; }
.cart-item-controls { display: flex; align-items: center; gap: 6px; }
.qty-btn { width: 26px; height: 26px; border-radius: 50%; border: 2px solid #E8711A; background: transparent; color: #E8711A; font-weight: 700; cursor: pointer; }
.qty-num { font-weight: 900; min-width: 20px; text-align: center; }
.cart-total { display: flex; justify-content: space-between; padding: 0.3rem 0; font-size: 0.9rem; color: #7B4A1E; }
.cart-total.grand { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #1C1208; font-weight: 700; border-top: 1px solid rgba(0,0,0,0.1); margin-top: 0.5rem; padding-top: 0.7rem; }
.checkout-btn { width: 100%; margin-top: 1rem; background: linear-gradient(135deg, #C0392B, #E8711A); color: #fff; border: none; border-radius: 50px; padding: 0.9rem; font-weight: 900; font-size: 1rem; cursor: pointer; }
.modal-overlay { position: fixed; inset: 0; background: rgba(28,12,8,0.7); z-index: 1300; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: #fff; border-radius: 20px; width: 90%; max-width: 480px; padding: 2rem; border-top: 5px solid #E8711A; position: relative; }
.modal h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #1C1208; margin-bottom: 1.5rem; }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.06); border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.8px; text-transform: uppercase; color: #4A2C0A; margin-bottom: 0.4rem; }
.form-group input, .form-group textarea { width: 100%; border: 2px solid rgba(232,113,26,0.3); border-radius: 10px; padding: 0.7rem 1rem; font-size: 1rem; color: #1C1208; background: #FFF8F0; outline: none; }
.form-group textarea { min-height: 80px; resize: vertical; }
.place-order-btn { width: 100%; background: linear-gradient(135deg, #C0392B, #E8711A, #F4A118); color: #fff; border: none; border-radius: 50px; padding: 1rem; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; cursor: pointer; margin-top: 0.5rem; }
.success-overlay { position: fixed; inset: 0; background: rgba(28,12,8,0.8); z-index: 1400; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.success-overlay.open { opacity: 1; pointer-events: all; }
.success-modal { background: #fff; border-radius: 24px; width: 90%; max-width: 400px; padding: 2.5rem; text-align: center; border-top: 5px solid #F4A118; }
.success-modal div { font-size: 3.5rem; margin-bottom: 1rem; }
.success-modal h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #1C1208; margin-bottom: 0.5rem; }
.success-modal p { color: #7B4A1E; margin-bottom: 0.5rem; }
.success-modal button { background: linear-gradient(135deg, #C0392B, #E8711A); color: #fff; border: none; border-radius: 50px; padding: 0.8rem 2rem; font-weight: 900; cursor: pointer; margin-top: 1rem; }
footer { background: #1C1208; text-align: center; padding: 1.5rem; color: rgba(255,255,255,0.5); font-size: 0.9rem; border-top: 2px solid #E8711A; }
