/* ─────────────────────────────────────────────────────────────────────────
   HappiTea India — design system

   Inspired by the brand-standy artwork (yellow+green) and the modular
   home.html reference. Plus Jakarta Sans for display, Outfit for body.
   Motion: float, marquee, zoom-on-hover, reveal-on-scroll, gradient-text.
   ───────────────────────────────────────────────────────────────────── */

:root {
  --happi-yellow: rgb(255, 193, 7);
  --happi-yellow-soft: rgb(254, 240, 138);
  --happi-green: rgb(16, 185, 129);
  --happi-green-dark: rgb(4, 120, 87);
  --happi-mint: rgb(167, 243, 208);
  --boba-900: rgb(41, 28, 18);
  --boba-800: rgb(74, 53, 37);
  --boba-100: rgb(245, 235, 228);
  --ink: rgb(15, 23, 42);
  --ink-dim: rgb(71, 85, 105);
  --line: rgb(230, 233, 239);
  --bg: rgb(255, 255, 255);
  --bg-soft: rgb(250, 250, 250);
  --shadow-soft: 0 10px 24px -16px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 18px 40px -22px rgba(15, 23, 42, 0.18);
  --shadow-hover: 0 28px 60px -22px rgba(15, 23, 42, 0.28);
  --gradient: linear-gradient(135deg, var(--happi-yellow), var(--happi-green) 60%, var(--happi-green-dark));
  --gradient-soft: linear-gradient(135deg, rgba(255, 193, 7, 0.10), rgba(16, 185, 129, 0.10));
  --font-heading: 'Plus Jakarta Sans', 'Manrope', sans-serif;
  --font-body: 'Outfit', 'Inter', system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--boba-900);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

::selection {
  background: var(--happi-yellow);
  color: var(--boba-900);
}

a {
  color: var(--happi-green-dark);
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── Top navigation ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, padding .25s ease;
}

.nav.scrolled {
  box-shadow: 0 8px 22px -18px rgba(15, 23, 42, .3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 38px;
  width: auto;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
}

.nav-brand:hover img {
  transform: rotate(360deg);
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--boba-900);
}

.india-flag {
  width: 22px;
  height: 14.6px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  margin-right: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}
.nav-brand-sub {
  display: inline-flex;
  align-items: center;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--happi-green-dark);
  padding-left: 6px;
  border-left: 1px solid rgba(15, 23, 42, 0.12);
  margin-left: 6px;
}
@media (max-width: 480px) {
  .india-flag { width: 18px; height: 12px; }
  .nav-brand-sub { font-size: 0.6rem; padding-left: 4px; margin-left: 4px; }
}
.footer .india-flag { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4); }

/* Footer brand-mark + India label — mirrors the 5àsec site's pattern so
   the flag identifies the regional site in BOTH the nav (top-left) and
   the footer (bottom-left), rather than appearing as a stray emoji or
   content marker. Lives next to the HappiTea logotype in .footer-logo. */
.footer-brand-sub {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding-left: 12px;
  margin-left: 4px;
  line-height: 1;
}
.footer-logo { display: inline-flex; align-items: center; gap: 12px; }


.nav-brand-text .accent {
  color: var(--happi-green);
}

.nav-links {
  display: none;
  gap: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  color: var(--boba-800);
}

@media (min-width: 900px) {
  .nav-links {
    display: inline-flex;
  }
}

.nav-links a {
  color: inherit;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: var(--happi-green-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .15s ease, color .15s ease;
}

.btn-primary {
  background: var(--happi-green);
  color: #fff;
  box-shadow: 0 14px 28px -10px rgba(16, 185, 129, .5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--happi-green-dark);
  color: #fff;
  box-shadow: 0 18px 38px -10px rgba(16, 185, 129, .55);
}

.btn-yellow {
  background: var(--happi-yellow);
  color: var(--boba-900);
  box-shadow: 0 14px 28px -10px rgba(255, 193, 7, .55);
}

.btn-yellow:hover {
  transform: translateY(-2px);
  background: rgb(217, 164, 0);
  color: var(--boba-900);
}

.btn-ghost {
  background: #fff;
  color: var(--boba-900);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--happi-green);
  color: var(--happi-green-dark);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 24px clamp(64px, 9vw, 110px);
  text-align: center;
  background:
    radial-gradient(720px 440px at 18% -10%, rgba(255, 193, 7, 0.18), transparent 60%),
    radial-gradient(800px 520px at 82% 110%, rgba(16, 185, 129, 0.18), transparent 60%),
    var(--bg-soft);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  animation: floatBlob 9s ease-in-out infinite alternate;
}

.hero::before {
  top: -180px;
  left: -120px;
  background: var(--happi-yellow);
}

.hero::after {
  bottom: -180px;
  right: -120px;
  background: var(--happi-green);
  animation-delay: 3s;
}

@keyframes floatBlob {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(40px) rotate(8deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  padding: 6px 18px;
  background: #fff;
  color: var(--happi-green-dark);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--boba-900);
}

.hero h1 .accent {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero .sub {
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  color: var(--ink-dim);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.55;
  font-weight: 500;
}

.cta-row {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── Stats strip ──────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 1000px;
  margin: 56px auto 0;
}

.stat {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 22px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat .v {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat .l {
  color: var(--ink-dim);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ─── Marquee strip ────────────────────────────────────────────────── */
.marquee {
  background: var(--gradient);
  color: var(--boba-900);
  padding: 18px 0;
  overflow: hidden;
  border-top: 5px solid var(--boba-900);
  border-bottom: 5px solid var(--boba-900);
  box-shadow: 0 14px 30px -14px rgba(15, 23, 42, .4);
}

.marquee-track {
  display: inline-flex;
  gap: 56px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── Section frame ────────────────────────────────────────────────── */
section {
  padding: clamp(64px, 9vw, 120px) 24px;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  color: var(--happi-green-dark);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--boba-900);
  line-height: 1.05;
}

.section-title .accent {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s linear infinite;
}

.section-sub {
  color: var(--ink-dim);
  font-size: 1.1rem;
  max-width: 720px;
  line-height: 1.55;
  margin: 0 0 40px;
}

/* ─── Story (about) two-column ─────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .split.right> :first-child {
    order: 2;
  }
}

.split .image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--shadow-card);
  height: clamp(360px, 50vw, 560px);
}

.split .image-wrap img,
.split .image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.19, 1, .22, 1);
}

.split .image-wrap:hover img,
.split .image-wrap:hover video {
  transform: scale(1.08);
}

.split .image-wrap .badge-floating {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--boba-900);
  box-shadow: var(--shadow-soft);
}

/* ─── Product card grid ────────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  perspective: 1200px;
}

.product-card {
  background: var(--bg-soft);
  border: 2px solid var(--line);
  border-radius: 28px;
  padding: 32px 24px;
  text-align: center;
  transition: transform .35s cubic-bezier(.19, 1, .22, 1), box-shadow .25s ease, border-color .25s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card:hover {
  border-color: var(--happi-green);
  box-shadow: var(--shadow-hover);
}

.product-card .icon-circle {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.product-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--boba-900);
}

.product-card p {
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.55;
}

/* ─── Outlet card (image-led) ──────────────────────────────────────── */
.outlets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.outlet-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-card);
  background: #000;
  transition: transform .3s ease, box-shadow .3s ease;
}

.outlet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.outlet-card img,
.outlet-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.19, 1, .22, 1);
}

.outlet-card:hover img,
.outlet-card:hover video {
  transform: scale(1.08);
}

.outlet-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(41, 28, 18, 0.85) 100%);
  z-index: 1;
}

.outlet-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: #fff;
  z-index: 2;
}

.outlet-card .info h3 {
  font-size: 1.6rem;
  margin: 0 0 4px;
}

.outlet-card .info .city {
  display: inline-block;
  padding: 4px 12px;
  background: var(--happi-yellow);
  color: var(--boba-900);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ─── Franchise model cards ────────────────────────────────────────── */
.franchise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.fmodel {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 32px;
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.fmodel::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.fmodel:hover {
  transform: translateY(-6px);
  border-color: var(--happi-green);
  box-shadow: var(--shadow-hover);
}

.fmodel:hover::after {
  opacity: 1;
}

.fmodel .tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--happi-green-dark);
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.fmodel h3 {
  font-size: 1.4rem;
  margin: 0 0 6px;
  color: var(--boba-900);
}

.fmodel .price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 4px 0 18px;
}

.fmodel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fmodel li {
  padding: 8px 0;
  font-size: .94rem;
  color: var(--ink-dim);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fmodel li::before {
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--happi-yellow);
  margin-top: 8px;
  box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
}

/* ─── CTA banner (gradient) ────────────────────────────────────────── */
.cta-banner {
  background: var(--gradient);
  color: var(--boba-900);
  text-align: center;
  padding: clamp(60px, 9vw, 110px) 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
  opacity: .5;
  animation: marquee 60s linear infinite;
}

.cta-banner .inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 16px;
  color: var(--boba-900);
}

.cta-banner h2 .accent {
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-banner p {
  font-size: 1.15rem;
  margin: 0 0 32px;
  color: rgba(41, 28, 18, 0.85);
  font-weight: 500;
}

/* ─── Timeline ─────────────────────────────────────────────────────── */
.timeline {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
}

.timeline::-webkit-scrollbar {
  height: 6px;
}

.timeline::-webkit-scrollbar-thumb {
  background: var(--happi-yellow);
  border-radius: 9999px;
}

.tl-card {
  flex-shrink: 0;
  width: 280px;
  background: var(--bg-soft);
  border: 2px solid var(--line);
  border-radius: 24px;
  padding: 24px 22px;
  transition: transform .2s ease, border-color .2s ease;
}

.tl-card:hover {
  transform: translateY(-4px);
  border-color: var(--happi-green);
}

.tl-card .year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.tl-card .event {
  font-size: .95rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ─── Form ─────────────────────────────────────────────────────────── */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  max-width: 640px;
  margin: 0 auto;
}

.form-card label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--boba-900);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--happi-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.form-card .input-error,
.form-card input.input-error,
.form-card select.input-error,
.form-card textarea.input-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
  background: #fef2f2;
}

.form-card .field-error {
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-card .field-error::before {
  content: "⚠";
  font-size: 0.95rem;
}

.form-row {
  margin-bottom: 18px;
}

.form-row.two {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

.form-success {
  background: var(--happi-mint);
  border: 2px solid var(--happi-green);
  color: var(--happi-green-dark);
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 600;
  margin-top: 14px;
}

/* ─── Footer ───────────────────────────────────────────────────────── */
.footer {
  background: var(--boba-900);
  color: rgba(255, 255, 255, 0.9);
  padding: 64px 24px 28px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--happi-yellow);
  margin: 0 0 18px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  padding: 6px 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color .15s ease;
}

.footer a:hover {
  color: var(--happi-yellow);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 42px;
  width: auto;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

/* ─── Floating WhatsApp ───────────────────────────────────────────── */
.fab-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 99;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 16px 36px -10px rgba(37, 211, 102, .55);
  text-decoration: none;
  transition: transform .15s ease;
  border: 4px solid #fff;
  animation: chatPulse 2.4s infinite;
}

.fab-wa:hover {
  transform: scale(1.08);
  color: #fff;
}

@keyframes chatPulse {

  0%,
  100% {
    box-shadow: 0 16px 36px -10px rgba(37, 211, 102, .55), 0 0 0 0 rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 16px 36px -10px rgba(37, 211, 102, .55), 0 0 0 18px rgba(37, 211, 102, 0);
  }
}

/* ─── Reveal-on-scroll ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.98);
  transition: opacity .9s cubic-bezier(.19, 1, .22, 1), transform .9s cubic-bezier(.19, 1, .22, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal.delay-1 {
  transition-delay: .1s;
}

.reveal.delay-2 {
  transition-delay: .2s;
}

.reveal.delay-3 {
  transition-delay: .3s;
}

.reveal.delay-4 {
  transition-delay: .4s;
}

/* ─── Mobile polish ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .nav-inner {
    padding: 10px 16px;
  }

  .btn {
    padding: 9px 18px;
    font-size: .88rem;
  }

  .btn-lg {
    padding: 12px 22px;
    font-size: .96rem;
  }

  section {
    padding: 56px 18px;
  }

  .form-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .fab-wa {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}

/* ─── Utility ──────────────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.gap-tight {
  gap: 6px;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  color: var(--boba-900);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: .82rem;
}

/* ─── Products bento — 6 cards, 3×2 grid, each card a different vibe ──
   Replaces the generic .grid-3 + .product-card combo on the homepage's
   "Our Products" section. Brings per-category colour, decorative
   gradients in the corners, animated icon plates, and badge pills so
   each card feels distinct instead of a row of clones. */
.products-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  perspective: 1400px;
}

@media (min-width: 700px) {
  .products-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .products-bento {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-card {
  position: relative;
  border-radius: 28px;
  padding: 36px 26px 28px;
  border: 2px solid transparent;
  background-clip: padding-box;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.19, 1, .22, 1),
    box-shadow .25s ease,
    border-color .25s ease;
  transform-style: preserve-3d;
  will-change: transform;
  isolation: isolate;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Decorative corner blob — unique gradient per card */
.p-card::before {
  content: '';
  position: absolute;
  inset: auto -40% -40% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(28px);
  opacity: .45;
  z-index: -1;
  transition: transform .6s ease, opacity .3s ease;
}

.p-card:hover::before {
  transform: scale(1.2);
  opacity: .65;
}

/* Subtle dot pattern that fades in on hover */
.p-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0;
  z-index: -1;
  transition: opacity .35s ease;
}

.p-card:hover::after {
  opacity: 1;
}

/* Icon plate — replaces .icon-circle with more depth */
.p-card .plate {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 18px;
  position: relative;
  transition: transform .35s cubic-bezier(.19, 1, .22, 1), border-radius .3s ease;
  box-shadow: 0 8px 18px -10px rgba(15, 23, 42, 0.25);
}

.p-card:hover .plate {
  transform: rotate(-6deg) scale(1.05);
  border-radius: 26px;
}

.p-card .tag-pill-mini {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.p-card h3 {
  font-size: 1.45rem;
  margin: 0 0 10px;
  color: var(--boba-900);
  font-weight: 800;
}

.p-card p {
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.55;
  font-size: .96rem;
}

.p-card .underline {
  display: inline-block;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  margin: 14px 0 16px;
}

/* ─── Per-category theming ─────────────────────────────────────────── */

/* 1. Milk & Milk Tea — sunny yellow / cream — the hero */
.p-card[data-cat="milk"] {
  background: linear-gradient(160deg, #fffbe6 0%, #fff 70%);
  border-color: rgba(255, 193, 7, 0.25);
}

.p-card[data-cat="milk"]::before {
  background: var(--happi-yellow);
}

.p-card[data-cat="milk"] .plate {
  background: linear-gradient(135deg, #fde68a, #fbbf24);
  color: #78350f;
}

.p-card[data-cat="milk"] .tag-pill-mini {
  background: var(--happi-yellow);
  color: var(--boba-900);
}

.p-card[data-cat="milk"] .underline {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.p-card[data-cat="milk"]:hover {
  border-color: var(--happi-yellow);
}

/* 2. Vietnamese Coffee — boba brown / caramel */
.p-card[data-cat="coffee"] {
  background: linear-gradient(160deg, #faf3eb 0%, #fff 70%);
  border-color: rgba(74, 53, 37, 0.18);
}

.p-card[data-cat="coffee"]::before {
  background: var(--boba-800);
  opacity: .35;
}

.p-card[data-cat="coffee"] .plate {
  background: linear-gradient(135deg, #d4a373, #8b5a2b);
  color: #fff;
}

.p-card[data-cat="coffee"] .tag-pill-mini {
  background: var(--boba-800);
  color: #fff;
}

.p-card[data-cat="coffee"] .underline {
  background: linear-gradient(90deg, #8b5a2b, #4a3525);
}

.p-card[data-cat="coffee"]:hover {
  border-color: var(--boba-800);
}

/* 3. Tea & Fruit Tea — peach / coral / refreshing */
.p-card[data-cat="fruit"] {
  background: linear-gradient(160deg, #fff1f2 0%, #fff 70%);
  border-color: rgba(244, 114, 182, 0.22);
}

.p-card[data-cat="fruit"]::before {
  background: #fb7185;
}

.p-card[data-cat="fruit"] .plate {
  background: linear-gradient(135deg, #fda4af, #f43f5e);
  color: #fff;
}

.p-card[data-cat="fruit"] .tag-pill-mini {
  background: #fb7185;
  color: #fff;
}

.p-card[data-cat="fruit"] .underline {
  background: linear-gradient(90deg, #fb7185, #ec4899);
}

.p-card[data-cat="fruit"]:hover {
  border-color: #fb7185;
}

/* 4. Vietnamese Specials — heritage green */
.p-card[data-cat="specials"] {
  background: linear-gradient(160deg, #ecfdf5 0%, #fff 70%);
  border-color: rgba(16, 185, 129, 0.25);
}

.p-card[data-cat="specials"]::before {
  background: var(--happi-green);
}

.p-card[data-cat="specials"] .plate {
  background: linear-gradient(135deg, var(--happi-green), var(--happi-green-dark));
  color: #fff;
}

.p-card[data-cat="specials"] .tag-pill-mini {
  background: var(--happi-green-dark);
  color: #fff;
}

.p-card[data-cat="specials"] .underline {
  background: linear-gradient(90deg, var(--happi-green), var(--happi-green-dark));
}

.p-card[data-cat="specials"]:hover {
  border-color: var(--happi-green);
}

/* 5. Cheese Foam — cream / playful gold */
.p-card[data-cat="cheese"] {
  background: linear-gradient(160deg, #fef9c3 0%, #fff 70%);
  border-color: rgba(234, 179, 8, 0.22);
}

.p-card[data-cat="cheese"]::before {
  background: #fcd34d;
}

.p-card[data-cat="cheese"] .plate {
  background: linear-gradient(135deg, #fde68a, #f97316);
  color: #7c2d12;
}

.p-card[data-cat="cheese"] .tag-pill-mini {
  background: #fb923c;
  color: #fff;
}

.p-card[data-cat="cheese"] .underline {
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.p-card[data-cat="cheese"]:hover {
  border-color: #fb923c;
}

/* 6. B'lao Tea Farm Origin — deep forest / heritage */
.p-card[data-cat="blao"] {
  background: linear-gradient(160deg, #d1fae5 0%, #fff 70%);
  border-color: rgba(4, 120, 87, 0.32);
}

.p-card[data-cat="blao"]::before {
  background: var(--happi-green-dark);
  opacity: .55;
}

.p-card[data-cat="blao"] .plate {
  background: linear-gradient(135deg, #34d399, #047857);
  color: #fff;
}

.p-card[data-cat="blao"] .tag-pill-mini {
  background: var(--happi-green-dark);
  color: var(--happi-yellow);
}

.p-card[data-cat="blao"] .underline {
  background: linear-gradient(90deg, #34d399, #047857);
}

.p-card[data-cat="blao"]:hover {
  border-color: var(--happi-green-dark);
}

/* "Made for India" standards card — closes the bento with dietary credentials.
   Indigo-tinted palette so it sits visually outside the six product categories. */
.p-card[data-cat="standards"] {
  background: linear-gradient(160deg, #e0e7ff 0%, #fff 72%);
  border-color: rgba(79, 70, 229, 0.22);
}

.p-card[data-cat="standards"]::before {
  background: #6366f1;
  opacity: .45;
}

.p-card[data-cat="standards"] .plate {
  background: linear-gradient(135deg, #a5b4fc, #4f46e5);
  color: #fff;
}

.p-card[data-cat="standards"] .tag-pill-mini {
  background: #4f46e5;
  color: #fff;
}

.p-card[data-cat="standards"] .underline {
  background: linear-gradient(90deg, #818cf8, #4338ca);
}

.p-card[data-cat="standards"]:hover {
  border-color: #4f46e5;
}

/* Badge chips inside the standards card */
.p-badges {
  margin-top: 10px !important;
}

.p-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
  color: #3730a3;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.p-badge .bi {
  color: #4f46e5;
  font-size: 0.9rem;
}

/* Featured "hero" card — spans 2 columns on the widest viewport.
   Applies to milk-tea (top) and B'lao (bottom) so the bento closes
   with a symmetric wide+narrow rhythm on both rows. */
@media (min-width: 1080px) {
  .p-card.featured {
    grid-column: span 2;
    min-height: 320px;
  }

  .p-card.featured h3 {
    font-size: 1.8rem;
  }

  .p-card.featured p {
    font-size: 1.05rem;
    max-width: 80%;
  }

  .p-card.featured .plate {
    width: 92px;
    height: 92px;
    font-size: 2.6rem;
  }
}

/* ─── FAQ list — visible Q&A block that matches the FAQPage JSON-LD.
   Google rich-result snippets + AI answer engines (ChatGPT, Perplexity,
   Gemini) lift directly from the visible DOM, so we keep the wording
   in lock-step with the schema. */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item:hover {
  border-color: var(--happi-green);
}

.faq-item[open] {
  border-color: var(--happi-green);
  box-shadow: 0 12px 28px -18px rgba(15, 23, 42, 0.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--boba-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--happi-green-dark);
}

.faq-chev {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--happi-green-dark);
  font-size: 1rem;
  transition: transform .25s ease, background .2s ease;
}

.faq-item[open] .faq-chev {
  transform: rotate(45deg);
  background: var(--happi-green);
  color: #fff;
}

.faq-body {
  padding: 0 22px 22px;
  color: var(--ink-dim);
  line-height: 1.65;
  font-size: .96rem;
}

.faq-body a {
  color: var(--happi-green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-body strong {
  color: var(--boba-900);
}

.faq-body em {
  color: var(--ink-dim);
  font-size: .92rem;
}

/* ─── HERO CAROUSEL ────────────────────────────────────────────────────
   Replaces the static hero. 6 slides, each with its own background photo,
   tone (yellow / green), eyebrow tag, headline + CTA pair. Auto-rotates
   every 6 s, pause on hover/touch, swipe-able on mobile, keyboard
   navigable. Mobile-first: every interactive element is ≥ 44px tap target. */
.hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-soft);
  user-select: none;
}

.hc-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hc-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 96px;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
  transition: opacity 1.1s cubic-bezier(.19, 1, .22, 1),
    transform 8s cubic-bezier(.19, 1, .22, 1);
  background: var(--slide-bg) center/cover no-repeat, var(--bg-soft);
}

.hc-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 540px at 18% 110%, rgba(255, 193, 7, 0.45), transparent 60%),
    radial-gradient(900px 540px at 82% -10%, rgba(16, 185, 129, 0.45), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.92) 75%);
  z-index: 1;
}

.hc-slide[data-tone="green"]::before {
  background:
    radial-gradient(900px 540px at 18% 110%, rgba(16, 185, 129, 0.42), transparent 60%),
    radial-gradient(900px 540px at 82% -10%, rgba(255, 193, 7, 0.30), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(236, 253, 245, 0.94) 80%);
}

.hc-slide[data-tone="yellow"]::before {
  background:
    radial-gradient(900px 540px at 18% 110%, rgba(255, 193, 7, 0.50), transparent 60%),
    radial-gradient(900px 540px at 82% -10%, rgba(16, 185, 129, 0.34), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 251, 231, 0.96) 80%);
}

.hc-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hc-slide.active.zooming {
  transform: scale(1.06);
}

.hc-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  text-align: center;
}

.hc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #fff;
  color: var(--happi-green-dark);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
  animation: hcFadeUp .9s .15s both;
}

.hc-slide h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.04;
  margin: 0 0 22px;
  color: var(--boba-900);
  letter-spacing: -.02em;
  animation: hcFadeUp 1s .25s both;
}

.hc-slide h1 .accent {
  background: var(--gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 5s linear infinite;
}

.hc-sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.55;
  font-weight: 500;
  animation: hcFadeUp 1s .35s both;
}

.hc-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: hcFadeUp 1s .45s both;
}

@keyframes hcFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Carousel controls ─────────────────────────────────────────────── */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(15, 23, 42, 0.05);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--boba-900);
  font-size: 1.4rem;
  box-shadow: var(--shadow-card);
  z-index: 5;
  transition: background .2s ease, transform .15s ease;
}

.hc-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.hc-prev {
  left: 22px;
}

.hc-next {
  right: 22px;
}

@media (min-width: 800px) {
  .hc-arrow {
    display: inline-flex;
  }
}

.hc-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 10px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.hc-dot {
  appearance: none;
  -webkit-appearance: none;
  width: 36px;
  height: 12px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(41, 28, 18, 0.25);
  cursor: pointer;
  transition: background .25s ease, width .25s ease, transform .15s ease;
}

.hc-dot:hover {
  background: rgba(41, 28, 18, 0.45);
}

.hc-dot.active {
  background: var(--happi-green-dark);
  width: 60px;
}

.hc-dot:focus-visible {
  outline: 2px solid var(--happi-green);
  outline-offset: 2px;
}

.hc-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(41, 28, 18, 0.06);
  z-index: 4;
}

.hc-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  transition: width .15s linear;
}

/* Stats strip — sits below the carousel, no longer inside the hero */
.stats-strip {
  padding: clamp(34px, 5vw, 56px) 24px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

/* ─── MOBILE POLISH for carousel ───────────────────────────────────── */
@media (max-width: 700px) {
  .hero-carousel {
    height: clamp(560px, 92vh, 720px);
  }

  .hc-slide {
    padding: 64px 18px 110px;
  }

  .hc-slide h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.6rem);
    margin-bottom: 16px;
  }

  .hc-sub {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .hc-eyebrow {
    font-size: .68rem;
    padding: 6px 14px;
    margin-bottom: 18px;
    letter-spacing: .1em;
  }

  .hc-cta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
  }

  .hc-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
  }

  .hc-dots {
    bottom: 22px;
    padding: 6px 10px;
    gap: 8px;
  }

  .hc-dot {
    width: 28px;
    height: 10px;
  }

  .hc-dot.active {
    width: 44px;
  }
}

/* ─── Mobile-nav drawer — hamburger + slide-out menu ──────────────── */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--boba-900);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88%);
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: -12px 0 36px -8px rgba(15, 23, 42, 0.25);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.19, 1, .22, 1);
}

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

.nav-mobile-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-soft);
  font-size: 1.2rem;
  color: var(--boba-900);
  cursor: pointer;
}

.nav-mobile a {
  padding: 16px 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--boba-900);
  border-radius: 14px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  background: var(--gradient-soft);
  color: var(--happi-green-dark);
  border-color: var(--happi-green);
}

.nav-mobile a i {
  color: var(--happi-green);
}

/* Mobile pass — better tap-target sizing across the rest of the site */
@media (max-width: 600px) {
  .btn {
    min-height: 44px;
  }

  .nav-inner {
    padding: 10px 16px;
    gap: 8px;
  }

  .nav-brand-text {
    font-size: 1.05rem;
  }

  .nav-brand img {
    height: 32px;
  }

  /* hide the desktop primary CTA on mobile — burger has it */
  .nav-inner>a.btn-primary {
    display: none;
  }

  .marquee {
    padding: 12px 0;
  }

  .marquee-track {
    font-size: .9rem;
    gap: 28px;
  }

  .stat {
    padding: 18px 12px;
  }

  .stat .v {
    font-size: 1.55rem;
  }

  .stat .l {
    font-size: .68rem;
  }

  section {
    padding: 48px 18px;
  }

  .section-title {
    font-size: clamp(1.6rem, 7.5vw, 2rem);
  }

  .section-sub {
    font-size: .98rem;
  }

  .p-card {
    padding: 28px 22px 24px;
    min-height: 0;
  }

  .p-card .plate {
    width: 64px;
    height: 64px;
    font-size: 1.85rem;
    margin-bottom: 14px;
  }

  .p-card h3 {
    font-size: 1.22rem;
  }

  .outlet-card {
    height: 320px;
  }

  .compare-table {
    font-size: .85rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 10px;
  }

  .footer-inner {
    gap: 28px;
  }

  .fab-wa {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    border-width: 3px;
  }
}