:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --accent: #f59e0b;
  --bg: #f8fafc;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Prompt", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0.8rem 1.5rem;
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  background: var(--primary);
  color: white;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.brand-text h1 {
  font-size: 1.3rem;
  color: var(--text);
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--primary); }

.cart-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.cart-trigger:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.cart-count {
  background: var(--accent);
  color: #111;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
}

.hero-banner {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-pill {
  background: #e0f2fe;
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.hero-text h2 {
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero-actions { display: flex; gap: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  border: none;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-secondary { background: #e2e8f0; color: #334155; }
.btn-secondary:hover { background: #cbd5e1; }
.btn-block { width: 100%; margin-top: 10px; }

.featured-drink {
  background: white;
  border: 2px solid var(--border);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.drink-emoji { font-size: 4.5rem; margin-bottom: 0.5rem; }
.featured-price { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-top: 0.8rem; }

.category-bar {
  max-width: 1100px;
  margin: 1.5rem auto 1rem;
  padding: 0 1.5rem;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cat-btn {
  background: white;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.cat-btn.active, .cat-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.menu-container {
  max-width: 1100px;
  margin: 1rem auto 3rem;
  padding: 0 1.5rem;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.drink-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.drink-card-top {
  background: #f1f5f9;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.card-emoji { font-size: 3.5rem; }

.badge-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--accent);
  color: #111;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.drink-card-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.drink-card-body h4 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.drink-card-body p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; flex-grow: 1; }

.drink-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.8rem;
}

.drink-price { font-size: 1.25rem; font-weight: 700; color: var(--primary); }

.usp-section {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 1.5rem;
}

.usp-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.usp-box { text-align: center; }
.usp-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.usp-box h4 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.usp-box p { font-size: 0.85rem; color: var(--muted); }

/* Modals */
.modal { display: none; position: fixed; inset: 0; z-index: 999; }
.modal.active { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(3px); }
.modal-content {
  position: relative;
  max-width: 480px;
  margin: 50px auto;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  padding: 1rem 1.2rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--muted); }
.modal-body { padding: 1.2rem; overflow-y: auto; }
.modal-footer {
  padding: 1rem 1.2rem;
  background: #f8fafc;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.drink-preview {
  display: flex;
  gap: 12px;
  background: #f1f5f9;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.preview-emoji { font-size: 2.2rem; }
.preview-price { font-weight: 700; color: var(--primary); }

.custom-section { margin-bottom: 1rem; }
.custom-section label { display: block; font-weight: 500; font-size: 0.85rem; margin-bottom: 0.3rem; }

.chip-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px;
}

.chip {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  background: #fff;
}
.chip input { margin-right: 6px; }

.qty-row { display: flex; justify-content: space-between; align-items: center; }
.qty-btn-group { display: flex; align-items: center; gap: 12px; }
.btn-qty { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); background: white; cursor: pointer; }

.cart-list { display: flex; flex-direction: column; gap: 8px; }
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.cart-modal-footer { flex-direction: column; gap: 10px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.15rem; }
.grand-total { color: var(--primary); }
.cart-btns { display: flex; justify-content: flex-end; gap: 10px; }

.form-group { margin-bottom: 0.8rem; }
.form-group label { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
}

.summary-box { background: #f8fafc; padding: 10px; border-radius: 8px; border: 1px dashed var(--border); margin-top: 10px; font-size: 0.85rem; }
.summary-final { text-align: right; margin-top: 6px; font-size: 1rem; color: var(--primary); }

.success-icon { font-size: 3.5rem; margin-bottom: 0.5rem; }
.order-badge { background: #e0f2fe; color: var(--primary-dark); padding: 4px 12px; border-radius: 20px; display: inline-block; margin: 10px 0; font-weight: 600; }
.eta-text { color: var(--muted); margin-bottom: 1rem; }

.footer { text-align: center; padding: 2rem 1.5rem; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 768px) {
  .hero-banner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .nav-menu { display: none; }
}
