:root {
  --risa-purple: #7B2FF7;
  --risa-pink: #F107A3;
  --risa-neon-pink: #FE53BB;
  --risa-blue: #5BC7FF;
  --risa-teal: #00D4FF;
  --veggie-green: #08CB00;
  --veggie-orange: #FFB400;
  --charcoal: #1A1A1A;
  --bg-light: #FAFAFA;
  --border-subtle: #E5E5E5;
}

/* GLOBAL RESET & LAYOUT */

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(123,47,247,0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(241,7,163,0.08), transparent 55%),
    #ffffff;
}

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

a:hover {
  text-decoration: underline;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;      /* keeps content centered and readable */
  margin: 0 auto;         /* centers the entire website horizontally */
  padding-left: 1.5rem;   /* adds spacing on mobile/tablets */
  padding-right: 1.5rem;  /* adds spacing on mobile/tablets */
}

@media (min-width: 1400px) {
  .site-wrapper {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.05); /* ultra‑light transparent */
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  margin-right: 0.45rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.9rem;
  background: conic-gradient(from 160deg, var(--risa-purple), var(--risa-pink), var(--risa-neon-pink), var(--risa-purple));
  box-shadow: 0 0 18px rgba(123,47,247,0.55);
  position: relative;
}

.brand-mark::after {
  content: "R";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.brand-text-main {
  font-weight: 650;
  letter-spacing: 0.03em;
}

.brand-text-sub {
  font-size: 0.78rem;
  color: #666;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.17s ease-out;
  color: #444;
}

.nav-links a:hover {
  border-color: rgba(123,47,247,0.35);
  background: rgba(123,47,247,0.05);
}

.nav-cta {
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--risa-purple), var(--risa-pink));
  color: white !important;
  box-shadow: 0 10px 24px rgba(123,47,247,0.45);
  font-weight: 600;
  border: none !Important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(123,47,247,0.55);
}

/* HOME HERO (Risa Apps) */

.hero-image {
  position: relative;
  height: 78vh;
  border-radius: 1.6rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 3rem 2rem;
  color: white;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(255,255,255,0.05);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123,47,247,0.55),
    rgba(241,7,163,0.55),
    rgba(254,83,187,0.55)
  );
  filter: blur(40px) brightness(1.1);
  z-index: 1;
}

.hero-logo-overlay {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 420px;
  opacity: 0.22;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(16px) brightness(0.45);
  transform: scale(1.1);
}

.hero-content {
  z-index: 5;
  position: relative;
  max-width: 580px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(176, 16, 144, 0.75);
  border: 1px solid rgba(123,47,247,0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  font-size: 0.78rem;
  margin-bottom: 1.1rem;
}

.hero-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.hero-image-title {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero-gradient {
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink), var(--risa-neon-pink));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-image-subtitle {
  font-size: 1rem;
  margin-bottom: 1.6rem;
  opacity: 0.92;
  max-width: 34rem;
}

.hero-footnote {
  font-size: 0.8rem;
  color: #777;
}

.hero-tagline-highlight {
  font-weight: 600;
}

.hero-card {
  background: rgba(255,255,255,0.96);
  border-radius: 1.3rem;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 18px 60px rgba(15,23,42,0.12);
  border: 1px solid rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.hero-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(8,203,0,0.08);
  color: #107a00;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.hero-card-logo {
  width: 38px;
  height: 38px;
  border-radius: 1rem;
  background: radial-gradient(circle at 20% 0%, #ffffff 0%, #ffd18a 35%, var(--veggie-orange) 70%, var(--veggie-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  box-shadow: 0 12px 30px rgba(8,203,0,0.5);
}

.hero-card-title {
  font-weight: 600;
}

.hero-card-subtitle {
  font-size: 0.8rem;
  color: #666;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  font-size: 0.85rem;
  color: #555;
}

.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}


.hero-card-dot {
  margin-top: 0.25rem;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--veggie-green);
}

/* VeggieMate hero-image CTA button */
.btn-primary.hero-image-cta {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--veggie-orange), var(--veggie-green));
  color: white !important;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 28px rgba(8,203,0,0.35);
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.btn-primary.hero-image-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(8,203,0,0.45);
  text-decoration: none;
}

.btn-primary.hero-image-cta:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(8,203,0,0.3);
}

/* GRID SECTIONS & CARDS (GLOBAL) */

.section-heading {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Glow Section Enhancements */
.section-heading.glow {
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink), var(--risa-neon-pink));
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.section-heading.glow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink));
  opacity: 0.8;
}

.section-subheading.fade {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

.section-subheading {
  font-size: 0.9rem;
  color: #666;
  max-width: 38rem;
  margin-bottom: 1.8rem;
}

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

/* Cards + Grid */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem; /* final gap from glow-up */
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px) saturate(140%);
  border-radius: 1.1rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 12px 35px rgba(15,23,42,0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  font-size: 0.9rem; /* from original .card */
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15,23,42,0.12);
}

/* Soft animated gradient glow behind card */
.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(123,47,247,0.18),
    rgba(241,7,163,0.12),
    transparent 70%
  );
  opacity: 0.65;
  z-index: -1;
  animation: cardGlow 8s infinite ease-in-out alternate;
}

@keyframes cardGlow {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(10px,10px) scale(1.06); }
}

.card-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em; /* final value */
  color: #777;
  margin-bottom: 0.35rem;
}

.card-title {
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 0.35rem;
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink));
  -webkit-background-clip: text;
  color: transparent;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(8,203,0,0.06);
  color: #107a00;
  margin-top: 0.35rem;
}

/* SUPPORT & LEGAL PAGES */

.page-header {
  text-align: left;
  max-width: 720px;
}

.page-title {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.page-kicker {
  font-size: 0.82rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.content {
  max-width: 720px;
  font-size: 0.94rem;
  color: #444;
  line-height: 1.6;
}

.content h2 {
  font-size: 1.05rem;
  margin-top: 1.8rem;
  margin-bottom: 0.3rem;
}

.content h3 {
  font-size: 0.98rem;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
}

.content p {
  margin: 0.35rem 0 0.25rem;
}

.content ul {
  margin: 0.4rem 0 0.4rem 1.1rem;
  padding-left: 0;
}

.content li {
  margin-bottom: 0.25rem;
}

/* h3 / h4 headings used on privacy/terms */

.h3-heading {
  font-size: 1.25rem;
  font-weight: 600;
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink));
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.h4-heading {
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink));
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

/* VEGGIEMATE PAGE */

/* Hero logo */

.vm-hero-logo {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  display: block;
}

@media (max-width: 720px) {
  .vm-hero-logo {
    width: 95px;
    margin-bottom: 0.8rem;
  }
}

/* VeggieMate layout & hero */

.veggie-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.3rem;
  align-items: start;
}

.veggie-hero-section {
  position: relative;
  border-radius: 1.4rem;
  padding: 2.5rem 2rem;
  overflow: hidden;
}

.veggie-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 10%, rgba(255,180,0,0.35), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(8,203,0,0.35), transparent 60%);
  filter: blur(30px) brightness(1.15);
  z-index: -1;
  pointer-events: none;
}

.veggie-hero-wrap {
  padding: 2.2rem 0 2.8rem;
}

.veggie-hero-title {
  background: linear-gradient(120deg, var(--veggie-orange), var(--veggie-green));
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  margin: 0 0 0.7rem;
}

.veggie-header-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(8,203,0,0.08);
  color: #0f6f00;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.veggie-highlight {
  font-weight: 600;
  color: var(--veggie-green);
}

/* VeggieMate feature list */

.veggie-feature-list {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 1.1rem;
  font-size: 0.9rem;
}

.veggie-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.veggie-check {
  margin-top: 0.22rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid var(--veggie-green);
  position: relative;
}

.veggie-check::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--veggie-green);
  border-bottom: 2px solid var(--veggie-green);
  transform: rotate(-40deg);
}

/* VeggieMate badge / app store */

.app-store-badge {
  padding: 0.7rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #000;
  color: white;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.75rem;
}

.app-store-badge span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.6rem;
  opacity: 0.8;
}

/* VeggieMate side card + list */

.veggie-side-card {
  background: linear-gradient(145deg, #0a0f1e, #0f172a);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.3rem 1.4rem;
  border-radius: 1.2rem;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
  color: #e6ffee;
}

.veggie-side-card h3 {
  margin-top: 0.2rem;
  font-size: 1.1rem;
  background: linear-gradient(120deg, var(--veggie-orange), var(--veggie-green));
  -webkit-background-clip: text;
  color: transparent;
}

.veggie-side-list {
  margin-top: 0.8rem;
  padding-left: 0;
  list-style: none;
}

.veggie-side-list li {
  margin-bottom: 0.45rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.veggie-dot {
  margin-top: 0.37rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--veggie-orange);
}

/* VeggieMate glass card */

.veggie-card {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem 1.8rem;
  border-radius: 1.2rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.35);
  color: #0f172a;
  margin-top: 2rem;
  font-size: 0.84rem;
}

.veggie-card p {
  color: #1a1a1a;
}

.veggie-card-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #475569;
  margin-bottom: 0.45rem;
}

/* VeggieMate video */

.veggie-video-container {
  margin-top: 2rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background: rgba(0,0,0,0.6);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

.veggie-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
}

/* Glow on video hover */
.veggie-video-container:hover {
  box-shadow: 0 25px 70px rgba(0,0,0,0.55);
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(230,230,230,0.8);
  background: rgba(250,250,250,0.95);
  margin-top: 1.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.2rem 1.5rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Social icons */

.footer-links .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.45);
  font-size: 0.78rem;
  color: #4b5563;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}


.footer-links .social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15,23,42,0.18);
  border-color: rgba(107,114,128,0.75);
  background: #f9fafb;
}

/* Social icon base (if used elsewhere) */

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Instagram SVG icon */

.instagram-icon {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'>\
<linearGradient id='g' x1='0%' y1='0%' x2='100%' y2='100%'>\
<stop offset='0%' stop-color='%23fdf497'/>\
<stop offset='50%' stop-color='%23fd5949'/>\
<stop offset='75%' stop-color='%23d6249f'/>\
<stop offset='100%' stop-color='%23285AEB'/>\
</linearGradient>\
<rect width='512' height='512' rx='110' fill='url(%23g)'/>\
<path fill='white' d='M256 164c-50.2 0-91 40.8-91 91s40.8 91 91 91 91-40.8 91-91-40.8-91-91-91zm0 150c-32.6 0-59-26.4-59-59s26.4-59 59-59 59 26.4 59 59-26.4 59-59 59zm94-159c0 11.3-9.2 20.5-20.5 20.5S309 166.3 309 155s9.2-20.5 20.5-20.5S350 143.7 350 155z'/>\
</svg>");
}

/* TikTok SVG icon */

.tiktok-icon {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'>\
<path fill='%23000000' d='M182 0h48v48c-28 0-48-20-48-48z'/>\
<path fill='%23FE2C55' d='M230 65v33c-29 0-53-12-72-32v91c0 36-29 65-65 65S28 193 28 157s29-65 65-65c6 0 12 1 17 3v35c-5-3-11-4-17-4-19 0-35 16-35 35s16 35 35 35 35-16 35-35V0h54c0 28 20 55 48 65z'/>\
<path fill='%2325F4EE' d='M230 65v33c-29 0-53-12-72-32v18c17 14 37 21 72 21v33c-29 0-53-12-72-32v49c0 36-29 65-65 65S28 193 28 157s29-65 65-65c6 0 12 1 17 3v21c-5-3-11-4-17-4-19 0-35 16-35 35s16 35 35 35 35-16 35-35V0h35c0 28 20 55 48 65z'/>\
</svg>");
}

/* SUPPORT + LEGAL PAGE GLOW-UP HELPERS */

.glow-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.glow-title {
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink), var(--risa-neon-pink));
  -webkit-background-clip: text;
  color: transparent;
}

.glow-sm {
  background: linear-gradient(120deg, var(--risa-purple), var(--risa-pink));
  -webkit-background-clip: text;
  color: transparent;
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.25s;
}

.support-box {
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  margin: 1rem 0 1.2rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.support-cta {
  margin-top: 2.2rem;
  text-align: center;
}

.support-cta .button.primary,
.support-cta .cta-primary {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--risa-purple), var(--risa-pink));
  color: white !important;
  box-shadow: 0 12px 30px rgba(123,47,247,0.4);
  font-weight: 600;
  display: inline-block;
  border: none;
}

.header-glow-wrap {
  max-width: 720px;
  margin: 0 auto;
}

/* RESPONSIVE */

@media (max-width: 880px) {
  .hero,
  .veggie-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 1.2rem;
  }

  .nav-inner {
    padding-inline: 1rem;
  }

  .section {
    padding-inline: 1rem;
  }
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile drawer wrapper */
.mobile-nav-wrapper {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100vh;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  box-shadow: -4px 0 25px rgba(0,0,0,0.18);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: right 0.32s ease;
  z-index: 999;
}

/* Drawer open */
.mobile-nav-wrapper.open {
  right: 0;
}

/* Close button */
.mobile-nav-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-bottom: 1rem;
  color: #333;
}

/* Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 998;
}

.mobile-nav-wrapper.open ~ .mobile-nav-overlay,
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile nav links inside drawer */
.mobile-nav-wrapper .mobile-nav-links {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-wrapper.open + .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 720px) {
  .nav-hamburger {
    display: flex;
  }
  .nav-links {
    /* display: none; removed for mobile drawer support */
  }
  .desktop-nav {
  display: none !important;
}

  .section {
    padding-block: 2.4rem 3rem;
  }

  .hero-title,
  .veggie-hero-title {
    font-size: 1.85rem;
  }
}
/* Footer nav links */
.footer-nav a {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 500;
  transition: color 0.18s;
}

/* Alternate footer nav link colors */
.footer-nav a:nth-child(odd) {
  color: #4b5563; /* neutral grey */
}

.footer-nav a:nth-child(even) {
  color: var(--risa-purple); /* Risa brand purple */
}

.footer-nav a:hover {
  text-decoration: underline;
}