@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   PEARLA TEA — Global Design System
   Brand: warm cream #FAD898 · brown #8B5E3C · deep #120C08
   ============================================================ */

:root {
  --bg:          #F8EED8;
  --bg2:         #F3E6CC;
  --bg3:         #EDDCBE;
  --surface:     #FDF6E8;
  --surface2:    #F8EDD6;
  --surface3:    #F3E3C4;

  --cream:       #C17B2A;
  --cream2:      #A86820;
  --peach:       #F0A84A;
  --gold:        #D4941A;
  --brown:       #8B5E3C;
  --dark-brown:  #2C1A0E;

  --text:        #2C1A0E;
  --text-soft:   #5A3520;
  --text-muted:  #8B6040;
  --text-dim:    #B89070;

  --border:      rgba(44, 26, 14, 0.10);
  --border-hover:rgba(44, 26, 14, 0.25);
  --glow-sm:     0 0 20px rgba(193, 123, 42, 0.08);
  --glow-md:     0 0 40px rgba(193, 123, 42, 0.12);
  --glow-lg:     0 0 80px rgba(193, 123, 42, 0.16);
  --shadow:      0 8px 32px rgba(44, 26, 14, 0.12);
  --shadow-lg:   0 20px 60px rgba(44, 26, 14, 0.18);

  --font-serif:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-sans:   'Plus Jakarta Sans', system-ui, sans-serif;

  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:      150ms var(--ease);
  --t-mid:       250ms var(--ease);
  --t-slow:      400ms var(--ease);

  --nav-h:       96px;
  --max-w:       1200px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: only light; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface3); border-radius: 3px; }

/* ── Selection ───────────────────────────────────────────── */
::selection { background: rgba(193,123,42,0.20); color: var(--dark-brown); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { max-width: 65ch; line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.35em 1em;
  border-radius: 100px;
  background: rgba(44, 26, 14, 0.08);
  border: 1px solid var(--border);
  margin-bottom: 1.2rem;
}

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.section { padding: clamp(5rem, 10vw, 9rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }
.flex { display: flex; }
.grid { display: grid; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform var(--t-mid), box-shadow var(--t-mid), background var(--t-mid);
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.btn--primary {
  background: var(--dark-brown);
  color: #FAD898;
  box-shadow: 0 4px 20px rgba(44,26,14,0.20);
}
.btn--primary:hover {
  background: #3D2010;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44,26,14,0.30);
}
.btn--ghost {
  background: transparent;
  color: var(--dark-brown);
  border: 1.5px solid var(--border-hover);
}
.btn--ghost:hover {
  background: rgba(44,26,14,0.06);
  border-color: var(--dark-brown);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 0.6em 1.4em;
  font-size: 0.85rem;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--t-slow), backdrop-filter var(--t-slow), box-shadow var(--t-slow);
}
.nav::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cream2), var(--cream), var(--peach), var(--cream));
  z-index: 101;
}
.nav.scrolled {
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo img {
  height: 66px;
  width: 66px;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
.nav__logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-brown);
  line-height: 1.1;
}
.nav__logo-name span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: none;
  color: var(--text-muted);
}
/* Desktop nav links — hidden (always use hamburger) */
.nav__links { display: none; }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  flex: 1;
  justify-content: flex-end;
}
/* Login / account button in nav */
.nav__login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6em 1.4em;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark-brown);
  border: 1.5px solid var(--border-hover);
  background: transparent;
  transition: all var(--t-mid);
  cursor: pointer;
  font-family: var(--font-sans);
  text-decoration: none;
}
.nav__login-btn:hover {
  background: var(--dark-brown);
  color: #FAD898;
  border-color: var(--dark-brown);
}
/* Signed-in state — avatar pill */
.nav__login-btn--signed-in {
  padding: 0.3em 0.85em 0.3em 0.3em;
  gap: 0.5rem;
  border-color: var(--border-hover);
  background: var(--surface);
}
.nav__login-btn--signed-in:hover {
  background: var(--bg3);
  color: var(--dark-brown);
  border-color: var(--dark-brown);
}
.nav__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
}
.nav__avatar--sm {
  width: 22px;
  height: 22px;
  font-size: 0.9rem;
  display: inline-flex;
  vertical-align: middle;
}
.nav__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.nav__avatar-initial {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1;
}
.nav__avatar-emoji { line-height: 1; }
.nav__avatar-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark-brown);
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav__login-btn--signed-in:hover .nav__avatar-name { color: #FAD898; }

/* ── Avatar picker (account page) ── */
.avatar-picker-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 500px;
}
.avatar-picker__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.avatar-picker__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: none;
}
.avatar-picker__preview-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.avatar-picker__preview {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--border);
}
.avatar-picker__label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.avatar-preset-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.avatar-preset {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--bg2);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t-fast), transform var(--t-fast), background var(--t-fast);
  line-height: 1;
}
.avatar-preset:hover {
  border-color: var(--cream);
  background: var(--surface2);
  transform: scale(1.08);
}
.avatar-preset.selected {
  border-color: var(--cream);
  background: rgba(193,123,42,0.12);
  box-shadow: 0 0 0 3px rgba(193,123,42,0.2);
}
@media (max-width: 480px) {
  .avatar-preset-grid { grid-template-columns: repeat(4, 1fr); }
  .avatar-picker__preview-row { flex-direction: column; align-items: flex-start; }
}
/* Hamburger — always visible, anchored left */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--t-fast);
  cursor: pointer;
  flex-shrink: 0;
}
.nav__hamburger:hover { background: rgba(44,26,14,0.06); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark-brown);
  border-radius: 1px;
  transition: transform var(--t-mid), opacity var(--t-mid);
}
/* hamburger stays as 3 lines — close lives inside the panel */

/* Slide-out menu */
.nav__mobile {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 85vw);
  background: var(--bg);
  flex-direction: column;
  padding: 0;
  gap: 0;
  z-index: 200;
  border-right: 1px solid var(--border);
  box-shadow: 8px 0 48px rgba(44,26,14,0.15);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
}
.nav__mobile.open { transform: translateX(0); }
.nav__mobile__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,26,14,0.4);
  z-index: 199;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.nav__mobile__overlay.open {
  display: block;
  opacity: 1;
}
/* Panel header with logo + close */
.nav__mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.nav__mobile__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__mobile__brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.nav__mobile__brand-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.1;
}
.nav__mobile__brand-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nav__mobile__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 1.2rem;
  transition: background var(--t-fast), color var(--t-fast);
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: transparent;
  flex-shrink: 0;
}
.nav__mobile__close:hover { background: var(--border); color: var(--text); }
/* Nav links inside panel */
.nav__mobile__links {
  padding: 0.75rem 0;
  flex: 1;
}
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
  border-radius: 0;
}
.nav__mobile a::after {
  content: '›';
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: transform var(--t-fast), color var(--t-fast);
}
.nav__mobile a:hover {
  background: rgba(212,148,26,0.08);
  color: var(--amber);
  padding-left: 1.75rem;
}
.nav__mobile a:hover::after { transform: translateX(3px); color: var(--amber); }
.nav__mobile__actions {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.nav__mobile__actions .btn--primary {
  background: var(--cream);
  color: #fff;
  box-shadow: 0 4px 20px rgba(193,123,42,0.25);
}
.nav__mobile__actions .btn--primary:hover {
  background: var(--cream2);
}
.nav__mobile__divider {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0 1.5rem 0.5rem;
  margin-top: 0.5rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(139,94,60,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 30%, rgba(250,216,152,0.06) 0%, transparent 50%),
    var(--bg);
}
.hero__bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(250,216,152,0.25), rgba(139,94,60,0.05));
  border: 1px solid rgba(250,216,152,0.12);
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}
.hero__content { max-width: 600px; }
.hero__title {
  margin-bottom: 1.25rem;
  color: var(--text);
}
.hero__title em {
  font-style: normal;
  color: var(--cream);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 48ch;
}
.hero__location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero__location svg { color: var(--cream); flex-shrink: 0; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,216,152,0.12) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero__logo-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(250,216,152,0.15);
  animation: spinRing 20s linear infinite;
}
.hero__logo-ring::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  width: 10px; height: 10px;
  background: var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--cream);
}
@keyframes spinRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: logoFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
.hero__orbs {
  position: absolute;
  inset: -40px;
  pointer-events: none;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0;
  animation: orbOrbit linear infinite;
  box-shadow: 0 0 8px rgba(250,216,152,0.5);
}
@keyframes orbOrbit {
  0%   { opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; }
}

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }
.reveal--delay-5 { transition-delay: 500ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__logo-img, .hero__logo-glow, .hero__logo-ring,
  .hero__bubble, .hero__orb { animation: none !important; }
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header h2 { color: var(--text); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-soft); font-size: 1.05rem; }

/* ── Drink Cards ─────────────────────────────────────────── */
.drink-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.drink-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--glow-sm);
  border-color: var(--border-hover);
}
.drink-card__visual {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.drink-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.drink-card:hover .drink-card__img { transform: scale(1.06); }
.drink-card__visual img { transition: transform var(--t-slow); }
.drink-card:hover .drink-card__visual img { transform: scale(1.06); }
.drink-card__badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--cream);
  color: var(--dark-brown);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25em 0.75em;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.drink-card__body {
  padding: 1.4rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.drink-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.drink-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.drink-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drink-card__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
}
.drink-card__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2em 0.7em;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
}
.tag--vegan { border-color: rgba(22,163,74,0.3); color: #16a34a; }
.tag--popular { border-color: rgba(193,123,42,0.3); color: var(--cream); }
.tag--new { border-color: rgba(109,40,217,0.3); color: #7c3aed; }
.tag--spicy { border-color: rgba(248,113,113,0.3); color: #f87171; }

/* ── Gradient visuals for drinks ─────────────────────────── */
.drink-visual {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.drink-visual--brown-sugar {
  background: linear-gradient(145deg, #3D1C08 0%, #6B3515 40%, #A8611F 70%, #D4941A 100%);
}
.drink-visual--taro {
  background: linear-gradient(145deg, #2D1B4E 0%, #5B3A8A 50%, #9B72CF 80%, #C4A8E8 100%);
}
.drink-visual--matcha {
  background: linear-gradient(145deg, #0F2A1A 0%, #1E5C35 45%, #3D9B5F 75%, #7EC995 100%);
}
.drink-visual--strawberry {
  background: linear-gradient(145deg, #3D0D20 0%, #8B1A3A 45%, #D44A72 75%, #F090A8 100%);
}
.drink-visual--classic {
  background: linear-gradient(145deg, #2C1A08 0%, #5A3A1A 45%, #8B6040 75%, #C4956A 100%);
}
.drink-visual--lychee {
  background: linear-gradient(145deg, #1A0A2E 0%, #3D1A5E 45%, #8B4FB8 75%, #D4A0E8 100%);
}
.drink-visual--mango {
  background: linear-gradient(145deg, #3D2008 0%, #8B5015 45%, #D48A20 75%, #F0C050 100%);
}
.drink-visual--passionfruit {
  background: linear-gradient(145deg, #2E0A1A 0%, #6B1535 45%, #C44070 75%, #F07098 100%);
}
.drink-visual svg {
  width: 80px;
  height: 80px;
  opacity: 0.25;
}
.drink-visual__cup {
  position: absolute;
  bottom: 0;
  width: 70px;
  opacity: 0.4;
}

/* ── About / Split Layout ────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
}
.about-visual__inner {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(250,216,152,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,94,60,0.2) 0%, transparent 50%),
    var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual__logo {
  width: 60%;
  opacity: 0.9;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}
.about-visual__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--cream);
  color: var(--dark-brown);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.about-visual__badge span {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-serif);
  line-height: 1;
}

/* ── Stats ───────────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat { flex: 1; min-width: 100px; }
.stat__num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Customise Section ───────────────────────────────────── */
/* ── How It Works ────────────────────────────────────────── */
.how-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.how-section::before,
.how-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}
.how-section::before { top: 0; }
.how-section::after  { bottom: 0; }

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3.5rem;
}
.how-step {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  text-align: center;
  position: relative;
}
.how-icon {
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.how-step__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  color: var(--dark-brown);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.how-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.how-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}
.how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  margin-top: 5rem;
  color: var(--border-hover);
  font-size: 1.4rem;
}
.how-connector::before {
  content: '→';
  color: var(--cream);
  opacity: 0.6;
  font-size: 1.75rem;
}

/* ── Customise option buttons (used in modals on menu.html) ─ */
.custom-option-group {
  margin-bottom: 1.5rem;
}
.custom-option-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.custom-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.custom-option {
  padding: 0.45em 1.1em;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  background: var(--surface);
  transition: all var(--t-mid);
  cursor: pointer;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 0.25em;
  font-family: var(--font-sans);
}
.custom-option:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg2);
}
.custom-option.selected {
  background: var(--dark-brown);
  border-color: var(--dark-brown);
  color: #fff;
}

/* ── Gallery Grid ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
}
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item__inner {
  width: 100%;
  height: 100%;
  transition: transform var(--t-slow);
}
.gallery-item:hover .gallery-item__inner { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,12,8,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-mid);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { color: var(--cream); width: 32px; height: 32px; }

/* ── Find Us Section ─────────────────────────────────────── */
.findus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.findus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.25rem;
}
.findus-card h4 {
  color: var(--cream);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.findus-card h4 svg { width: 18px; height: 18px; color: var(--cream); }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-soft); }
.hours-row .time { color: var(--text-muted); font-weight: 600; }
.hours-row.today .day,
.hours-row.today .time { color: var(--cream); font-weight: 700; }
.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  aspect-ratio: 4/3;
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) saturate(0.7);
}

/* ── Order Banner ────────────────────────────────────────── */
.order-banner {
  background: var(--dark-brown);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.order-banner::before {
  content: '茶';
  position: absolute;
  font-family: var(--font-serif);
  font-size: 30vw;
  font-weight: 700;
  color: rgba(139,94,60,0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}
.order-banner h2 {
  color: #FAD898;
  margin-bottom: 0.75rem;
}
.order-banner p { color: #D4B890; margin: 0 auto 2rem; }
.order-banner .btn--primary {
  background: #FAD898;
  color: var(--dark-brown);
}
.order-banner .btn--primary:hover { background: #F5C870; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: #1C1009;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(250,216,152,0.10);
  color: #D4B890;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 26ch;
}
.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer__col ul a:hover { color: #FAD898; }
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250,216,152,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: none;
}
.footer__socials {
  display: flex;
  gap: 0.75rem;
}
.footer__social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-mid);
}
.footer__social:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(250,216,152,0.08);
}
.footer__social svg { width: 17px; height: 17px; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(139,94,60,0.15) 0%, transparent 70%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { color: var(--text-soft); font-size: 1.05rem; margin: 0 auto; }

/* ── Menu Filters ────────────────────────────────────────── */
.menu-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.6em 1.4em;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--t-mid);
  min-height: 44px;
}
.filter-btn:hover {
  border-color: var(--cream);
  color: var(--cream);
}
.filter-btn.active {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--dark-brown);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.menu-item { display: none; }
.menu-item.visible { display: flex; flex-direction: column; }

/* ── Customise Modal ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,12,8,0.85);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-mid);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(40px);
  transition: transform var(--t-slow) var(--ease-spring);
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.modal__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-fast);
  cursor: pointer;
}
.modal__close:hover { color: var(--cream); border-color: var(--cream); }
.modal__close svg { width: 16px; height: 16px; }

/* ── Gallery Page ────────────────────────────────────────── */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-page-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--border);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.gallery-page-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow-sm);
}
.gallery-page-item:nth-child(3n+1) { aspect-ratio: 4/5; }

/* ── Contact Page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-input, .form-textarea {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
  outline: none;
  min-height: 48px;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--cream);
  box-shadow: 0 0 0 3px rgba(250,216,152,0.10);
}
.form-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__logo-wrap { margin-top: 3rem; }
  .hero__content { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__location { justify-content: center; }
  .hero__subtitle { max-width: 100%; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .how-grid { grid-template-columns: 1fr; }
  .how-connector { display: none; }
  .how-step { margin-bottom: 1.5rem; }
  .findus-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 1; }
  .gallery-item--tall { grid-row: span 1; aspect-ratio: 1; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__logo-img { width: 170px; height: 170px; }
  .hero__logo-glow { width: 260px; height: 260px; }
  .hero__logo-ring { width: 220px; height: 220px; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide, .gallery-item--tall { aspect-ratio: 1; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid);
}
.review-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
  font-style: normal;
  margin: 0;
  flex: 1;
  position: relative;
  padding-top: 0.5rem;
}
.review-card__quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 0;
  color: var(--cream);
  opacity: 0.3;
  position: absolute;
  top: 0.75rem;
  left: -0.25rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.review-card__source {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
/* Summary bar */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviews-summary__score {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1;
}
.reviews-summary__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 200ms var(--ease-spring), box-shadow 200ms ease, padding 200ms ease;
  animation: wa-bounce 2.5s ease-in-out 1.5s 3;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float__label { white-space: nowrap; }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-8px); }
  60%       { transform: translateY(-4px); }
}
@media (max-width: 480px) {
  .whatsapp-float { padding: 0.75rem; border-radius: 50%; }
  .whatsapp-float__label { display: none; }
}

/* ============================================================
   EMAIL CAPTURE / NEWSLETTER BAR
   ============================================================ */
.newsletter-bar {
  background: linear-gradient(135deg, var(--dark-brown) 0%, #3d2410 100%);
  color: #FAD898;
  padding: 3.5rem 0;
  text-align: center;
}
.newsletter-bar__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.newsletter-bar__tag {
  display: inline-block;
  background: rgba(250,216,152,0.15);
  border: 1px solid rgba(250,216,152,0.25);
  color: #FAD898;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.newsletter-bar h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #FDF6EC;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.newsletter-bar p {
  font-size: 0.92rem;
  color: rgba(250,216,152,0.75);
  margin-bottom: 1.5rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-bar__form {
  display: flex;
  gap: 0.6rem;
  max-width: 420px;
  margin: 0 auto;
}
.newsletter-bar__form input[type="email"] {
  flex: 1;
  padding: 0.75em 1.1em;
  border-radius: 100px;
  border: 1.5px solid rgba(250,216,152,0.2);
  background: rgba(255,255,255,0.08);
  color: #FDF6EC;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
}
.newsletter-bar__form input[type="email"]::placeholder { color: rgba(250,216,152,0.45); }
.newsletter-bar__form input[type="email"]:focus {
  border-color: rgba(250,216,152,0.6);
  background: rgba(255,255,255,0.13);
}
.newsletter-bar__form button {
  padding: 0.75em 1.4em;
  border-radius: 100px;
  background: #FAD898;
  color: var(--dark-brown);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease, transform 150ms ease;
  flex-shrink: 0;
}
.newsletter-bar__form button:hover {
  background: #fce4b0;
  transform: translateY(-1px);
}
.newsletter-bar__form button:active { transform: translateY(0); }
.newsletter-bar__success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #86efac;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.newsletter-bar__note {
  font-size: 0.74rem;
  color: rgba(250,216,152,0.4);
  margin-top: 0.9rem;
}
@media (max-width: 480px) {
  .newsletter-bar__form { flex-direction: column; }
  .newsletter-bar__form input[type="email"],
  .newsletter-bar__form button { border-radius: 12px; width: 100%; }
}

/* ── Order Status Bar ───────────────────────────────────── */
#order-status-bar {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 150;
  transform: translateY(-110%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
#order-status-bar.osb--visible {
  transform: translateY(0);
  pointer-events: all;
}
.osb-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: var(--dark-brown);
  border-bottom: 1px solid rgba(250,216,152,0.18);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  font-size: 0.875rem;
  color: var(--text-soft);
}
.osb-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #86efac;
  flex-shrink: 0;
  animation: osb-pulse 2s ease-in-out infinite;
}
@keyframes osb-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(134,239,172,0.5); }
  50%     { box-shadow: 0 0 0 5px rgba(134,239,172,0); }
}
.osb-msg { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.osb-track {
  color: var(--cream);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.osb-track:hover { text-decoration: underline; }
.osb-close {
  background: none; border: none;
  color: var(--text-dim); cursor: pointer;
  font-size: 1.1rem; padding: 0 0.2rem; line-height: 1;
  flex-shrink: 0;
  transition: color var(--t-fast);
}
.osb-close:hover { color: var(--text); }

/* ── Daily Special ──────────────────────────────────────── */
.special-banner {
  background: linear-gradient(135deg, rgba(250,216,152,0.13) 0%, rgba(250,216,152,0.04) 100%);
  border: 1.5px solid rgba(250,216,152,0.35);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
  text-decoration: none;
}
.special-banner:hover {
  border-color: rgba(250,216,152,0.6);
  box-shadow: 0 0 24px rgba(250,216,152,0.12);
}
.special-banner__img {
  width: 80px; height: 80px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  overflow: hidden;
}
.special-banner__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.special-banner__body { flex: 1; min-width: 0; }
.special-banner__eyebrow {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream);
  margin-bottom: 0.2rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.special-banner__eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cream);
  animation: osb-pulse 2s ease-in-out infinite;
}
.special-banner__name {
  font-family: var(--font-serif); font-size: 1.15rem;
  color: var(--text); margin-bottom: 0.2rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.special-banner__desc {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.5;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.special-banner__price {
  text-align: right; flex-shrink: 0;
}
.special-banner__price-now {
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--cream);
}
.special-banner__price-was {
  font-size: 0.8rem; color: var(--text-dim); text-decoration: line-through; display: block;
}
@media (max-width: 480px) {
  .special-banner { flex-wrap: wrap; }
  .special-banner__price { text-align: left; }
}
