:root {
  --bg-color: #0a0a0a;
  --bg-card: #151515;
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --accent: #d42b2b;
  --accent-hover: #b02323;
  --gold: #d4af37;
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

/* Mobile First Centered Container */
.app-container {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  background-color: var(--bg-color);
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: url('images/lomo.png') center/cover no-repeat;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,1) 100%);
  z-index: 1;
}

.top-nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.logo span {
  color: var(--accent);
}

.status-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.text-accent {
  color: var(--accent);
}

.hero-desc {
  font-size: 0.85rem;
  color: #ccc;
  margin-bottom: 20px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.btn-hero-action {
  background: #a84614;
  background: linear-gradient(135deg, var(--accent) 0%, #a81c1c 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(212, 43, 43, 0.4);
}
.btn-hero-action:active {
  transform: scale(0.98);
}

/* ── MENU SECTION ── */
.menu-section {
  padding: 30px 20px;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
  margin-bottom: 25px;
}

.menu-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-header small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.menu-category {
  margin-bottom: 40px;
}

.category-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 15px;
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  display: flex;
  padding: 12px;
  gap: 15px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.2s, border-color 0.2s;
}

.product-card:active {
  transform: scale(0.98);
  border-color: rgba(255,255,255,0.2);
}

.product-img-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #222;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.btn-add {
  background: rgba(212, 43, 43, 0.15);
  color: var(--accent);
  border: 1px solid rgba(212, 43, 43, 0.3);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover {
  background: var(--accent);
  color: #fff;
}

/* ── FIXED BOTTOM CONTACT BAR ── */
.bottom-contact-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  padding: 15px 20px;
  gap: 15px;
  z-index: 40;
}

.btn-contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.btn-call {
  background: #2a2a2a;
}
.btn-wa {
  background: #22c55e;
}

/* ── FLOATING CART BAR ── */
.floating-cart {
  position: fixed;
  bottom: 90px; /* Above contact bar */
  left: 50%;
  transform: translateX(-50%) translateY(150px);
  opacity: 0;
  pointer-events: none;
  width: calc(100% - 40px);
  max-width: 460px;
  background: var(--accent);
  color: white;
  padding: 15px 20px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 10px 25px rgba(212, 43, 43, 0.4);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.floating-cart.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fc-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.fc-badge {
  background: rgba(0,0,0,0.3);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.fc-total {
  font-weight: 800;
  font-size: 1.1rem;
}

/* ── CART DRAWER MODAL ── */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 500px;
  height: 85vh;
  background: var(--bg-card);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.cart-drawer.open {
  transform: translateX(-50%) translateY(0);
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
}
.btn-close-drawer {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.empty-cart-msg {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 40px;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 15px;
}

.cart-item-details h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.cart-item-details .price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-qty {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
.qty-val {
  font-weight: 600;
  width: 20px;
  text-align: center;
}
.btn-trash {
  background: rgba(212, 43, 43, 0.15);
  color: var(--accent);
  border: none;
  width: 28px; height: 28px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-form {
  padding: 20px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--bg-color);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.cart-summary {
  margin-top: 20px;
  margin-bottom: 20px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.summary-total {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}

.btn-submit-order {
  width: 100%;
  background: #22c55e;
  color: white;
  border: none;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
