:root {
  --purple-dark: #6b21a8;
  --purple: #8b3fd4;
  --purple-light: #a855f7;
  --pink: #ec4899;
  --pink-light: #f9a8d4;
  --green: #16a34a;
  --yellow: #d97706;
  --brown: #92400e;
  --cream: #fff7f0;
  --text-dark: #2b1b3d;
  --text-muted: #6b6178;
  --grab-green: #00b14f;
  --zalo-blue: #0068ff;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(107, 33, 168, 0.12);
  --font-display: 'Baloo 2', 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.5;
}

h1, h2, h3, .logo, .menu-card__price, .combo-card__new {
  font-family: var(--font-display);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  flex-shrink: 0;
}
.icon--xs { width: 14px; height: 14px; }
.icon--sm { width: 18px; height: 18px; }

/* Icon badges (colored circle behind an icon) */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 10px;
  color: #fff;
}
.icon-badge--lg { width: 64px; height: 64px; }
.icon-badge--lg .icon { width: 32px; height: 32px; }
.icon-badge--pink { background: linear-gradient(135deg, var(--pink), var(--pink-light)); }
.icon-badge--purple { background: linear-gradient(135deg, var(--purple-dark), var(--purple-light)); }
.icon-badge--green { background: linear-gradient(135deg, #15803d, var(--green)); }
.icon-badge--yellow { background: linear-gradient(135deg, #b45309, var(--yellow)); }
.icon-badge--brown { background: linear-gradient(135deg, #78350f, var(--brown)); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--grab {
  background: var(--grab-green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 177, 79, 0.35);
}

.btn--zalo {
  background: var(--zalo-blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 104, 255, 0.35);
}

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

.btn--small { padding: 10px 18px; font-size: 0.9rem; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 247, 240, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(107, 33, 168, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--purple-dark);
  margin-right: auto;
  white-space: nowrap;
}
.logo__icon { width: 32px; height: 40px; flex-shrink: 0; }

.nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a { color: var(--text-dark); opacity: 0.8; }
.nav a:hover { opacity: 1; color: var(--purple-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2.5px;
  background: var(--purple-dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-light) 60%, var(--pink));
  color: #fff;
  padding: 64px 0 96px;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.hero__blob--1 { width: 420px; height: 420px; top: -180px; right: -120px; }
.hero__blob--2 { width: 260px; height: 260px; bottom: -140px; left: -80px; background: rgba(255, 224, 102, 0.12); }

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 60px;
  display: block;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  margin-right: 8px;
}
.hero__badge--rating { background: rgba(255, 224, 102, 0.25); color: #ffe066; }
.hero__badge--rating .icon { fill: #ffe066; }

.hero__text h1 {
  font-size: 2.9rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.highlight { color: #ffe066; }

.hero__subtitle {
  font-size: 1.1rem;
  max-width: 480px;
  opacity: 0.95;
  margin-bottom: 28px;
}

.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero .btn--outline {
  border-color: #fff;
  color: #fff;
}

.hero__visual {
  position: relative;
  height: 300px;
}

.hero-cup {
  position: absolute;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}
.hero-cup--big { width: 160px; height: 200px; top: 12%; left: 28%; animation-delay: 0s; }
.hero-cup--small { width: 90px; height: 112px; }
.hero-cup--a { top: 55%; left: 2%; animation-delay: 0.8s; }
.hero-cup--b { top: 50%; left: 68%; animation-delay: 1.4s; }

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

/* USP */
.usp { padding: 48px 0 40px; }
.usp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.usp__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 12px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.usp__item p { font-weight: 700; font-size: 0.95rem; }

/* Section titles */
.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  color: var(--purple-dark);
}
.section-title--light { color: #fff; }
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 40px;
}
.section-subtitle--light { color: rgba(255,255,255,0.85); }

/* Menu */
.menu { padding: 80px 0; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(107, 33, 168, 0.18); }
.menu-card--signature { border: 2px solid var(--pink); }
.menu-card__badge {
  position: absolute;
  top: -12px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.menu-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
}
.menu-card h3 { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.menu-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; min-height: 42px; }
.menu-card__price { font-weight: 700; color: var(--purple-dark); font-size: 1.1rem; margin-top: auto; }
.menu__cta { text-align: center; margin-top: 48px; }
.menu__note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 20px; }

/* Combo */
.combo {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  padding: 80px 0;
}
.combo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.combo-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.combo-card--featured { transform: scale(1.04); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.combo-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.combo-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--purple-dark); font-weight: 700; }
.combo-card__desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; min-height: 60px; }
.combo-card__price { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 8px; }
.combo-card__old { text-decoration: line-through; color: var(--text-muted); font-size: 0.95rem; }
.combo-card__new { font-size: 1.7rem; font-weight: 700; color: var(--pink); }
.combo-card__save { display: inline-block; background: #f3e8ff; color: var(--purple-dark); font-weight: 700; font-size: 0.85rem; padding: 4px 12px; border-radius: 999px; }

/* Why */
.why { padding: 80px 0; }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.why__item { padding: 12px; display: flex; flex-direction: column; align-items: center; }
.why__item h3 { margin-bottom: 8px; font-size: 1.15rem; font-weight: 700; }
.why__item p { color: var(--text-muted); font-size: 0.95rem; }

/* Location */
.location { padding: 80px 0 100px; }
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.location__list { margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.location__list li { display: flex; align-items: center; gap: 10px; font-size: 0.98rem; color: var(--purple-dark); }
.location__list li strong { color: var(--text-dark); margin-right: 2px; }
.location__social { display: flex; gap: 16px; margin-bottom: 28px; font-weight: 700; color: var(--purple-dark); }
.location__social a { display: inline-flex; align-items: center; gap: 6px; }
.location__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.location__map {
  background: #efe6f8;
  border-radius: var(--radius);
  min-height: 260px;
  overflow: hidden;
}
.location__map iframe { display: block; }

/* Footer */
.footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,0.85);
  padding: 24px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__brand { display: inline-flex; align-items: center; gap: 8px; }

/* Responsive */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual { height: 200px; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .menu-card { align-items: center; text-align: center; }
  .why__grid { grid-template-columns: 1fr; }
  .location__inner { grid-template-columns: 1fr; }
  .location__list li { justify-content: center; }
  .combo__grid { grid-template-columns: 1fr; }
  .combo-card--featured { transform: none; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    border-bottom: 1px solid rgba(107,33,168,0.08);
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: flex; }

  .header__inner { gap: 12px; padding: 12px 16px; }
  .logo { font-size: 1.05rem; }
  .logo__icon { width: 26px; height: 32px; }
  .btn--small { padding: 9px 14px; font-size: 0.82rem; }
}

@media (max-width: 520px) {
  .hero__text h1 { font-size: 2.2rem; }
  .menu__grid { grid-template-columns: 1fr; }
}
