:root {
    --bg-body: #101010;
    --bg-card: #1c1c1c;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --brand-green: #76c043;
    --brand-orange: #ff6b00;
    --radius: 12px;
}
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; -webkit-tap-highlight-color: transparent; }
body { background-color: var(--bg-body); color: var(--text-main); padding-bottom: 120px; }

/* HEADER */
.main-header { background: #000; position: relative; padding: 25px 0; border-bottom: 4px solid var(--brand-green); box-shadow: 0 5px 20px rgba(118, 192, 67, 0.2); }
.header-content { display: flex; flex-direction: column; align-items: center; gap: 15px; max-width: 800px; margin: 0 auto; }
.brand-section { display: flex; align-items: center; gap: 15px; }
.logo-wrapper { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 3px solid var(--brand-orange); background: #fff; }
.logo-img { width: 100%; height: 100%; object-fit: contain; }
.main-title { font-family: 'Oswald', sans-serif; font-size: 2.5rem; line-height: 1; background: linear-gradient(to right, var(--brand-green), var(--brand-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; }
.sub-title { font-size: 0.9rem; letter-spacing: 3px; font-weight: 700; color: #fff; }
.info-section { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.info-pill, .time-pill { background: #222; padding: 8px 16px; border-radius: 20px; font-size: 0.8rem; color: #eee; border: 1px solid #333; display: flex; align-items: center; gap: 6px; text-decoration: none; }
.info-pill i, .time-pill i { color: var(--brand-green); }

/* GALLERY */
.gallery-section { margin: 20px auto; max-width: 900px; padding: 0 10px; }
.swiper { width: 100%; height: 260px; border-radius: var(--radius); border: 1px solid #333; }
.swiper-slide { background: #000; display: flex; justify-content: center; align-items: center; }
.swiper-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; cursor: pointer; }
.swiper-pagination-bullet-active { background: var(--brand-orange); }

/* MENU */
.menu-container { max-width: 900px; margin: 0 auto; padding: 10px; }
.section-title { color: var(--brand-orange); font-family: 'Oswald', sans-serif; font-size: 1.8rem; text-transform: uppercase; border-left: 5px solid var(--brand-green); padding-left: 15px; margin: 30px 0 10px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; }
.item-card { background: var(--bg-card); border-radius: var(--radius); padding: 15px; display: flex; flex-direction: column; border: 1px solid #333; transition: 0.2s; }
.item-card:hover { border-color: var(--brand-green); transform: translateY(-3px); }
.item-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.item-name { font-weight: 700; font-size: 1rem; color: #fff; text-transform: uppercase; }
.item-price { font-weight: 800; font-size: 1.1rem; color: var(--brand-green); }
.item-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 12px; flex-grow: 1; }
.modern-select { width: 100%; background: #2a2a2a; color: #fff; border: 1px solid #444; padding: 8px; border-radius: 6px; margin-bottom: 10px; outline: none; }
.btn-add { width: 100%; background: var(--brand-orange); color: #fff; border: none; padding: 12px; border-radius: 8px; font-weight: 700; cursor: pointer; text-transform: uppercase; transition: 0.2s; }
.btn-add:active { transform: scale(0.98); background: #e55e00; }

/* ADMIN */
.admin-controls { display: flex; gap: 5px; margin-top: 10px; padding-top: 10px; border-top: 1px dashed #444; }
.btn-edit, .btn-delete { flex: 1; padding: 8px; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; font-size: 0.8rem; }
.btn-edit { background: #333; color: #fff; }
.btn-delete { background: #5a1a1a; color: #ff9999; }
#admin-login-btn { position: fixed; bottom: 10px; right: 10px; background: rgba(0,0,0,0.5); color: #666; border: none; padding: 8px; border-radius: 50%; cursor: pointer; z-index: 100; }
.floating-add-btn { position: fixed; bottom: 100px; right: 20px; background: var(--brand-green); color: #000; width: 60px; height: 60px; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 0 20px rgba(118, 192, 67, 0.4); cursor: pointer; z-index: 900; }
.floating-add-btn.visible { display: flex; }

/* CART */
.cart-floater { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(150px); width: 90%; max-width: 450px; background: #fff; color: #000; padding: 10px 20px; border-radius: 50px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 10px 30px rgba(0,0,0,0.6); z-index: 1000; transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); cursor: pointer; }
.cart-floater.active { transform: translateX(-50%) translateY(0); }
.cart-left { display: flex; align-items: center; gap: 12px; }
.icon-circle { background: var(--brand-green); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; position: relative; }
.count-badge { position: absolute; top: -5px; right: -5px; background: red; color: white; font-size: 0.7rem; padding: 2px 6px; border-radius: 10px; border: 2px solid #fff; }
.cart-label { font-weight: 800; font-size: 0.9rem; }
.cart-total { font-weight: 900; font-size: 1.2rem; color: var(--brand-orange); }

/* MODALS */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 2000; display: none; align-items: flex-end; backdrop-filter: blur(5px); }
.modal-overlay.open { display: flex; }
@media (min-width: 768px) { .modal-overlay { align-items: center; justify-content: center; } }
.modal-content { background: #151515; width: 100%; max-width: 600px; margin: 0 auto; border-radius: 20px 20px 0 0; max-height: 85vh; display: flex; flex-direction: column; border-top: 2px solid var(--brand-green); animation: slideUp 0.3s ease-out; }
.small-modal { max-width: 400px; border-radius: 20px; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.modal-header { padding: 20px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
.modal-header h2 { font-family: 'Oswald'; color: var(--brand-orange); }
.close-btn { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
.cart-items-list { padding: 20px; overflow-y: auto; flex: 1; }
.cart-item-row { display: flex; justify-content: space-between; margin-bottom: 15px; border-bottom: 1px solid #333; padding-bottom: 10px; }
.delete-btn { color: #ff4444; background: none; border: none; cursor: pointer; }
.modal-footer { padding: 20px; background: #111; border-top: 1px solid #333; }
.total-row { display: flex; justify-content: space-between; font-size: 1.4rem; font-weight: bold; margin-bottom: 15px; }
.whatsapp-btn { width: 100%; background: #25D366; color: #fff; border: none; padding: 15px; border-radius: 10px; font-weight: 800; cursor: pointer; display: flex; justify-content: center; gap: 10px; font-size: 1rem; }
.modern-input { width: 100%; background: #222; border: 1px solid #444; color: #fff; padding: 10px; border-radius: 8px; margin-bottom: 15px; outline: none; }
.input-label { display: block; font-size: 0.8rem; color: var(--brand-green); margin-bottom: 5px; font-weight: bold; }
.action-btn { background: var(--brand-orange); color: white; border: none; padding: 12px; border-radius: 8px; font-weight: bold; cursor: pointer; }
.full-width { width: 100%; }
.lightbox { display: none; position: fixed; z-index: 3000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); justify-content: center; align-items: center; }
.lightbox.active { display: flex; }
.lightbox-content { max-width: 95%; max-height: 95%; border: 2px solid var(--brand-green); }
.lightbox-close { position: absolute; top: 20px; right: 20px; color: #fff; font-size: 40px; cursor: pointer; }
