:root {
  --green: #2E7D32;
  --green-dark: #1B5E20;
  --green-light: #4CAF50;
  --cream: #FFF8E1;
  --cream-light: #FFFDE7;
  --orange: #FF6F00;
  --orange-light: #FFA726;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --text: #1B1B1B;
  --text-light: #666;
  --text-muted: #999;
  --bg: #FAFAFA;
  --card-bg: #FFFFFF;
  --border: #E8E5DD;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 64px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.5px;
}

.logo:hover { color: var(--green-dark); }

.nav-list {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}

.nav-link:hover {
  background: var(--cream);
  color: var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 50%, #E8F5E9 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content { text-align: left; }

.hero-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-plate {
  position: relative;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #FFFDE7 0%, #FFF8E1 60%, #F0E6D3 100%);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46,125,50,0.15);
  animation: float 4s ease-in-out infinite;
}

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

.hero-plate-emoji {
  font-size: 6rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.small-emoji-1 {
  position: absolute;
  top: 40px;
  right: 50px;
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite 0.5s;
}

.small-emoji-2 {
  position: absolute;
  bottom: 50px;
  left: 40px;
  font-size: 2.5rem;
  animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn:active { transform: scale(0.97); }

.btn:disabled,
.btn:disabled:hover {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--orange);
  color: white;
}

.btn-primary:hover {
  background: #E65100;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255,111,0,0.3);
}

.btn-wa {
  background: var(--wa);
  color: white;
}

.btn-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: white;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* Menu Section */
.menu { background: var(--card-bg); }

.category-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.category-tab {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--border);
  background: var(--card-bg);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.category-tab:hover {
  border-color: var(--green-light);
  color: var(--green);
}

.category-tab.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.menu-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-card-image {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--cream-light), var(--cream));
  position: relative;
  overflow: hidden;
}

.menu-card-image .menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-img {
  transform: scale(1.05);
}

.menu-card-image .menu-emoji {
  transition: var(--transition);
}

.menu-card:hover .menu-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.menu-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.menu-card-category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--orange);
}

.menu-card-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
  flex: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
}

.menu-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

.menu-card-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: none;
  background: var(--cream);
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--green);
  color: white;
}

.qty-btn:active { transform: scale(0.9); }

.qty-value {
  width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.btn-add {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: var(--green);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-add:hover {
  background: var(--green-dark);
}

.btn-add:active { transform: scale(0.95); }

/* How To Order */
.how-to { background: var(--cream-light); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  flex: 1;
  padding: 32px 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.step-arrow {
  font-size: 2rem;
  color: var(--orange);
  font-weight: 700;
  padding-top: 64px;
  flex-shrink: 0;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-text .about-jawa {
  font-style: italic;
  color: var(--green);
  font-size: 1.1rem;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Footer */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 48px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 32px;
}

.footer-col h3 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.footer-col h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-col .jam {
  font-weight: 600;
  color: var(--orange-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Floating WA */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  z-index: 90;
  transition: var(--transition);
  animation: pulse-wa 2s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  color: white;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.5); }
}

/* Cart FAB */
.cart-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(255,111,0,0.3);
  z-index: 90;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(255,111,0,0.4);
}

.cart-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  border: 2px solid white;
}

.cart-fab-label {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  white-space: nowrap;
  font-family: var(--font);
  pointer-events: none;
}

.cart-clear {
  background: none;
  border: none;
  color: #E53935;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: var(--transition);
}

.cart-clear:hover {
  background: rgba(229,57,53,0.08);
}

/* Cart Panel */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 90vw;
  background: var(--card-bg);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0,0,0,0.1);
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}

.cart-close:hover { color: var(--text); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  text-align: center;
  padding: 48px 0;
}

.cart-empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.5;
}

.cart-empty p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.cart-empty-hint {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  margin-top: 4px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--cream-light);
  border-radius: var(--radius-sm);
}

.cart-item-emoji {
  font-size: 1.8rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--text-light);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-item-qty {
  width: 24px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  margin-left: 4px;
  transition: var(--transition);
}

.cart-item-remove:hover { color: #E53935; }

.cart-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
}

.cart-total-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-dark);
}

.cart-footer .btn-wa {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-dark);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Smart Prompt */
.smart-prompt {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--green);
  color: white;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.smart-prompt.show {
  transform: translateY(0);
}

.smart-prompt p {
  margin: 0;
}

.prompt-link {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prompt-link:hover {
  color: var(--cream);
}

.prompt-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.prompt-close:hover {
  color: white;
}

/* Re-order Section */
.reorder-section {
  background: linear-gradient(135deg, var(--cream-light) 0%, #FFF3E0 100%);
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.reorder-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.reorder-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.reorder-icon {
  font-size: 2rem;
}

.reorder-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 0;
}

.reorder-detail {
  text-align: left;
  max-width: 360px;
  margin: 0 auto 12px;
}

.reorder-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.9rem;
  color: var(--text);
}

.reorder-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 360px;
  margin: 0 auto 16px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.reorder-summary strong {
  font-size: 1.1rem;
  color: var(--green-dark);
}

.btn-reorder {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 50px;
}

.reorder-hint {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 10px;
}

/* Loyalty Progress */
.loyalty-progress {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.loyalty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.loyalty-status {
  color: var(--orange);
  font-weight: 700;
}

.loyalty-track {
  height: 10px;
  background: var(--cream);
  border-radius: 10px;
  overflow: hidden;
}

.loyalty-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green-light));
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Testimonial Carousel */
.testimonial-section {
  background: var(--cream-light);
}

.testimonial-carousel {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-container {
  min-height: 100px;
}

.testimonial-slide {
  animation: fadeIn 0.4s ease;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
}

.testimonial-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--orange);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--green);
  width: 28px;
  border-radius: 5px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Save Contact Button */
.btn-save-contact {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--wa);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-save-contact:hover {
  background: var(--wa-dark);
  color: white;
  transform: translateY(-1px);
}

/* Celebration Modal */
.celebration-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.celebration-modal {
  background: linear-gradient(135deg, var(--green) 0%, var(--orange) 100%);
  color: white;
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: celebrationPop 0.5s ease-out;
}

.celebration-emoji {
  font-size: 4rem;
  margin-bottom: 12px;
}

.celebration-modal h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.celebration-modal p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  opacity: 0.95;
}

.celebration-code {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 8px 0;
}

.celebration-modal .btn {
  margin-top: 16px;
  background: white;
  color: var(--green-dark);
}

.celebration-modal .btn:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

@keyframes celebrationPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { text-align: center; }

  .hero-desc {
    margin: 0 auto 32px;
  }

  .hero-visual { display: none; }

  .steps {
    flex-direction: column;
    gap: 16px;
  }

  .step-arrow {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }

  .section-header h2 { font-size: 1.6rem; }

  .hero { padding: 100px 0 60px; }

  .hero h1 { font-size: 2.2rem; }

  .hero-tagline { font-size: 1.1rem; }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    font-size: 1rem;
  }

  .category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    padding-bottom: 8px;
    justify-content: flex-start;
  }

  .category-tab {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat {
    padding: 16px 8px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; font-size: 1.4rem; }
  .cart-fab { bottom: 16px; left: 16px; width: 52px; height: 52px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero h1 { font-size: 1.8rem; }
  .hero-tagline { font-size: 1rem; }
  .hero-desc { font-size: 0.95rem; }

  .menu-grid { gap: 16px; }

  .footer-inner { grid-template-columns: 1fr; }

  .cart-panel { max-width: 100vw; }

  .wa-float { bottom: 12px; right: 12px; width: 48px; height: 48px; font-size: 1.3rem; }
  .cart-fab { bottom: 12px; left: 12px; width: 48px; height: 48px; font-size: 1.2rem; }
}

/* === HOOK MODEL STYLES === */

/* Hunger Trigger Bottom Popup */
.hunger-trigger {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 95;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 16px 20px;
  max-width: 460px;
  width: calc(100% - 32px);
  animation: slideUpTrigger 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
  border-left: 4px solid var(--orange);
}

.hunger-trigger-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hunger-icon { font-size: 2rem; flex-shrink: 0; }
.hunger-text { flex: 1; }
.hunger-text strong { display: block; font-size: 1rem; color: var(--text); }
.hunger-text span { font-size: 0.85rem; color: var(--text-light); }

.hunger-cta {
  background: var(--wa);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.hunger-cta:hover {
  background: var(--wa-dark);
  color: white;
}

.hunger-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px;
  line-height: 1;
}

@keyframes slideUpTrigger {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Daily Special */
.badge-variable {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.text-accent { color: var(--orange); }

.special-card {
  max-width: 560px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 2px solid var(--orange-light);
}

.special-header {
  background: linear-gradient(135deg, var(--cream-light), var(--cream));
  padding: 32px;
  text-align: center;
  position: relative;
}

.special-emoji { font-size: 5rem; }

.special-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.special-body { padding: 24px; }
.special-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.special-body p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.special-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 16px;
}

.special-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-right: 8px;
}

.special-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
}

.special-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

/* Favorites Section */
.favorites-section {
  background: var(--cream-light);
}

.favorites-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}

.favorite-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.fav-rank {
  font-weight: 800;
  color: var(--orange);
  font-size: 1rem;
  min-width: 24px;
}

.fav-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.fav-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-right: 8px;
}

.btn-fav {
  padding: 6px 14px;
  border-radius: 50px;
  border: none;
  background: var(--green);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  white-space: nowrap;
}

.btn-fav:hover {
  background: var(--green-dark);
}

.favorites-hint {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* Share Section */
.share-section {
  text-align: center;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.share-section p {
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

/* Skill Badges */
.skill-section {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.skill-section p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.skill-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.skill-badge {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--cream);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.skill-badge.unlocked {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(46,125,50,0.3);
}

/* Reward Modal Override */
.reward-modal {
  background: linear-gradient(135deg, var(--orange) 0%, var(--green) 100%);
}

/* Confetti Canvas */
.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 350;
  pointer-events: none;
}

@media (max-width: 480px) {
  .hunger-trigger {
    bottom: 70px;
    padding: 12px 16px;
    border-radius: 12px;
  }
  .hunger-icon { font-size: 1.5rem; }
  .hunger-cta { padding: 6px 12px; font-size: 0.8rem; }
  .special-footer { flex-direction: column; align-items: stretch; text-align: center; }
  .skill-badges { gap: 6px; }
  .skill-badge { font-size: 0.75rem; padding: 4px 10px; }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-card {
  animation: fadeInUp 0.4s ease forwards;
}

.menu-card:nth-child(1) { animation-delay: 0.05s; }
.menu-card:nth-child(2) { animation-delay: 0.1s; }
.menu-card:nth-child(3) { animation-delay: 0.15s; }
.menu-card:nth-child(4) { animation-delay: 0.2s; }
.menu-card:nth-child(5) { animation-delay: 0.25s; }
.menu-card:nth-child(6) { animation-delay: 0.3s; }
.menu-card:nth-child(7) { animation-delay: 0.35s; }
.menu-card:nth-child(8) { animation-delay: 0.4s; }
.menu-card:nth-child(9) { animation-delay: 0.45s; }
.menu-card:nth-child(10) { animation-delay: 0.5s; }

/* Delivery Form inside Cart Panel */
.cart-delivery-form {
  margin-top: 24px;
  padding: 16px;
  background: var(--cream-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  animation: fadeInUp 0.3s ease forwards;
}

.cart-delivery-form h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-delivery-form .form-group {
  margin-bottom: 12px;
}

.cart-delivery-form .form-group:last-child {
  margin-bottom: 0;
}

.cart-delivery-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

.cart-delivery-form input[type="text"],
.cart-delivery-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: white;
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--text);
  transition: var(--transition);
}

.cart-delivery-form input[type="text"]::placeholder,
.cart-delivery-form textarea::placeholder {
  color: var(--text-muted);
}

.cart-delivery-form input[type="text"]:focus,
.cart-delivery-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.cart-delivery-form textarea {
  resize: vertical;
}

/* Modal escape enhancement cursor */
.celebration-overlay {
  cursor: pointer;
}
.celebration-modal {
  cursor: default;
}
