/* Manchatti Restaurant — multi-page site styles
   Palette inspired by manchatti.ae: warm terracotta, deep charcoal, cream */

:root {
  --terracotta: #a0522d;
  --terracotta-dark: #8a4322;
  --charcoal: #2b2622;
  --charcoal-soft: #3a342f;
  --cream: #fdf8f1;
  --cream-warm: #f5ead8;
  --line: #e7dcc7;
  --text: #2b2622;
  --muted: #6b6258;
  --shadow: 0 10px 30px rgba(43, 38, 34, 0.08);
  --radius: 14px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Italiana', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }
img { max-width: 100%; display: block; }

.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--terracotta);
  margin: 0 0 0.5em;
}
.eyebrow.center, .center { text-align: center; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.muted { color: var(--muted); }

/* ---------- Top notice + header ---------- */
.topbar {
  background: var(--terracotta);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
}
.topbar a { color: #fff; text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  box-shadow: var(--shadow);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: 'Italiana', serif;
  font-size: 1.4rem;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); padding: 4px; }
.site-nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1.25rem; }
.site-nav a {
  color: #ede4d3;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.2rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--terracotta);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #fff5;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 8px;
  padding: 0.25rem 0.6rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header { flex-wrap: wrap; }
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    margin-top: 0.75rem;
    border-top: 1px solid #fff2;
    padding-top: 0.5rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.7rem 0; border-bottom: 1px solid #fff1; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn.primary {
  background: var(--terracotta);
  color: #fff;
}
.btn.primary:hover { background: var(--terracotta-dark); color: #fff; transform: translateY(-1px); }
.btn.ghost {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn.ghost:hover { background: var(--terracotta); color: #fff; }
.btn.big { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn.small { padding: 0.55rem 1.1rem; font-size: 0.78rem; }
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }
.center .cta-row { justify-content: center; }

/* ---------- Sections ---------- */
main { min-height: 60vh; }
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.section.alt { background: var(--cream-warm); max-width: none; padding-left: 1.5rem; padding-right: 1.5rem; }
.section.alt > * { max-width: var(--max); margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.hero-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-text h1 { margin-bottom: 0.5em; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
  .hero-img img { aspect-ratio: 4/3; }
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero .lead { margin: 0 auto; }
.badge {
  display: inline-block;
  margin-top: 1.25rem;
  background: var(--cream-warm);
  color: var(--terracotta-dark);
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---------- Tiles (home category grid) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.tile:hover { transform: translateY(-4px); }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  font-family: 'Italiana', serif;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 30%, transparent);
}

/* ---------- Dish grid ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
}
.dish {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s;
}
.dish:hover { transform: translateY(-4px); }
.dish-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--cream-warm);
}
.dish-img img { width: 100%; height: 100%; object-fit: cover; }
.side-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--terracotta);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dish-body { padding: 1.25rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.dish-body h3 { color: var(--terracotta-dark); margin-bottom: 0.5rem; }
.dish-body p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.pills { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.pill {
  background: var(--cream-warm);
  color: var(--terracotta-dark);
  border: 1px solid var(--line);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* ---------- CTA blocks ---------- */
.cta {
  text-align: center;
  background: var(--charcoal);
  color: #fff;
  padding: 4rem 1.5rem;
  margin-top: 5rem;
}
.cta h2 { color: #fff; }
.cta p { color: #d9cfbe; }
.cta .btn.ghost { color: #fff; border-color: #fff; }
.cta .btn.ghost:hover { background: #fff; color: var(--charcoal); }
.cta-banner {
  text-align: center;
  background: var(--terracotta);
  color: #fff;
  border-radius: var(--radius);
  padding: 4rem 2rem;
}
.cta-banner h2, .cta-banner p { color: #fff; }
.cta-banner .btn.primary { background: #fff; color: var(--terracotta); }
.cta-banner .btn.primary:hover { background: var(--cream-warm); }
.cta-banner .btn.ghost { color: #fff; border-color: #fff; }
.cta-banner .btn.ghost:hover { background: #fff; color: var(--terracotta); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.about-img img {
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- Full menu page ---------- */
.menu-section { padding: 4rem 0; border-top: 1px solid var(--line); }
.menu-section:first-of-type { border-top: 0; }
.menu-section-head { text-align: center; max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Delivery ---------- */
.delivery-card {
  display: inline-block;
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin: 1rem;
  max-width: 460px;
  text-align: left;
  vertical-align: top;
}
.delivery-card.alt { background: var(--cream-warm); }
.delivery-card h2 { color: var(--terracotta-dark); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
}
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-form input, .contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 1px;
}
.contact-side h3 { color: var(--terracotta-dark); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #c9bfae;
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}
.foot-grid h4 {
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.foot-grid a { color: #d9cfbe; }
.foot-grid a:hover { color: #fff; }
.foot-logo { width: 56px; border-radius: 50%; background: var(--terracotta); padding: 4px; margin-bottom: 0.5rem; }
.foot-name { color: #fff; font-family: 'Italiana', serif; font-size: 1.3rem; margin: 0; }
.copyright {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #ffffff15;
  text-align: center;
  font-size: 0.8rem;
  color: #8a8175;
}

/* ============================================================
   VISHU SADYA CAMPAIGN
   ============================================================ */

:root {
  --vishu-gold: #d4a017;
  --vishu-gold-dark: #a37510;
  --vishu-leaf: #2f5d3a;
  --vishu-leaf-dark: #1f3f27;
  --vishu-cream: #fff7e6;
}

/* ----- Hero ----- */
.vishu-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.vh-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.vh-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(1.08);
  transform: scale(1.06);
  animation: vh-zoom 18s ease-in-out infinite alternate;
}
.vh-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(20,12,5,0.55) 70%, rgba(20,12,5,0.85) 100%),
    linear-gradient(180deg, rgba(20,12,5,0.55) 0%, transparent 30%, transparent 70%, rgba(20,12,5,0.65) 100%);
}
@keyframes vh-zoom {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.12) translateY(-1%); }
}

.vh-content {
  position: relative;
  max-width: 820px;
  padding: 6rem 1.5rem;
  z-index: 1;
}
.vh-eyebrow {
  display: inline-block;
  background: rgba(212, 160, 23, 0.18);
  border: 1px solid var(--vishu-gold);
  color: var(--vishu-gold);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(6px);
}
.vh-title {
  font-family: 'Italiana', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,0.55);
}
.vh-title span {
  background: linear-gradient(135deg, #ffe89c 0%, var(--vishu-gold) 50%, #ffe89c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.vh-date {
  font-size: 1.15rem;
  color: var(--vishu-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.vh-desc {
  color: #f0e6d0;
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.vh-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.vh-phone {
  font-size: 0.9rem;
  color: #c9bfae;
}
.vh-phone a { color: var(--vishu-gold); font-weight: 700; }

/* Steam wisps over the hero image */
.steam {
  position: absolute;
  bottom: 24%;
  left: 50%;
  width: 14px;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0;
  transform-origin: bottom;
  pointer-events: none;
}
.steam.s1 { left: 46%; animation: steam 6s ease-in-out infinite; }
.steam.s2 { left: 50%; animation: steam 7s 1.2s ease-in-out infinite; }
.steam.s3 { left: 54%; animation: steam 8s 2.4s ease-in-out infinite; }
@keyframes steam {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  20%  { opacity: 0.7; }
  100% { transform: translateY(-180px) scaleX(1.6); opacity: 0; }
}

/* Pulsing CTA button */
.btn.pulse {
  position: relative;
  box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.7);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.55); }
  70%  { box-shadow: 0 0 0 18px rgba(212, 160, 23, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0); }
}

/* ----- 27 items grid ----- */
.vishu-items-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--vishu-cream) 100%);
  max-width: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.vishu-items-section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.vishu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.vishu-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.75rem 1rem;
  cursor: pointer;
  font: inherit;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  animation: float-breathe 6s ease-in-out infinite;
}
.vishu-item:nth-child(2n)  { animation-delay: -1.5s; }
.vishu-item:nth-child(3n)  { animation-delay: -3s; }
.vishu-item:nth-child(5n)  { animation-delay: -4.5s; }
@keyframes float-breathe {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.vishu-item:hover, .vishu-item:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 36px rgba(160, 82, 45, 0.18);
  border-color: var(--vishu-gold);
  outline: none;
}
.vi-num {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--terracotta);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}
.vi-img {
  display: block;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-warm);
}
.vi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.vishu-item:hover .vi-img img { transform: scale(1.1); }
.vi-name {
  font-family: 'Italiana', serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.2;
}

/* Tooltip */
.vishu-tooltip {
  position: absolute;
  transform: translate(-50%, -100%);
  background: var(--charcoal);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  max-width: 240px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  pointer-events: none;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  animation: tip-in 0.18s ease-out;
}
.vishu-tooltip strong {
  color: var(--vishu-gold);
  font-family: 'Italiana', serif;
  font-size: 1rem;
}
.vishu-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--charcoal);
  transform: translateX(-50%) rotate(45deg);
}
@keyframes tip-in {
  from { opacity: 0; transform: translate(-50%, -90%); }
  to   { opacity: 1; transform: translate(-50%, -100%); }
}

/* ----- Pre-order section ----- */
.vishu-order-section { padding-top: 5rem; padding-bottom: 5rem; }
.vishu-order {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.vishu-order h2 { color: var(--terracotta-dark); }
.benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}
.benefits li { padding-left: 0.25rem; }
.vishu-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--vishu-gold);
}
.vishu-form label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vishu-form input,
.vishu-form select,
.vishu-form textarea {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--text);
}
.vishu-form input:focus,
.vishu-form select:focus,
.vishu-form textarea:focus {
  outline: 2px solid var(--vishu-gold);
  outline-offset: 1px;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 800px) {
  .vishu-order { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ----- Reveal hooks (used by motion.js) ----- */
.reveal { will-change: opacity, transform; }
@media (prefers-reduced-motion: reduce) {
  .vh-bg img, .steam, .vishu-item, .btn.pulse { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ----- Order policy + delivery hints ----- */
.order-policy {
  margin-top: 2rem;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--vishu-gold);
}
.order-policy h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 1rem;
}
.order-policy ol {
  padding-left: 1.25rem;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}
.order-policy ol li::marker {
  color: var(--vishu-gold);
  font-weight: 700;
}
.policy-note {
  margin: 1.25rem 0 0;
  padding: 0.85rem 1rem;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--terracotta-dark);
  line-height: 1.5;
}
.delivery-hint {
  margin: -0.5rem 0 1rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.hint-pickup {
  color: var(--terracotta-dark);
  background: var(--cream-warm);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  display: inline-block;
}
.hint-delivery {
  color: var(--vishu-leaf-dark);
  background: #e8f5e9;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  display: inline-block;
}
