/* ============================================================
   RVP Connect — Premium CSS v13.0
   Color Palette: Primary #6C2BD9 · Secondary #8B5CF6
                  Accent #F97316 · BG #F8FAFC · Text #0F172A
   Font: Poppins / Inter
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0F172A; background: #F8FAFC; line-height: 1.6;
  overflow-x: hidden; max-width: 100vw;
  font-size: 14px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { line-height: 1.2; font-weight: 700; }

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --brand:        #6C2BD9;
  --brand-dark:   #5521b5;
  --brand-mid:    #8B5CF6;
  --brand-light:  #EDE9FE;
  --accent:       #F97316;
  --success:      #10b981;
  --text-primary: #0F172A;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;
  --border:       #e2e8f0;
  --card-bg:      #ffffff;
  --bg-main:      #F8FAFC;
  --bg-alt:       #f1f5f9;
  --radius:       18px;
  --radius-sm:    12px;
  --shadow:       0 2px 12px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
  --shadow-md:    0 8px 32px rgba(108,43,217,.14);
  --shadow-hover: 0 12px 40px rgba(108,43,217,.18);
  --header-h:     62px;
  --img-h:        130px;
}

/* ── Container ─────────────────────────────────────────────── */
.rvp-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 16px; width: 100%;
}
@media (min-width: 768px) { .rvp-container { padding: 0 24px; } }
.rvp-main { min-height: calc(100vh - var(--header-h)); background: var(--bg-main); }
.rvp-page-wrap { padding: 0 0 72px; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.rvp-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(108,43,217,.08);
  height: var(--header-h); width: 100%;
  transition: box-shadow .2s;
}
.rvp-header.scrolled { box-shadow: 0 4px 24px rgba(108,43,217,.1); }

.rvp-header-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 14px 0 16px;
  display: flex; align-items: center; height: 100%; gap: 0;
}
.rvp-logo-wrap { flex-shrink: 0; }
.rvp-logo-text {
  display: flex; align-items: center; gap: 3px;
  font-weight: 900; font-size: 1.15rem; letter-spacing: -.03em; white-space: nowrap;
  background: linear-gradient(135deg, #6C2BD9, #F97316);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rvp-logo-text strong { font-weight: 900; }

.rvp-nav-desktop {
  display: none; flex: 1; justify-content: center; gap: 2px;
}
@media (min-width: 1024px) { .rvp-nav-desktop { display: flex; } }
.rvp-nav-desktop .nav-link {
  padding: 8px 14px; border-radius: 10px; font-size: .8rem; font-weight: 500;
  color: var(--text-muted); transition: color .15s, background .15s;
}
.rvp-nav-desktop .nav-link:hover,
.rvp-nav-desktop .nav-link.active { color: var(--brand); background: var(--brand-light); }
.rvp-nav-desktop .nav-link.active { font-weight: 700; }

.rvp-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; min-width: 40px;
  align-items: center; justify-content: center;
  border-radius: 12px; border: 1.5px solid var(--border);
  background: #fff; margin-left: auto; flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
@media (min-width: 1024px) { .rvp-hamburger { display: none; } }
.rvp-hamburger span {
  width: 18px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: transform .2s, opacity .2s; display: block;
}
.rvp-hamburger.open { background: var(--brand-light); border-color: var(--brand-light); }
.rvp-hamburger.open span { background: var(--brand); }
.rvp-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rvp-hamburger.open span:nth-child(2) { opacity: 0; }
.rvp-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.rvp-mobile-drawer {
  position: fixed; top: 0; right: -100%;
  width: min(300px, 88vw); height: 100vh;
  background: #fff; z-index: 1200;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.15); overflow-y: auto;
}
.rvp-mobile-drawer.open { right: 0; }
.drawer-inner { padding: 20px; }
.drawer-header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 14px;
}
.drawer-close {
  width: 34px; height: 34px; border-radius: 10px; background: var(--bg-alt);
  color: var(--text-muted); display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; font-size: 1rem; flex-shrink: 0;
}
.drawer-nav { display: flex; flex-direction: column; gap: 2px; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-primary);
  transition: all .15s; font-weight: 500;
}
.drawer-nav a:hover { background: var(--brand-light); color: var(--brand); }
.rvp-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1100;
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.rvp-drawer-overlay.open { opacity: 1; visibility: visible; }

/* ═══════════════════════════════════════════════
   PREMIUM HERO — full-width bg image + overlay
   ═══════════════════════════════════════════════ */
.rvp-hero-premium {
  position: relative; overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
  text-align: center;
}
@media (max-width: 640px) { .rvp-hero-premium { min-height: 300px; } }

.rvp-hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}
.rvp-hero-premium:hover .rvp-hero-bg-image { transform: scale(1.03); }

.rvp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,12,41,.72) 0%,
    rgba(108,43,217,.62) 50%,
    rgba(15,12,41,.68) 100%
  );
}

.rvp-hero-content {
  position: relative; z-index: 2;
  padding-top: 52px; padding-bottom: 52px;
  width: 100%;
}
@media (max-width: 640px) { .rvp-hero-content { padding-top: 36px; padding-bottom: 36px; } }

.rvp-hero-inner { max-width: 580px; margin: 0 auto; }

.rvp-hero-logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 18px;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.2);
  margin-bottom: 18px; backdrop-filter: blur(8px);
}

.rvp-hero-welcome {
  color: rgba(255,255,255,.7); font-size: .82rem;
  font-weight: 500; letter-spacing: .04em;
  margin-bottom: 6px;
}

.rvp-hero-title-premium {
  font-size: 36px; font-weight: 900; line-height: 1.1;
  color: #fff; margin-bottom: 14px; letter-spacing: -.04em;
}
@media (min-width: 640px) { .rvp-hero-title-premium { font-size: clamp(36px, 6vw, 54px); } }
@media (max-width: 480px) { .rvp-hero-title-premium { font-size: 30px; } }

.rvp-hero-tagline-premium {
  color: rgba(255,255,255,.78); font-size: .96rem;
  margin-bottom: 30px; line-height: 1.65; max-width: 440px; margin-left: auto; margin-right: auto;
}
@media (max-width: 480px) { .rvp-hero-tagline-premium { font-size: .88rem; } }

.rvp-hero-cta {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 0;
}
.rvp-cta-primary {
  background: linear-gradient(135deg, #6C2BD9, #8B5CF6);
  color: #fff; padding: 13px 28px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .875rem;
  box-shadow: 0 4px 20px rgba(108,43,217,.45);
  transition: transform .2s, box-shadow .2s;
}
.rvp-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,43,217,.55); }
.rvp-cta-ghost {
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; padding: 12px 26px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .875rem; transition: all .2s;
  backdrop-filter: blur(6px);
}
.rvp-cta-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   STATISTICS SECTION — glassmorphism cards
   ═══════════════════════════════════════════════ */
.rvp-stats-section {
  background: #fff; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.rvp-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
}
@media (max-width: 480px) { .rvp-stats-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } }

.rvp-stat-card {
  background: var(--bg-main);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .22s, box-shadow .22s;
}
.rvp-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #fff; }

.rvp-stat-icon {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}
.rvp-stat-number {
  font-size: 1.5rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #6C2BD9, #8B5CF6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rvp-stat-label {
  font-size: .68rem; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .07em;
}

/* ═══════════════════════════════════════════════
   QUICK LINKS / MODULE CARDS
   ═══════════════════════════════════════════════ */
.rvp-quick-links {
  background: #fff; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.rvp-ql-header { margin-bottom: 18px; }
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
@media (max-width: 760px) { .quick-links-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; } }
@media (max-width: 400px) { .quick-links-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; } }

.ql-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 14px 8px; border-radius: var(--radius);
  background: var(--bg-main);
  border: 1.5px solid var(--border);
  transition: transform .22s, box-shadow .22s, border-color .22s;
  cursor: pointer;
}
.ql-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
  background: #fff;
}
.ql-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.14); flex-shrink: 0;
  transition: transform .22s;
}
.ql-card:hover .ql-icon-wrap { transform: scale(1.1); }
@media (max-width: 400px) { .ql-icon-wrap { width: 42px; height: 42px; } }
.ql-label {
  font-size: .65rem; font-weight: 700; color: var(--text-muted);
  text-align: center; line-height: 1.3;
}

/* ═══════════════════════════════════════════════
   PROMO BANNERS
   ═══════════════════════════════════════════════ */
.rvp-promo-banners {
  background: #fff; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.rvp-promo-banners .rvp-container {
  display: flex; flex-direction: column; gap: 10px;
}
.rvp-promo-card {
  display: flex; align-items: center; gap: 14px;
  border-radius: var(--radius); padding: 14px 16px;
  border: 1.5px solid; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.rvp-promo-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.rvp-promo-veggies {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-color: #86efac;
}
.rvp-promo-foodie {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-color: #fdba74;
}
.promo-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.promo-text { flex: 1; min-width: 0; }
.rvp-promo-veggies .promo-title { font-weight: 800; font-size: .875rem; color: #15803d; }
.rvp-promo-foodie .promo-title { font-weight: 800; font-size: .875rem; color: #c2410c; }
.rvp-promo-veggies .promo-sub { font-size: .72rem; color: #166534; margin-top: 2px; }
.rvp-promo-foodie .promo-sub { font-size: .72rem; color: #9a3412; margin-top: 2px; }
.promo-action {
  color: #fff; padding: 8px 14px; border-radius: 10px;
  font-weight: 700; font-size: .75rem; flex-shrink: 0; white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   FEATURED BUSINESSES — horizontal scroll
   ═══════════════════════════════════════════════ */
.rvp-featured-biz-scroll {
  display: flex; gap: 14px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 10px; scroll-snap-type: x mandatory;
  /* hide scrollbar */
  scrollbar-width: none; -ms-overflow-style: none;
}
.rvp-featured-biz-scroll::-webkit-scrollbar { display: none; }

.rvp-feat-biz-card {
  flex-shrink: 0; width: 160px;
  background: #fff; border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden; scroll-snap-align: start;
  box-shadow: var(--shadow);
  transition: transform .22s, box-shadow .22s;
  text-decoration: none; display: block;
}
@media (min-width: 640px) { .rvp-feat-biz-card { width: 180px; } }
.rvp-feat-biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.feat-biz-img-wrap {
  height: 110px; overflow: hidden; background: var(--bg-alt);
}
.feat-biz-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .4s;
}
.rvp-feat-biz-card:hover .feat-biz-img-wrap img { transform: scale(1.07); }

.feat-biz-body { padding: 10px 12px; }
.feat-biz-cat {
  display: inline-block;
  background: var(--brand-light); color: var(--brand);
  font-size: .6rem; font-weight: 700; padding: 2px 7px;
  border-radius: 100px; margin-bottom: 5px;
  letter-spacing: .04em; text-transform: uppercase;
}
.feat-biz-name {
  font-size: .8rem; font-weight: 700; color: var(--text-primary);
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.rvp-section { padding: 44px 0; }
.rvp-section-alt { background: var(--bg-alt); }

.rvp-section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 22px; gap: 12px;
}
.rvp-section-titles { display: flex; flex-direction: column; gap: 2px; }
.rvp-eyebrow {
  font-size: .64rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: var(--brand); display: block; margin-bottom: 2px;
}
.rvp-section-title {
  font-size: 24px; font-weight: 800;
  color: var(--text-primary); letter-spacing: -.025em;
  line-height: 1.2;
}
@media (max-width: 640px) { .rvp-section-title { font-size: 20px; } }
.rvp-view-all {
  color: var(--brand); font-size: .75rem; font-weight: 700; white-space: nowrap;
  padding: 7px 14px; border: 1.5px solid var(--brand-light);
  border-radius: 10px; background: var(--brand-light); transition: all .15s; flex-shrink: 0;
}
.rvp-view-all:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* Page Hero */
.rvp-page-hero {
  background: linear-gradient(135deg, #0f0c29 0%, #6C2BD9 55%, #302b63 100%);
  padding: 32px 0 28px; color: #fff; margin-bottom: 28px;
}
.rvp-page-hero-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rvp-page-hero .rvp-eyebrow { color: rgba(255,255,255,.55); }
.rvp-page-title {
  font-size: clamp(1.3rem, 4vw, 2rem); font-weight: 900; letter-spacing: -.03em;
}

/* ═══════════════════════════════════════════════
   CARDS — premium redesign
   ═══════════════════════════════════════════════ */
.rvp-grid-3 { display: grid; grid-template-columns: 1fr; gap: 16px; }
.rvp-grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }

@media (min-width: 600px) {
  .rvp-grid-3 { grid-template-columns: repeat(2,1fr); gap: 18px; }
}
@media (min-width: 960px) {
  .rvp-grid-3 { grid-template-columns: repeat(3,1fr); gap: 22px; }
  .rvp-grid-4 { grid-template-columns: repeat(4,1fr); gap: 18px; }
}

.rvp-card {
  background: var(--card-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s cubic-bezier(.4,0,.2,1), box-shadow .25s;
  border: 1.5px solid var(--border);
}
.rvp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(108,43,217,.12); }

.card-img-wrap {
  position: relative; overflow: hidden;
  background: var(--bg-alt);
  height: var(--img-h); max-height: var(--img-h); flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transition: transform .45s;
}
.rvp-card:hover .card-img-wrap img { transform: scale(1.07); }

.card-body { padding: 14px 16px; }
.card-title {
  font-size: 16px; font-weight: 700; margin-bottom: 5px;
  line-height: 1.3; color: var(--text-primary);
}
.card-desc {
  font-size: 14px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Event date badge */
.event-date-badge {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, #6C2BD9, #8B5CF6);
  color: #fff; border-radius: 10px; padding: 5px 9px;
  text-align: center; min-width: 40px;
  box-shadow: 0 4px 12px rgba(108,43,217,.35);
}
.edb-day { display: block; font-size: .95rem; font-weight: 800; line-height: 1; }
.edb-mon { display: block; font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }

/* Category tags */
.category-tag, .cuisine-tag {
  display: inline-block; background: var(--brand-light); color: var(--brand);
  font-size: .63rem; font-weight: 700; padding: 3px 9px;
  border-radius: 100px; margin-bottom: 5px;
  letter-spacing: .04em; text-transform: uppercase;
}

.amenity-timing, .event-meta { font-size: 14px; color: var(--text-muted); margin-bottom: 5px; }

/* Buttons */
.rvp-btn-wa {
  display: inline-flex; align-items: center; gap: 4px;
  background: #25d366; color: #fff; padding: 6px 11px;
  border-radius: 8px; font-size: .73rem; font-weight: 700; transition: background .15s;
}
.rvp-btn-wa:hover { background: #1da851; }
.rvp-btn-sm {
  display: inline-block; background: var(--brand); color: #fff;
  padding: 6px 11px; border-radius: 8px; font-size: .73rem; font-weight: 700;
}
.rvp-btn-sm.outline { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.rvp-btn-sm.outline:hover { background: var(--brand); color: #fff; }
.rvp-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  color: #fff; padding: 11px 24px; border-radius: 12px; font-size: .875rem;
  font-weight: 700; box-shadow: 0 4px 14px rgba(108,43,217,.3); transition: all .15s;
}
.rvp-btn-primary:hover { transform: translateY(-1px); }
.w-full { width: 100%; text-align: center; display: block; }

/* Help card */
.help-card .card-body { padding: 18px 16px; }
.help-contact-btn {
  display: inline-block; background: var(--brand-light); color: var(--brand);
  padding: 7px 13px; border-radius: 9px; font-size: .76rem; font-weight: 700;
  margin-top: 8px; border: 1px solid rgba(108,43,217,.15); transition: all .15s;
}
.help-contact-btn:hover { background: var(--brand); color: #fff; }

/* Around Us */
.around-distance { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }

/* Filter / Search */
.rvp-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; overflow-x: auto; padding-bottom: 4px; }
.filter-btn {
  padding: 7px 15px; border-radius: 10px; font-size: .76rem; font-weight: 600;
  flex-shrink: 0; background: #fff; color: var(--text-muted);
  border: 1.5px solid var(--border); cursor: pointer; transition: all .15s;
}
.filter-btn.active, .filter-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.rvp-search-bar { margin-bottom: 18px; }
.rvp-input {
  width: 100%; padding: 11px 15px; border-radius: 12px;
  border: 1.5px solid var(--border); font-size: .875rem;
  color: var(--text-primary); outline: none; transition: border-color .15s, box-shadow .15s;
}
.rvp-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(108,43,217,.1); }

/* Stars */
.rvp-stars { color: #f59e0b; font-size: .8rem; }
.star.empty { color: var(--text-light); }

/* Empty State */
.rvp-empty-state { text-align: center; padding: 52px 20px; color: var(--text-muted); }
.rvp-empty-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.rvp-empty-msg { font-size: .88rem; }

/* Priority */
.priority-badge { display: inline-block; font-size: .66rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; }
.priority-badge.low    { background: #f0fdf4; color: #15803d; }
.priority-badge.medium { background: #eff6ff; color: #1d4ed8; }
.priority-badge.high   { background: #fffbeb; color: #92400e; }
.priority-badge.critical, .priority-badge.urgent { background: #fef2f2; color: #dc2626; }

/* Alert */
.rvp-alert { padding: 10px 13px; border-radius: 11px; font-size: .82rem; margin-bottom: 10px; }
.rvp-alert.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.rvp-alert.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.rvp-form-group { display: flex; flex-direction: column; gap: 5px; }
.rvp-form-group label { font-size: .78rem; font-weight: 600; }
.rvp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .rvp-form-row { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.rvp-footer {
  background: linear-gradient(135deg, #0f0c29 0%, #1e1b4b 100%);
  color: rgba(255,255,255,.6); padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.footer-logo-text {
  font-size: 1.2rem; font-weight: 900; letter-spacing: -.03em; color: #fff; margin-bottom: 10px; display: block;
}
.footer-logo-text strong {
  background: linear-gradient(135deg, #F97316, #F59E0B);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-links h4 { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #F97316; margin-bottom: 14px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,.38); margin-bottom: 8px; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 18px; text-align: center; font-size: .72rem; color: rgba(255,255,255,.22); }

/* ═══════════════════════════════════════════════
   PREMIUM BOTTOM NAV — modern mobile app style
   ═══════════════════════════════════════════════ */
.rvp-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(108,43,217,.08);
  /* Rounded top corners — premium app feel */
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
  padding: 8px 4px max(10px, env(safe-area-inset-bottom));
  grid-template-columns: repeat(5,1fr);
}
@media (max-width: 1024px) { .rvp-bottom-nav { display: grid; } }

.bn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 4px 2px; color: var(--text-light);
  font-size: .58rem; font-weight: 700;
  transition: color .2s; text-transform: uppercase; letter-spacing: .03em;
}
.bn-item svg { width: 22px; height: 22px; transition: transform .2s; }
.bn-item:active svg { transform: scale(.9); }

/* Icon wrap — pill/bubble for active state */
.bn-icon-wrap {
  width: 42px; height: 32px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}

.bn-item.bn-active { color: var(--brand); }
.bn-item.bn-active .bn-icon-wrap {
  background: var(--brand-light);
  transform: scale(1.05);
}
.bn-item:hover { color: var(--brand); }
.bn-item:hover .bn-icon-wrap { background: var(--brand-light); }

/* ═══════════════════════════════════════════════
   MOBILE PADDING
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .rvp-main   { padding-bottom: 72px; }
  .rvp-footer { padding-bottom: 80px; }
}

/* Small screen tweaks */
@media (max-width: 640px) {
  :root { --img-h: 115px; }
  .rvp-section { padding: 36px 0; }
  .card-body { padding: 12px 14px; }
  .rvp-grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 380px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Business Highlights block */
.biz-highlights {
  background: #f8f5ff; border-left: 3px solid var(--brand);
  padding: 7px 10px; border-radius: 0 10px 10px 0; margin-bottom: 10px;
  font-size: .73rem; color: #4c1d95; line-height: 1.4;
}
.biz-highlights strong {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--brand); display: block; margin-bottom: 3px;
}

/* ═══════════════════════════════════════════════
   INLINE ORDER FORM — shared by Foodie & Veggies
   ═══════════════════════════════════════════════ */
.rvp-order-form-wrap {
  background: #fff; border-radius: var(--radius); border: 1.5px solid #e2e8f0;
  padding: 20px 18px; font-family: 'Poppins', 'Inter', sans-serif;
}
.rvp-order-form-wrap h3 { font-size: .95rem; font-weight: 800; margin: 0 0 16px; }
.rvp-field-group { display: flex; flex-direction: column; gap: 12px; }
.rvp-field-group label { display: block; font-size: .75rem; font-weight: 700; color: #475569; margin-bottom: 5px; }
.rvp-field-group input,
.rvp-field-group textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid #cbd5e1;
  border-radius: 11px; font-size: .875rem; color: #1e293b; background: #f8fafc;
  outline: none; transition: border-color .2s; box-sizing: border-box;
}
.rvp-field-group input:focus,
.rvp-field-group textarea:focus { border-color: var(--brand); background: #fff; }
.rvp-order-error {
  display: none; background: #fee2e2; color: #b91c1c;
  border-radius: 10px; padding: 10px 14px; font-size: .8rem; font-weight: 600; margin-top: 8px;
}
.rvp-wa-btn {
  width: 100%; background: linear-gradient(135deg,#25D366,#128C7E);
  color: #fff; border: none; border-radius: 14px; padding: 16px;
  font-size: .9rem; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  font-family: 'Poppins', 'Inter', sans-serif; transition: opacity .15s;
}
.rvp-wa-btn:hover { opacity: .92; }
.rvp-wa-btn:disabled { opacity: .6; cursor: not-allowed; }
