@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F3F4F6;
  --text-primary: #111827;
  --text-secondary: #6B7280;
  --accent-primary: #FF5C00;
  --accent-hover: #E55200;
  --accent-gradient: linear-gradient(135deg, #FF5C00 0%, #E55200 100%);
  --success: #10B981;
  --danger: #EF4444;
  --border-color: #E5E7EB;
  --glass-bg: #FFFFFF;

  /* Spacing */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;

  /* Border Radius */
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 30px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Floating Card Utility */

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}

/* Base App Layout */

.app-container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.sidebar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-xl);
  padding-left: var(--space-md);
}

.nav-item {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-item:hover {
  background: rgba(255, 92, 0, 0.08);
  color: var(--accent-primary);
  transform: translateX(4px);
}

.nav-item.active {
  background: var(--accent-gradient);
  color: #FFFFFF !important;
  font-weight: 600;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 92, 0, 0.2);
}

.main-content {
  flex: 1;
  padding: var(--space-xl);
  overflow-y: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
}

.header-title {
  font-size: 1.8rem;
  font-weight: 600;
}

/* Stats Grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.stat-card {
  padding: var(--space-lg);
  transition: transform var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
}

/* Primary Button */

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.23);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Animations */

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

.animate-fade-in {
  animation: fadeIn 0.5s ease backwards;
}

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

.delay-2 { animation-delay: 0.2s; }

.delay-3 { animation-delay: 0.3s; }

@keyframes slideIn {
  from { transform: translateY(-20px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.animate-slide-in {
  animation: slideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hover-glow-toast:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 20px 48px rgba(255, 92, 0, 0.25), 0 8px 20px rgba(0,0,0,0.12) !important;
}

/* ─── Grabengo Landing Page — Seed-inspired Earth Tone Redesign ─── */

:root {
  --brand-orange:       #FF5C00;
  --brand-orange-hover: #E55200;
  --brand-orange-dark:  #CC4A00;
  --brand-orange-light: #FFFFFF;
  --brand-green:        #7A9E6E;
  --brand-green-dark:   #5A7A4C;
  --brand-green-light:  #EAF0E4;
  --brand-cream:        #FFFFFF;
  --brand-dark:         #111827;
  --text-secondary:     #4B5563;
  --text-muted:         #9CA3AF;
  --border-color:       rgba(17, 24, 39, 0.08);
  --transition-fast:    0.2s ease;
  --transition-normal:  0.3s ease;
}

/* ─── BASE ─── */

.landing-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background-color: var(--brand-cream);
  color: var(--brand-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4 {
  font-family: Georgia, 'Times New Roman', serif;
}

/* ─── FLOATING PILL NAVBAR ─── */

.landing-nav-floating {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.875rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.landing-nav-pill {
  pointer-events: all;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: none;
  border-radius: 999px;
  padding: 0.28rem 0.28rem;
  box-shadow: 0 2px 20px rgba(17, 24, 39, 0.07);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.landing-nav-pill:hover {
  background: rgba(255, 255, 255, 0.9);
}

.landing-nav-pill-left { gap: 0; }

.landing-nav-pill-right { gap: 0; }

.landing-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background var(--transition-fast);
}

.landing-logo-pill:hover {
  background: rgba(17, 24, 39, 0.05);
}

.grabengo-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.landing-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.landing-logo-img {
  display: block;
  height: auto;
  max-height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

.landing-nav-divider {
  width: 1px;
  height: 15px;
  background: rgba(17, 24, 39, 0.12);
  flex-shrink: 0;
  margin: 0 0.1rem;
}

.landing-nav-links {
  display: flex;
  align-items: center;
}

.landing-nav-link {
  padding: 0.38rem 0.85rem;
  color: #374151;
  font-weight: 500;
  font-size: 0.84rem;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.18s ease;
  cursor: pointer;
}

.landing-nav-link:hover {
  background: rgba(17, 24, 39, 0.06);
  color: var(--brand-dark);
}

.landing-nav-text-link {
  padding: 0.38rem 0.9rem;
  color: #374151;
  font-weight: 500;
  font-size: 0.84rem;
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.18s ease;
  display: inline-block;
}

.landing-nav-text-link:hover {
  background: rgba(17, 24, 39, 0.06);
  color: var(--brand-dark);
}

.landing-actions { display: none; }

/* desktop actions are in pills */

.btn-landing-download {
  background: var(--brand-dark);
  color: #FFFFFF;
  border: none;
  padding: 0.42rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  letter-spacing: -0.01em;
}

.btn-landing-download:hover { background: var(--brand-orange); }

/* kept for any legacy references */

.btn-landing-login {
  background: transparent;
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.87rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-landing-login:hover { background: var(--brand-orange-light); }

/* ─── MOBILE HAMBURGER ─── */

.landing-hamburger {
  pointer-events: all;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  box-shadow: 0 2px 16px rgba(17, 24, 39, 0.07);
  cursor: pointer;
  padding: 0;
}

/* ─── MOBILE NAV DRAWER ─── */

.landing-mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  flex-direction: column;
  padding: 1.5rem;
  gap: 0.25rem;
  z-index: 998;
  animation: slideDown 0.2s ease forwards;
}

.landing-mobile-nav-link {
  display: block;
  padding: 0.9rem 1rem;
  color: var(--brand-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  border-radius: 10px;
  transition: background var(--transition-fast);
}

.landing-mobile-nav-link:hover {
  background: rgba(255, 92, 0, 0.08);
  color: var(--brand-orange);
}

.landing-mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

.landing-mobile-nav-register {
  text-align: center;
  padding: 0.75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(17, 24, 39, 0.15);
  color: var(--brand-dark);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.landing-mobile-nav-register:hover {
  border-color: rgba(255, 92, 0, 0.3);
  color: var(--brand-orange);
}

.mobile-nav-btn {
  width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 0.75rem;
}

/* ─── SHARED EYEBROW ─── */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 1.25rem;
}

.section-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: block;
  flex-shrink: 0;
  animation: dotPulse 2.5s ease-in-out infinite;
}

.section-eyebrow span:last-child {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
}

/* ─── HERO ─── */

.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-slider-viewport {
  width: 100%;
  overflow: hidden;
  flex: 1;
}

.hero-slider-track {
  display: flex;
  width: 200%;
  min-height: 100vh;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slider-track--next { transform: translateX(-50%); }

.hero-slide {
  width: 50%;
  flex-shrink: 0;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide--primary {
  background: var(--brand-cream);
  color: var(--brand-dark);
}

.hero-slide--announcement {
  background: var(--brand-cream);
  color: var(--brand-dark);
  align-items: flex-start;
}

.landing-hero-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 4rem;
  min-height: 100vh;
}

/* Left: editorial content */

.landing-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4rem 0 3rem;
}

.landing-hero-content .section-eyebrow { margin-bottom: 2.25rem; }

.landing-hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -2.5px;
  color: var(--brand-dark);
  margin: 0 0 2rem;
  text-wrap: pretty;
  text-transform: none;
}

.hero-title-accent { color: var(--brand-orange); font-style: normal; }

.landing-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin: 0 0 3rem;
  line-height: 1.75;
  max-width: 420px;
}

.landing-hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-hero-explore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 92, 0, 0.09);
  color: var(--brand-orange);
  border: 1.5px solid rgba(255, 92, 0, 0.18);
  padding: 0.88rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  font-family: inherit;
}

.btn-hero-explore:hover {
  background: rgba(255, 92, 0, 0.15);
  transform: translateY(-1px);
}

.btn-hero-primary {
  background: var(--brand-dark);
  color: #FFFFFF;
  border: none;
  padding: 0.9rem 1.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
}

.btn-hero-primary:hover {
  background: var(--brand-orange);
  transform: translateY(-2px);
}

.btn-hero-text {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--brand-dark);
  font-weight: 500;
  font-size: 0.92rem;
  background: none;
  border: none;
  border-bottom: 1.5px solid rgba(17, 24, 39, 0.18);
  padding-bottom: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
}

.btn-hero-text:hover {
  color: var(--brand-orange);
  border-color: var(--brand-orange);
}

/* Trust row */

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.hero-trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-trust-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #374151;
  background: rgba(255, 92, 0, 0.09);
  border: 1px solid rgba(255, 92, 0, 0.15);
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
}

/* Right: dark impact panel wrapper */

.hero-dark {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

/* Right: dark impact panel */

.hero-impact-panel {
  background: var(--brand-dark);
  border-radius: 36px;
  padding: 2.75rem 2.25rem 2.5rem;
  width: 100%;
  max-width: 360px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(17, 24, 39, 0.28);
  animation: floatCard 8s ease-in-out infinite;
}

.hero-impact-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -50px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.hero-impact-panel::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(122, 158, 110, 0.08);
  filter: blur(60px);
  pointer-events: none;
}

.hero-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 2.75rem;
}

.hero-panel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  flex-shrink: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-panel-badge span:last-child {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-impact-stats { display: flex; flex-direction: column; gap: 0; }

.hero-impact-stat { padding-bottom: 1.75rem; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }

.hero-impact-stat + .hero-impact-stat { padding-top: 1.75rem; }

.hero-impact-stat--last { padding-bottom: 0; border-bottom: none; }

.hero-impact-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 0.4rem;
}

.hero-impact-num--amber { color: var(--brand-orange); }

.hero-impact-num--green { color: #90D470; }

.hero-impact-suffix { font-size: 1.8rem; opacity: 0.4; }

.hero-impact-num--amber .hero-impact-suffix,
.hero-impact-num--green .hero-impact-suffix { opacity: 0.5; }

.hero-impact-label {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Announcement slide */

.hero-announcement-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-orange), #FF5C00, #7A9E6E);
}

.hero-announcement-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3.5rem 4rem;
}

.hero-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 0, 0.08);
  border: none;
  color: var(--brand-orange);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  margin-bottom: 3rem;
  transition: background var(--transition-fast);
  font-family: inherit;
}

.hero-back-btn:hover { background: rgba(255, 92, 0, 0.14); }

.hero-announcement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-announcement-badge {
  display: inline-block;
  background: rgba(255, 92, 0, 0.09);
  color: var(--brand-orange);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.hero-announcement-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--brand-dark);
  margin: 0 0 1.25rem;
}

.hero-announcement-lead {
  font-size: 1.03rem;
  line-height: 1.72;
  color: var(--text-secondary);
  margin: 0 0 1.75rem;
  max-width: 480px;
}

.hero-announcement-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hero-announcement-tags span {
  background: #FFFFFF;
  color: #374151;
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
}

.hero-announcement-list {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-announcement-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3D2610;
  line-height: 1.5;
}

.hero-announcement-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-orange);
  margin-top: 0.52rem;
  flex-shrink: 0;
}

.hero-announcement-stats { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-announcement-stat {
  flex: 1;
  min-width: 120px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}

.hero-announcement-stat strong {
  display: block;
  color: var(--brand-orange);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 3px;
}

.hero-announcement-stat span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-announcement-visual-card {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1;
  background: var(--brand-dark);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.2);
}

.hero-announcement-visual-caption { text-align: center; }

.hero-announcement-visual-title {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.hero-announcement-visual-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.hero-announcement-visual { display: flex; justify-content: center; align-items: center; }

/* Coming soon pill — bottom right */

.hero-coming-soon-pill {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(17, 24, 39, 0.1);
  padding: 0.65rem 1.2rem 0.65rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px rgba(17, 24, 39, 0.1);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.2s ease;
  font-family: inherit;
  text-align: left;
}

.hero-coming-soon-pill:hover {
  border-color: rgba(255, 92, 0, 0.3);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.14);
}

.hero-coming-soon-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-coming-soon-label {
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  line-height: 1;
}

.hero-coming-soon-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.3;
  margin-top: 1px;
}

/* ─── WHY USE — Feature Grid ─── */

.why-use-section {
  padding: 7rem 0;
  background: #FFFFFF;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.section-tag { display: none; }

/* replaced by section-eyebrow */

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--brand-dark);
  line-height: 1.15;
  margin: 0;
  text-transform: none;
}

.section-title--why { margin-bottom: 0; }

.section-title--solutions { margin-bottom: 0; }

.why-use-intro {
  max-width: 540px;
  margin-bottom: 5rem;
}

.why-use-intro .section-eyebrow { margin-bottom: 1.25rem; }

.why-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
}

.why-feat-cell {
  padding: 2.25rem 2.5rem;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: background var(--transition-fast);
  cursor: default;
}

.why-feat-cell:nth-child(even) { border-right: none; }

.why-feat-cell:nth-child(3),
.why-feat-cell:nth-child(4) { border-bottom: none; }

.why-feat-cell:hover { background: rgba(255, 255, 255, 0.6); }

.why-feat-cell--accent {
  background: var(--brand-dark);
  border-right: none;
  border-bottom: none;
}

.why-feat-cell--accent:hover { background: #261A0E; }

.why-feat-num {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.why-feat-num span {
  font-size: 1rem;
  opacity: 0.4;
  letter-spacing: 0;
}

.why-feat-num--light { color: #FFFFFF; }

.why-feat-num--light span { opacity: 0.45; }

.why-feat-cell:hover .why-feat-num { color: var(--brand-orange); }

.why-feat-cell--accent:hover .why-feat-num { color: var(--brand-orange); }

.why-feat-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  max-width: 280px;
}

.why-feat-desc--light { color: rgba(255, 255, 255, 0.55); }

/* kept for any legacy references */

.why-grid { display: none; }

.why-feature-card { display: none; }

.why-bag-image { display: none; }

/* ─── MARQUEE ─── */

.marquee-ribbon {
  background: var(--brand-dark);
  padding: 1.1rem 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.marquee-content {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
  gap: 3.5rem;
  align-items: center;
  will-change: transform;
}

.marquee-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.marquee-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: inline-block;
  flex-shrink: 0;
}

.marquee-dot--green { background: #7A9E6E; }

/* ─── SOLUTIONS ─── */

.solutions-section {
  padding: 7rem 0;
  background: var(--brand-cream);
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.solutions-header .section-eyebrow { margin-bottom: 1.25rem; }

.solutions-lead {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.7;
  margin: 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-item {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.1);
}

.solution-item--dark {
  background: var(--brand-dark);
  border: none;
}

.solution-item--dark:hover {
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.3);
}

.solution-item-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-item-icon--orange { background: rgba(255, 92, 0, 0.1); }

.solution-item-icon--amber-dark { background: rgba(255, 92, 0, 0.2); }

.solution-item-icon--green { background: rgba(122, 158, 110, 0.12); }

.solution-tag {
  display: block;
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.5rem;
}

.solution-tag--light { color: var(--brand-orange); }

.solution-tag--green { color: var(--brand-green-dark); }

.solution-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.solution-title--light { color: #FFFFFF; }

.solution-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.solution-desc--light { color: rgba(255, 255, 255, 0.55); }

/* ─── JOIN CTA ─── */

.join-section {
  background: var(--brand-dark);
  padding: 8rem 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.join-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255, 92, 0, 0.08);
  filter: blur(100px);
  pointer-events: none;
}

.join-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 2rem;
}

.join-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: block;
  animation: dotPulse 2s ease-in-out infinite;
}

.join-eyebrow span:last-child {
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, 0.4);
}

.join-title {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #FFFFFF;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-transform: none;
}

.join-subtitle {
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 3.5rem;
  line-height: 1.72;
}

.join-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.join-section-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
}

/* Join section CTA buttons */

.btn-hero-orange {
  background: var(--brand-orange);
  color: #FFFFFF;
  border: none;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255, 92, 0, 0.35);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
}

.btn-hero-orange:hover {
  background: #E55200;
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ─── FOOTER ─── */

.giant-footer {
  background: var(--brand-cream);
  padding: 4.5rem 3.5rem 2.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--brand-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border-color);
}

.footer-col--brand { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-logo {
  display: flex;
  align-items: center;
  overflow: visible;
}

.footer-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.footer-logo img {
  display: block;
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 240px;
}

.footer-badges { display: flex; gap: 1rem; }

.bcorp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  color: #374151;
  font-weight: 700;
  font-size: 0.74rem;
}

.bcorp-circle {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--brand-orange);
  color: var(--brand-orange);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 0.75rem;
  font-family: Georgia, serif;
}

.footer-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col-link {
  font-size: 0.88rem;
  color: #374151;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-col-link:hover { color: var(--brand-orange); }

/* Giant text */

.giant-text-wrapper {
  width: 100%;
  overflow: hidden;
  text-align: center;
  padding: 0.75rem 0;
  user-select: none;
}

.giant-footer-text {
  font-size: 12vw;
  font-weight: 700;
  line-height: 0.9;
  color: rgba(17, 24, 39, 0.045);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  color: rgba(17, 24, 39, 0.3);
  font-size: 0.8rem;
  margin: 0;
}

.footer-copyright-link {
  color: rgba(17, 24, 39, 0.4);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-copyright-link:hover { color: var(--brand-orange); }

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

.footer-bottom-link {
  color: rgba(17, 24, 39, 0.3);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover { color: var(--brand-orange); }

/* ─── APP DOWNLOAD MODAL ─── */

.app-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeIn 0.25s ease forwards;
}

.app-modal-panel {
  position: relative;
  width: min(400px, 100%);
  padding: 2.25rem 2rem 2rem;
  border-radius: 28px;
  background: var(--brand-cream);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: 0 32px 80px rgba(17, 24, 39, 0.25);
  overflow: hidden;
  animation: slideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.app-modal-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), #7A9E6E);
  border-radius: 28px 28px 0 0;
}

.app-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.app-modal-close:hover {
  background: #FFFFFF;
  color: var(--brand-dark);
  transform: scale(1.05);
}

.app-modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.app-modal-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.15);
}

.app-modal-icon-wrap img { width: 38px; height: 38px; object-fit: contain; }

.app-modal-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 92, 0, 0.1);
  border: 1px solid rgba(255, 92, 0, 0.18);
  color: var(--brand-orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.app-modal-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.app-modal-text {
  margin: 0 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.app-modal-stores { display: flex; gap: 0.75rem; margin-bottom: 1.75rem; }

.app-modal-store-pill {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  opacity: 0.7;
}

.app-modal-store-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.app-modal-store-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.app-modal-btn {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 999px;
  background: var(--brand-dark);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.app-modal-btn:hover { background: var(--brand-orange); transform: translateY(-1px); }

/* ─── KEYFRAMES ─── */

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideIn {
  from { opacity: 0; transform: scale(0.96) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.3); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── RESPONSIVE ─── */

@media (max-width: 1024px) {
  .landing-hero-title { font-size: 4rem; }
  .hero-announcement-title { font-size: 2.4rem; }
  .join-title { font-size: 2.6rem; }
}

@media (max-width: 960px) {
  .hero-dark { display: none; }
  .landing-hero-container { grid-template-columns: 1fr; }
  .landing-hero-title { font-size: 3rem; letter-spacing: -1px; }
  .why-feat-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .hero-announcement-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-container { padding: 0 1.5rem; }
  .join-title { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  /* Navbar */
  .landing-nav-pill-left .landing-nav-links { display: none; }
  .landing-nav-pill-right { display: none; }
  .landing-hamburger { display: flex; }
  .landing-mobile-nav { display: flex; }
  .landing-nav-floating { padding: 0.75rem 1.25rem; }

  /* Hero */
  .landing-hero-container {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    padding-top: 72px;
    gap: 2.5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }
  .hero-impact-panel { animation: none; }
  .landing-hero-title { font-size: 3rem; letter-spacing: -1px; }
  .landing-hero-btns { flex-wrap: wrap; gap: 0.75rem; }
  .hero-trust-row { flex-wrap: wrap; }
  .hero-announcement-inner { padding: 4.5rem 1.5rem 3rem; }
  .hero-announcement-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-announcement-title { font-size: 2rem; }
  .hero-coming-soon-pill {
    bottom: 1.5rem;
    right: 1.5rem;
    max-width: calc(100% - 3rem);
  }

  /* Sections */
  .section-container { padding: 0 1.5rem; }
  .section-title { font-size: 2.1rem; }
  .why-use-intro { margin-bottom: 2.5rem; }
  .why-use-section { padding: 5rem 0; }
  .why-feat-grid { grid-template-columns: 1fr; }
  .why-feat-cell { border-right: none; }
  .why-feat-cell:nth-child(odd),
  .why-feat-cell:nth-child(even) { border-right: none; }
  .why-feat-cell:last-child { border-bottom: none; }

  /* Solutions */
  .solutions-section { padding: 5rem 0; }
  .solutions-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .solutions-header { flex-direction: column; gap: 1rem; }

  /* Join */
  .join-section { padding: 6rem 0; }
  .join-title { font-size: 2.1rem; }
  .join-btns { flex-direction: column; align-items: center; }

  /* Footer */
  .giant-footer { padding: 3.5rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-col--brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; }

  /* Modal */
  .app-modal-stores { flex-direction: column; }
}

/* Admin sidebar overlay */

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 900;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Sidebar close button — hidden on desktop */

.sidebar-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
  flex-shrink: 0;
}

/* Mobile topbar in admin dashboard — hidden on desktop */

.mobile-topbar {
  display: none;
}

.mobile-hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  padding: 4px;
}

/* =============================================
   SELLER PORTAL — RESPONSIVE UTILITIES
   ============================================= */

/* Horizontally scrollable table container */

.portal-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.portal-table table {
  min-width: 580px;
}

/* Sub-tab navigation bar — scrolls horizontally on mobile */

.sub-tab-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-secondary);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}

.sub-tab-bar::-webkit-scrollbar {
  display: none;
}

/* Responsive modal panel */

.portal-modal {
  max-width: calc(100vw - 2rem) !important;
  width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px !important;
  padding: 2rem;
}

/* Filter row — wraps on mobile */

.portal-filter-row {
  display: flex;
  gap: 1.5rem;
}

/* 2-column form grid */

.portal-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Staff / SuperAdmin 2-col layout: form | list */

.portal-section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

/* Order card flex layout */

.portal-order-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.portal-order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  gap: 0.75rem;
}

/* Chat section */

.chat-page-wrapper {
  height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
}

.chat-split {
  display: flex;
  flex: 1;
  gap: 2rem;
  min-height: 0;
}

.chat-sidebar {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  min-height: 0;
}

/* Header actions */

.portal-header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* =============================================
   MOBILE — 768px
   ============================================= */

@media (max-width: 768px) {

  /* ---- Admin Dashboard ---- */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1000;
    width: 280px;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.12);
  }

  .sidebar.sidebar-open {
    transform: translateX(0);
  }

  .sidebar-overlay {
    display: block;
  }

  .sidebar-close-btn {
    display: block;
  }

  .mobile-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
  }

  .main-content {
    padding: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .header-title {
    font-size: 1.4rem;
  }

  /* ---- Portal tables ---- */
  .portal-table table {
    min-width: 520px;
  }

  /* ---- Sub-tab bar ---- */
  .sub-tab-bar {
    width: 100%;
  }

  /* ---- Modals ---- */
  .portal-modal {
    width: calc(100vw - 2rem) !important;
    max-height: 92vh !important;
    padding: 1.25rem !important;
    border-radius: 16px !important;
  }

  /* ---- Filter rows ---- */
  .portal-filter-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* ---- 2-col form grids ---- */
  .portal-form-2col {
    grid-template-columns: 1fr;
  }

  /* ---- Staff / SuperAdmin layout ---- */
  .portal-section-grid {
    grid-template-columns: 1fr;
  }

  /* ---- Order cards ---- */
  .portal-order-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .portal-order-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  /* ---- Chat ---- */
  .chat-page-wrapper {
    height: auto;
    min-height: 0;
  }

  .chat-split {
    flex-direction: column;
    gap: 1rem;
    overflow: visible;
  }

  .chat-sidebar {
    width: 100%;
    max-height: 38vh;
    flex-shrink: 0;
  }
}

/* ══════════════════════════════════════════════════════
   POS CUSTOMER PAGE  (pos-*)
═══════════════════════════════════════════════════════ */

.cp-root { /* legacy — keep empty so old refs don't crash */
  min-height: 100vh;
  background: #f8f8f6;
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
}

/* Header */

.cp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cp-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cp-header-left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.cp-back-btn {
  background: none; border: none; cursor: pointer;
  font-size: 14px; color: #666; font-family: inherit;
  padding: 6px 10px; border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.cp-back-btn:hover { background: #f0f0f0; color: #111; }

.cp-logo { display: flex; align-items: center; gap: 8px; }

.cp-logo-icon { font-size: 22px; }

.cp-logo-text {
  font-size: 20px; font-weight: 700;
  background: linear-gradient(135deg, #FF5C00, #FF5C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cp-search-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  max-width: 480px;
}

.cp-search-icon {
  position: absolute; left: 12px; font-size: 16px; pointer-events: none;
}

.cp-search {
  width: 100%;
  padding: 9px 36px 9px 38px;
  border: 1.5px solid #e0e0e0;
  border-radius: 24px;
  font-size: 14px; font-family: inherit;
  background: #f5f5f5;
  transition: border 0.2s, background 0.2s;
  outline: none;
}

.cp-search:focus { border-color: #FF5C00; background: #fff; }

.cp-search-clear {
  position: absolute; right: 12px;
  background: none; border: none; cursor: pointer; color: #999;
  font-size: 14px; padding: 2px;
}

.cp-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }

.cp-cart-btn, .cp-orders-btn {
  position: relative;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px; font-weight: 600; font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.cp-cart-btn {
  background: #FF5C00; color: #fff;
  box-shadow: 0 2px 8px rgba(255, 92, 0,0.3);
}

.cp-cart-btn:hover { background: #E55200; transform: translateY(-1px); }

.cp-orders-btn {
  background: #fff; color: #333;
  border: 1.5px solid #e0e0e0;
}

.cp-orders-btn:hover { background: #f5f5f5; border-color: #ccc; }

.cp-cart-badge {
  background: #fff; color: #FF5C00;
  border-radius: 50%; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

/* Hero */

.cp-hero {
  background: linear-gradient(135deg, #FF5C00 0%, #FF5C00 50%, #FF5C00 100%);
  padding: 48px 24px;
  text-align: center;
}

.cp-hero-content { max-width: 640px; margin: 0 auto; }

.cp-hero-title {
  font-size: 36px; font-weight: 800; color: #fff;
  margin: 0 0 12px; line-height: 1.2;
}

.cp-hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.9);
  margin: 0; line-height: 1.6;
}

/* Filter Bar */

.cp-filter-bar {
  max-width: 1400px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; gap: 16px;
}

.cp-filter-chips {
  flex: 1; display: flex; gap: 8px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 2px;
}

.cp-filter-chips::-webkit-scrollbar { display: none; }

.cp-chip {
  flex-shrink: 0; padding: 6px 14px;
  border-radius: 20px; border: 1.5px solid #e0e0e0;
  background: #fff; color: #555; font-size: 13px;
  font-weight: 500; font-family: inherit; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}

.cp-chip:hover { border-color: #FF5C00; color: #FF5C00; }

.cp-chip-active {
  background: #FF5C00 !important; color: #fff !important;
  border-color: #FF5C00 !important;
}

.cp-count-badge {
  flex-shrink: 0; font-size: 13px; color: #888; font-weight: 500;
}

/* Layout */

.cp-layout {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px 80px;
  display: flex; gap: 24px; align-items: flex-start;
}

.cp-main { flex: 1; min-width: 0; }

/* Loading / Empty */

.cp-loading, .cp-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 20px; gap: 12px; color: #888;
}

.cp-spinner {
  width: 40px; height: 40px;
  border: 3px solid #f0f0f0;
  border-top-color: #FF5C00;
  border-radius: 50%;
  animation: cp-spin 0.8s linear infinite;
}

@keyframes cp-spin { to { transform: rotate(360deg); } }

.cp-empty h3 { font-size: 20px; color: #333; margin: 4px 0; }

.cp-empty p { font-size: 14px; margin: 0; }

/* Section */

.cp-section { margin-bottom: 36px; }

.cp-section-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}

.cp-section-header h2 { font-size: 20px; font-weight: 700; margin: 0; color: #1a1a1a; }

.cp-section-count {
  font-size: 12px; color: #fff; background: #FF5C00;
  padding: 2px 10px; border-radius: 12px; font-weight: 600;
}

/* Grid */

.cp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* Cards */

.cp-card {
  background: #fff; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #f0f0f0;
}

.cp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.cp-card-img {
  position: relative; height: 180px;
  overflow: hidden; flex-shrink: 0;
}

.cp-discount-badge {
  position: absolute; top: 10px; right: 10px;
  background: #22c55e; color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 3px 8px; border-radius: 8px;
}

.cp-type-badge {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 8px;
}

.cp-type-bag { background: rgba(255, 92, 0,0.88); color: #fff; }

.cp-type-food { background: rgba(59,130,246,0.88); color: #fff; }

.cp-card-body { padding: 14px 16px; }

.cp-card-store { font-size: 11px; color: #FF5C00; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 4px; }

.cp-card-name { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0 0 4px; line-height: 1.3; }

.cp-card-address { font-size: 12px; color: #888; margin: 0 0 3px; }

.cp-card-pickup { font-size: 12px; color: #888; margin: 0 0 10px; }

.cp-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 10px; }

.cp-card-price { display: flex; align-items: baseline; gap: 6px; }

.cp-price-main { font-size: 18px; font-weight: 800; color: #FF5C00; }

.cp-price-orig { font-size: 13px; color: #bbb; text-decoration: line-through; }

.cp-add-btn {
  padding: 7px 14px; background: #FF5C00; color: #fff;
  border: none; border-radius: 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.cp-add-btn:hover { background: #E55200; transform: scale(1.03); }

.cp-card-qty { font-size: 11px; color: #aaa; margin: 6px 0 0; }

/* Sidebar */

.cp-sidebar-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 200; backdrop-filter: blur(2px);
}

.cp-sidebar {
  width: 360px; flex-shrink: 0;
  position: sticky; top: 80px;
  background: #fff; border-radius: 16px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  overflow: hidden;
  height: calc(100vh - 100px);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease;
}

.cp-sidebar-inner { display: flex; flex-direction: column; height: 100%; }

.cp-sidebar-topbar {
  display: flex; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid #f0f0f0;
  gap: 8px; flex-shrink: 0;
}

.cp-sidebar-tabs { display: flex; gap: 4px; flex: 1; }

.cp-stab {
  flex: 1; padding: 7px 10px; border-radius: 10px;
  border: none; background: none; font-family: inherit;
  font-size: 13px; font-weight: 600; color: #888;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

.cp-stab:hover { background: #f5f5f5; color: #333; }

.cp-stab-active { background: #FFFFFF !important; color: #FF5C00 !important; }

.cp-stab-badge {
  background: #FF5C00; color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}

.cp-sidebar-close {
  background: none; border: none; cursor: pointer; color: #999;
  font-size: 16px; padding: 4px; border-radius: 6px;
  transition: background 0.2s;
}

.cp-sidebar-close:hover { background: #f0f0f0; color: #333; }

.cp-sidebar-body {
  flex: 1; overflow-y: auto; display: flex; flex-direction: column;
}

.cp-sidebar-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: #aaa; padding: 40px 20px; text-align: center;
}

.cp-sidebar-empty p { margin: 0; font-size: 15px; color: #555; }

/* Cart items */

.cp-cart-list { flex: 1; overflow-y: auto; padding: 12px; display: flex; flex-direction: column; gap: 10px; }

.cp-cart-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px; border-radius: 12px; background: #fafafa;
  border: 1px solid #f0f0f0; position: relative;
}

.cp-cart-item-img {
  width: 52px; height: 52px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
}

.cp-cart-item-info { flex: 1; min-width: 0; }

.cp-cart-item-name { font-size: 13px; font-weight: 600; margin: 0 0 2px; color: #1a1a1a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.cp-cart-item-store { font-size: 11px; color: #888; margin: 0 0 8px; }

.cp-cart-item-row { display: flex; align-items: center; justify-content: space-between; }

.cp-qty-ctrl {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid #e0e0e0; border-radius: 20px; overflow: hidden;
}

.cp-qty-ctrl button {
  background: none; border: none; cursor: pointer;
  width: 28px; height: 28px; font-size: 16px; color: #555;
  font-family: inherit; transition: background 0.15s;
}

.cp-qty-ctrl button:hover { background: #f0f0f0; }

.cp-qty-ctrl span { font-size: 14px; font-weight: 600; padding: 0 8px; color: #1a1a1a; }

.cp-cart-item-price { font-size: 14px; font-weight: 700; color: #FF5C00; }

.cp-cart-remove {
  background: none; border: none; cursor: pointer; color: #ccc;
  font-size: 13px; padding: 2px; position: absolute; top: 8px; right: 8px;
  transition: color 0.2s; line-height: 1;
}

.cp-cart-remove:hover { color: #e53e3e; }

/* Cart footer */

.cp-cart-footer {
  padding: 16px; border-top: 1px solid #f0f0f0; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 10px;
}

.cp-cart-total { display: flex; justify-content: space-between; align-items: center; }

.cp-cart-total span { font-size: 15px; color: #555; }

.cp-cart-total strong { font-size: 20px; color: #1a1a1a; }

.cp-cart-note { font-size: 12px; color: #888; margin: 0; text-align: center; }

/* Buttons */

.cp-checkout-btn {
  width: 100%; padding: 13px;
  background: #FF5C00; color: #fff;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
}

.cp-checkout-btn:hover:not(:disabled) { background: #E55200; transform: translateY(-1px); }

.cp-checkout-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.cp-clear-btn {
  width: 100%; padding: 10px;
  background: none; color: #aaa; border: 1.5px solid #e8e8e8;
  border-radius: 12px; font-size: 13px; font-family: inherit; cursor: pointer;
  transition: all 0.2s;
}

.cp-clear-btn:hover { background: #fff0f0; color: #e53e3e; border-color: #e53e3e; }

.cp-outline-btn {
  padding: 9px 18px;
  background: none; color: #555; border: 1.5px solid #e0e0e0;
  border-radius: 10px; font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: all 0.2s;
}

.cp-outline-btn:hover { background: #f5f5f5; border-color: #ccc; }

.cp-outline-btn-sm {
  padding: 5px 12px;
  background: none; color: #888; border: 1.5px solid #e0e0e0;
  border-radius: 8px; font-size: 12px; font-family: inherit; cursor: pointer;
  transition: all 0.2s;
}

.cp-outline-btn-sm:hover { background: #f5f5f5; }

/* Lookup form */

.cp-lookup-form { padding: 20px 16px; display: flex; flex-direction: column; gap: 10px; }

.cp-lookup-title { font-size: 16px; font-weight: 700; color: #1a1a1a; margin: 0; }

.cp-lookup-sub { font-size: 13px; color: #888; margin: 0; line-height: 1.5; }

/* Orders list */

.cp-orders-list { padding: 12px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; flex: 1; }

.cp-order-card {
  background: #fafafa; border: 1px solid #f0f0f0;
  border-radius: 12px; padding: 12px;
}

.cp-order-card-header { display: flex; align-items: flex-start; gap: 10px; }

.cp-order-type { font-size: 22px; flex-shrink: 0; }

.cp-order-name { font-size: 13px; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }

.cp-order-store { font-size: 12px; color: #888; margin: 0; }

.cp-order-price { font-size: 14px; font-weight: 700; color: #FF5C00; margin: 0 0 2px; }

.cp-order-qty { font-size: 12px; color: #aaa; margin: 0; }

.cp-order-pickup { font-size: 12px; color: #555; margin: 8px 0 4px; }

.cp-order-date { font-size: 11px; color: #aaa; margin: 0; }

.cp-confirmed-banner {
  display: flex; align-items: center; gap: 12px;
  background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 12px;
  padding: 12px 16px; margin: 12px 16px 0;
  flex-shrink: 0;
}

.cp-confirmed-banner strong { font-size: 14px; color: #166534; display: block; }

.cp-confirmed-banner p { font-size: 12px; color: #166534; margin: 2px 0 0; }

/* Shared inputs */

.cp-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-size: 14px; font-family: inherit; outline: none;
  transition: border 0.2s;
  box-sizing: border-box;
}

.cp-input:focus { border-color: #FF5C00; }

.cp-label { font-size: 13px; font-weight: 600; color: #444; margin-bottom: 4px; display: block; }

.cp-error { font-size: 13px; color: #e53e3e; margin: 0; }

/* FAB */

.cp-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: none;
  align-items: center; gap: 8px;
  background: #FF5C00; color: #fff;
  border: none; border-radius: 50px;
  padding: 14px 20px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 92, 0,0.4);
  transition: all 0.2s;
}

.cp-fab:hover { background: #E55200; transform: translateY(-2px); }

.cp-fab-badge {
  background: #fff; color: #FF5C00;
  border-radius: 50%; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}

.cp-fab-total { font-size: 14px; }

/* Checkout Modal */

.cp-modal-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.cp-modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 500px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: cp-modal-in 0.25s ease;
}

@keyframes cp-modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.cp-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 24px 0;
}

.cp-modal-header h2 { font-size: 22px; font-weight: 800; margin: 0; }

.cp-modal-close {
  background: none; border: none; cursor: pointer; color: #999;
  font-size: 18px; padding: 4px; border-radius: 6px;
  transition: background 0.2s;
}

.cp-modal-close:hover { background: #f0f0f0; color: #333; }

.cp-modal-sub { font-size: 14px; color: #888; margin: 8px 24px 0; line-height: 1.5; }

.cp-modal-summary {
  margin: 16px 24px;
  background: #fff8f5; border-radius: 12px; padding: 14px;
  border: 1px solid #ffe0cc;
}

.cp-modal-summary h4 { font-size: 13px; color: #FF5C00; text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 10px; }

.cp-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: #555; padding: 4px 0;
  border-bottom: 1px solid #ffe8d6;
}

.cp-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; margin-top: 6px;
}

.cp-summary-total span { font-size: 14px; color: #555; }

.cp-summary-total strong { font-size: 20px; color: #FF5C00; }

.cp-modal-form { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }

.cp-modal-note {
  font-size: 12px; color: #888; background: #f5f5f5;
  padding: 10px 12px; border-radius: 10px; margin: 0; line-height: 1.5;
}

.cp-modal-actions { display: flex; gap: 10px; margin-top: 6px; }

.cp-modal-actions .cp-outline-btn { flex-shrink: 0; }

.cp-modal-actions .cp-checkout-btn { flex: 1; }

/* Footer */

.cp-footer {
  background: #1a1a1a; color: #888;
  text-align: center; padding: 20px;
  font-size: 13px; display: flex; flex-direction: column; gap: 8px;
}

.cp-footer p { margin: 0; }

.cp-back-link {
  background: none; border: none; cursor: pointer;
  color: #666; font-size: 13px; font-family: inherit;
  text-decoration: underline; transition: color 0.2s;
}

.cp-back-link:hover { color: #FF5C00; }

/* ── Customer Page Responsive ─────────────────── */

@media (max-width: 900px) {
  .cp-layout { padding: 0 16px 100px; }
  .cp-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 400px; z-index: 250;
    height: 100vh;
    border-radius: 0; border-left: 1px solid #e8e8e8;
    transform: translateX(110%);
  }
  .cp-sidebar.cp-sidebar-open { transform: translateX(0); }
  .cp-sidebar-overlay { display: block; }
  .cp-fab { display: flex; }
}

@media (max-width: 640px) {
  .cp-header-inner { padding: 0 16px; gap: 10px; height: 58px; }
  .cp-search-wrap { max-width: none; }
  .cp-orders-btn { display: none; }
  .cp-hero { padding: 32px 16px; }
  .cp-hero-title { font-size: 24px; }
  .cp-hero-sub { font-size: 14px; }
  .cp-filter-bar { padding: 12px 16px; }
  .cp-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .cp-card-img { height: 140px; }
  .cp-modal-overlay { padding: 0; align-items: flex-end; }
  .cp-modal { border-radius: 20px 20px 0 0; max-height: 95vh; }
}

/* ══════════════════════════════════════════════════════
   POS CUSTOMER PAGE  (pos-*)
═══════════════════════════════════════════════════════ */

/* Root */

.pos-root {
  min-height: 100vh;
  background: #f4f5f7;
  font-family: 'Outfit', sans-serif;
  display: flex;
  flex-direction: column;
}

/* ── Header ───────────────────────────────────── */

.pos-header {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.pos-back-btn {
  background: none; border: 1.5px solid #e0e0e0;
  border-radius: 8px; padding: 6px 12px;
  font-size: 13px; font-weight: 600; color: #555;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: all 0.2s;
}

.pos-back-btn:hover { background: #f5f5f5; border-color: #ccc; color: #111; }

.pos-logo {
  display: flex; align-items: center; flex-shrink: 0;
}

.pos-logo-img {
  height: auto;
  max-height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.pos-search-wrap {
  flex: 1; position: relative; display: flex; align-items: center;
}

.pos-search-icon {
  position: absolute; left: 14px; font-size: 15px; pointer-events: none;
}

.pos-search {
  width: 100%; padding: 10px 36px 10px 40px;
  border: 1.5px solid #e8e8e8; border-radius: 30px;
  font-size: 14px; font-family: inherit; background: #f8f8f8;
  outline: none; transition: all 0.2s;
}

.pos-search:focus { border-color: #FF5C00; background: #fff; }

.pos-search-clear {
  position: absolute; right: 14px; background: none; border: none;
  cursor: pointer; color: #aaa; font-size: 14px; padding: 2px;
}

.pos-mobile-cart-btn {
  display: none;
  position: relative; background: #FF5C00; color: #fff;
  border: none; border-radius: 10px; padding: 8px 16px;
  font-size: 18px; cursor: pointer; flex-shrink: 0;
}

.pos-mobile-cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: #fff; color: #FF5C00;
  border-radius: 50%; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; border: 2px solid #FF5C00;
}

/* ── Category Chips ───────────────────────────── */

.pos-categories {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 10px 24px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pos-categories::-webkit-scrollbar { display: none; }

.pos-cat-chip {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 3px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 2px solid transparent;
  background: #f8f8f8;
  cursor: pointer; font-family: inherit;
  transition: all 0.2s; min-width: 90px;
}

.pos-cat-chip:hover { background: #FFFFFF; border-color: #ffcfb0; }

.pos-cat-chip.active { background: #FFFFFF; border-color: #FF5C00; }

.pos-cat-icon { display: flex; align-items: center; justify-content: center; height: 24px; }

.pos-cat-label { font-size: 13px; font-weight: 600; color: #333; }

.pos-cat-count { font-size: 11px; color: #999; }

.pos-cat-chip.active .pos-cat-label { color: #FF5C00; }

.pos-cat-chip.active .pos-cat-count { color: #FF5C00; }

/* ── Body (grid + panel) ──────────────────────── */

.pos-body {
  flex: 1;
  display: flex;
  gap: 0;
  overflow: hidden;
}

/* ── Product Grid Area ───────────────────────── */

.pos-grid-area {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.pos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ── Product Card ────────────────────────────── */

.pos-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #f0f0f0;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}

.pos-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
  border-color: #ffd4b8;
}

.pos-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #f8f5f2;
}

.pos-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}

.pos-card:hover .pos-card-img img { transform: scale(1.04); }

.pos-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFFFFF, #ffe4d0);
}

.pos-type-badge {
  position: absolute; bottom: 10px; left: 10px;
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 6px;
}

.pos-type-bag { background: rgba(255, 92, 0,0.88); color: #fff; }

.pos-type-food { background: rgba(59,130,246,0.88); color: #fff; }

.pos-card-meta {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: #aaa; margin: 0 0 8px;
}

.pos-discount-tag {
  position: absolute; top: 10px; left: 10px;
  background: #22c55e; color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 6px;
}

.pos-card-body { padding: 12px 14px 14px; }

.pos-card-store {
  font-size: 11px; color: #FF5C00; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.4px; margin: 0 0 4px;
}

.pos-card-name {
  font-size: 14px; font-weight: 700; color: #1a1a1a;
  margin: 0 0 10px; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.pos-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}

.pos-card-prices {
  display: flex; flex-direction: column; gap: 1px;
}

.pos-card-price { font-size: 16px; font-weight: 800; color: #FF5C00; }

.pos-card-orig { font-size: 12px; color: #bbb; text-decoration: line-through; }

.pos-add-btn {
  padding: 7px 12px;
  background: #FFFFFF; color: #FF5C00;
  border: 1.5px solid #FF5C00; border-radius: 8px;
  font-size: 12px; font-weight: 700; font-family: inherit;
  cursor: pointer; white-space: nowrap;
  transition: all 0.2s;
}

.pos-add-btn:hover { background: #FF5C00; color: #fff; }

.pos-qty-ctrl {
  display: flex; align-items: center;
  border: 1.5px solid #FF5C00; border-radius: 8px; overflow: hidden;
}

.pos-qty-ctrl button {
  width: 30px; height: 30px; background: none; border: none;
  font-size: 16px; color: #FF5C00; cursor: pointer; font-family: inherit;
  transition: background 0.15s; font-weight: 700;
}

.pos-qty-ctrl button:hover { background: #FFFFFF; }

.pos-qty-ctrl span {
  min-width: 28px; text-align: center;
  font-size: 14px; font-weight: 700; color: #1a1a1a;
}

/* ── Loading / Empty ─────────────────────────── */

.pos-loading, .pos-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 300px; gap: 12px; color: #aaa;
}

.pos-spinner {
  width: 40px; height: 40px;
  border: 3px solid #f0f0f0;
  border-top-color: #FF5C00;
  border-radius: 50%;
  animation: pos-spin 0.8s linear infinite;
}

@keyframes pos-spin { to { transform: rotate(360deg); } }

/* ── Admin Portal Loading ─────────────────────── */

.portal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 12px;
  color: var(--text-secondary);
  padding: 2rem;
}

.portal-loading-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  color: var(--text-secondary);
}

.portal-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f0f0f0;
  border-top-color: var(--brand-orange, #FF5C00);
  border-radius: 50%;
  animation: pos-spin 0.8s linear infinite;
  flex-shrink: 0;
}

.portal-spinner-sm {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

.stat-value-loading {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
}

.pos-empty h3 { font-size: 18px; color: #444; margin: 4px 0; }

.pos-empty p { font-size: 14px; margin: 0; }

/* ── Order Panel ─────────────────────────────── */

.pos-order-panel {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border-left: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 62px - 63px); /* minus header and categories */
  position: sticky;
  top: calc(62px + 63px);
}

.pos-panel-inner {
  display: flex; flex-direction: column; height: 100%; overflow: hidden;
}

.pos-panel-header {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}

.pos-panel-tabs { display: flex; gap: 4px; flex: 1; }

.pos-ptab {
  flex: 1; padding: 7px 8px; border-radius: 8px;
  border: none; background: none; font-family: inherit;
  font-size: 13px; font-weight: 600; color: #888;
  cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}

.pos-ptab:hover { background: #f5f5f5; color: #333; }

.pos-ptab.active { background: #FFFFFF; color: #FF5C00; }

.pos-ptab-badge {
  background: #FF5C00; color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}

.pos-panel-close {
  background: none; border: none; cursor: pointer; color: #aaa;
  font-size: 16px; padding: 4px; border-radius: 6px; display: none;
}

.pos-panel-close:hover { background: #f0f0f0; color: #333; }

/* Cart items scroll area */

.pos-cart-items {
  flex: 1; overflow-y: auto; padding: 10px 14px;
  display: flex; flex-direction: column; gap: 8px;
}

.pos-cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: #bbb; min-height: 160px; text-align: center;
}

.pos-cart-empty span { font-size: 40px; }

.pos-cart-empty p { margin: 0; font-size: 15px; color: #666; }

.pos-cart-empty-sub { font-size: 12px; color: #bbb; }

/* Cart row */

.pos-cart-row {
  display: flex; gap: 10px;
  padding: 10px; border-radius: 10px;
  background: #fafafa; border: 1px solid #f0f0f0;
}

.pos-cart-row-thumb {
  width: 48px; height: 48px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0; background: #f0ede9;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}

.pos-cart-row-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pos-cart-row-info { flex: 1; min-width: 0; }

.pos-cart-row-name {
  font-size: 13px; font-weight: 700; margin: 0 0 1px; color: #1a1a1a;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.pos-cart-row-store { font-size: 11px; color: #aaa; margin: 0 0 6px; }

.pos-cart-row-bottom { display: flex; align-items: center; justify-content: space-between; }

.pos-cart-row-price { font-size: 14px; font-weight: 700; color: #FF5C00; }

.pos-cart-inline-qty {
  display: flex; align-items: center;
  background: #fff; border: 1.5px solid #e8e8e8; border-radius: 20px; overflow: hidden;
}

.pos-cart-inline-qty button {
  width: 26px; height: 26px; background: none; border: none;
  font-size: 15px; color: #555; cursor: pointer; font-family: inherit;
  font-weight: 700; transition: background 0.15s;
}

.pos-cart-inline-qty button:hover { background: #f5f5f5; }

.pos-cart-inline-qty span { font-size: 13px; font-weight: 700; padding: 0 6px; color: #1a1a1a; }

/* Panel footer / totals */

.pos-panel-footer {
  padding: 14px; border-top: 1px solid #f0f0f0; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
}

.pos-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: #555;
}

.pos-total-bold { font-size: 16px; color: #1a1a1a; }

.pos-total-bold strong { font-size: 20px; color: #FF5C00; font-weight: 800; }

.pos-divider { height: 1px; background: #f0f0f0; }

.pos-cash-note {
  font-size: 12px; color: #aaa; text-align: center; margin: 0;
}

.pos-place-order-btn {
  width: 100%; padding: 13px;
  background: #FF5C00; color: #fff;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: background 0.2s, transform 0.1s;
}

.pos-place-order-btn:hover:not(:disabled) { background: #E55200; transform: translateY(-1px); }

.pos-place-order-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.pos-flex1 { flex: 1; }

.pos-clear-btn {
  width: 100%; padding: 9px; background: none;
  border: 1.5px solid #e8e8e8; border-radius: 10px;
  font-size: 13px; color: #aaa; font-family: inherit; cursor: pointer;
  transition: all 0.2s;
}

.pos-clear-btn:hover { background: #fff0f0; color: #e53e3e; border-color: #e53e3e; }

/* Shared buttons */

.pos-outline-btn {
  padding: 9px 18px; background: none; color: #555;
  border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-size: 14px; font-weight: 600; font-family: inherit; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}

.pos-outline-btn:hover { background: #f5f5f5; border-color: #ccc; }

.pos-outline-btn-sm {
  padding: 4px 10px; background: none; color: #888;
  border: 1.5px solid #e0e0e0; border-radius: 7px;
  font-size: 12px; font-family: inherit; cursor: pointer; transition: all 0.2s;
}

.pos-outline-btn-sm:hover { background: #f5f5f5; }

/* My Orders tab */

.pos-orders-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }

.pos-lookup-form { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.pos-lookup-title { font-size: 15px; font-weight: 700; color: #1a1a1a; margin: 0; }

.pos-lookup-sub { font-size: 13px; color: #888; margin: 0; line-height: 1.5; }

.pos-confirmed-pill {
  margin: 12px 14px 0;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; padding: 10px 14px;
  font-size: 13px; color: #166534; font-weight: 600;
  flex-shrink: 0;
}

.pos-confirmed-banner {
  margin: 12px 14px 0;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 10px; padding: 12px 14px;
  flex-shrink: 0; display: flex; flex-direction: column; gap: 10px;
}

.pos-confirmed-top {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #166534; font-weight: 600;
}

.pos-receipt-btn {
  width: 100%; padding: 9px 12px;
  background: #1a1a1a; color: #fff;
  border: none; border-radius: 8px;
  font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background 0.2s;
}

.pos-receipt-btn:hover { background: #333; }

.pos-receipt-btn-sm {
  width: 100%; margin-top: 8px; padding: 7px 10px;
  background: none; color: #555;
  border: 1.5px solid #e0e0e0; border-radius: 7px;
  font-size: 12px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: all 0.2s;
}

.pos-receipt-btn-sm:hover { background: #f5f5f5; border-color: #ccc; color: #111; }

.pos-orders-list { padding: 12px; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; flex: 1; }

.pos-orders-list-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px; font-size: 13px; font-weight: 600; color: #555;
}

.pos-order-entry {
  background: #fafafa; border: 1px solid #f0f0f0; border-radius: 10px; padding: 10px 12px;
}

.pos-order-entry-top { display: flex; align-items: flex-start; gap: 8px; }

.pos-order-entry-icon { font-size: 20px; flex-shrink: 0; }

.pos-order-entry-name { font-size: 13px; font-weight: 700; color: #1a1a1a; margin: 0 0 2px; }

.pos-order-entry-store { font-size: 11px; color: #aaa; margin: 0; }

.pos-order-entry-price { font-size: 14px; font-weight: 700; color: #FF5C00; margin: 0 0 2px; }

.pos-order-entry-qty { font-size: 11px; color: #aaa; margin: 0; }

.pos-order-entry-pickup { font-size: 12px; color: #555; margin: 6px 0 2px; }

.pos-order-entry-date { font-size: 11px; color: #bbb; margin: 0; }

/* Shared inputs */

.pos-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid #e0e0e0; border-radius: 10px;
  font-size: 14px; font-family: inherit; outline: none;
  transition: border 0.2s; box-sizing: border-box; background: #fafafa;
}

.pos-input:focus { border-color: #FF5C00; background: #fff; }

.pos-label { font-size: 13px; font-weight: 600; color: #444; margin-bottom: 4px; display: block; }

.pos-error { font-size: 13px; color: #e53e3e; margin: 0; }

/* ── Checkout Modal ──────────────────────────── */

.pos-modal-bg {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.45); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}

.pos-modal {
  background: #fff; border-radius: 20px;
  width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: pos-modal-in 0.22s ease;
}

@keyframes pos-modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.pos-modal-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 22px 24px 0;
}

.pos-modal-head h2 { font-size: 21px; font-weight: 800; margin: 0; color: #1a1a1a; }

.pos-modal-head p { font-size: 13px; color: #888; margin: 4px 0 0; }

.pos-modal-x {
  background: none; border: none; cursor: pointer; color: #aaa;
  font-size: 18px; padding: 4px; border-radius: 6px; transition: background 0.2s;
  flex-shrink: 0;
}

.pos-modal-x:hover { background: #f0f0f0; color: #333; }

.pos-modal-summary {
  margin: 16px 24px;
  background: #fff8f5; border: 1px solid #ffe0cc; border-radius: 12px; padding: 14px;
}

.pos-modal-summary-title {
  font-size: 11px; color: #FF5C00; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px; margin: 0 0 8px;
}

.pos-modal-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #555; padding: 4px 0;
  border-bottom: 1px solid #ffe8d6;
}

.pos-modal-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; margin-top: 4px;
}

.pos-modal-summary-total span { font-size: 13px; color: #777; }

.pos-modal-summary-total strong { font-size: 19px; color: #FF5C00; font-weight: 800; }

.pos-modal-form {
  padding: 0 24px 24px; display: flex; flex-direction: column; gap: 8px;
}

.pos-modal-note {
  font-size: 12px; color: #888; background: #f5f5f5;
  padding: 9px 12px; border-radius: 8px; margin: 2px 0; line-height: 1.5;
}

.pos-modal-actions { display: flex; gap: 10px; margin-top: 4px; }

.pos-modal-actions .pos-outline-btn { flex-shrink: 0; }

.pos-otp-input {
  text-align: center;
  letter-spacing: 6px;
  font-size: 24px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.pos-resend-otp-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: none;
  background: none;
  color: #FF5C00;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.pos-resend-otp-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Panel mobile overlay ────────────────────── */

.pos-panel-overlay {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 299; backdrop-filter: blur(2px);
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 960px) {
  .pos-order-panel {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 320px; z-index: 300;
    height: 100vh;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    border-left: 1px solid #ebebeb;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  }
  .pos-order-panel.pos-panel-open { transform: translateX(0); }
  .pos-panel-overlay { display: block; }
  .pos-panel-close { display: block; }
  .pos-mobile-cart-btn { display: flex; align-items: center; }
  .pos-body { height: auto; }
  .pos-grid-area { padding: 14px; }
}

@media (max-width: 600px) {
  .pos-header { padding: 0 14px; gap: 10px; }
  .pos-logo-img { height: 28px; }
  .pos-store-picker { padding: 16px 14px 12px; }
  .pos-store-card { flex: 0 0 170px; }
  .pos-store-picker-head { flex-direction: column; align-items: stretch; }
  .pos-change-brand { align-self: flex-start; }
  .pos-categories { padding: 8px 14px; }
  .pos-cat-chip { min-width: 70px; padding: 8px 12px; }
  .pos-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pos-card-img { height: 130px; }
  .pos-modal-bg { padding: 0; align-items: flex-end; }
  .pos-modal { border-radius: 20px 20px 0 0; max-height: 92vh; }
}

/* ══════════════════════════════════════════════════════
   EXPLORE BRANDS PAGE  (explore-*)
═══════════════════════════════════════════════════════ */

.explore-page {
  min-height: 100vh;
  background: #FAFAFA;
  font-family: 'Outfit', system-ui, sans-serif;
  color: #111;
}

.explore-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  overflow: visible;
}

.explore-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.explore-nav-back {
  background: none;
  border: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  padding: 8px 0;
}

.explore-nav-back:hover { color: #FF5C00; }

.explore-nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.explore-nav-brand-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.explore-footer-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.pos-logo-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.pos-watermark-mark {
  opacity: 0.18;
}

.explore-nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.explore-nav-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.explore-nav-links a:hover { color: #FF5C00; }

.explore-nav-active {
  color: #FF5C00;
}

.explore-nav-search {
  flex: 1;
  min-width: 200px;
  max-width: 360px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f3f3;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  padding: 10px 18px;
  transition: border-color 0.2s, background 0.2s;
}

.explore-nav-search:focus-within {
  background: #fff;
  border-color: #FF5C00;
}

.explore-nav-search input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 14px;
  outline: none;
  color: #111;
}

.explore-nav-search input::placeholder { color: #999; }

.explore-hero {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #FF5C00 100%);
  padding: 48px 24px 80px;
  overflow: hidden;
}

.explore-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.explore-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.explore-hero-copy h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.explore-hero-copy p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
  max-width: 440px;
}

.explore-hero-btn {
  background: #fff;
  color: #FF5C00;
  border: none;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.explore-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.explore-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}

.explore-hero-basket {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  border: 2px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  padding: 24px;
  overflow: visible;
}

.explore-hero-basket img,
.explore-hero-icon {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
}

.explore-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
  pointer-events: none;
}

.explore-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.explore-categories {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 32px;
  scrollbar-width: none;
}

.explore-categories::-webkit-scrollbar { display: none; }

.explore-cat {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 16px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  cursor: pointer;
  transition: all 0.15s;
}

.explore-cat:hover {
  border-color: #ffc9a8;
  background: #fff8f5;
}

.explore-cat--active {
  background: #FF5C00;
  border-color: #FF5C00;
  color: #fff;
}

.explore-cat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.explore-cat-icon svg {
  display: block;
}

.explore-section { margin-bottom: 48px; }

.explore-section-head {
  margin-bottom: 24px;
}

.explore-section-head h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #111;
}

.explore-section-head p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.explore-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.explore-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.explore-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255, 92, 0, 0.12);
}

.explore-card-hit {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  position: relative;
}

.explore-card-media {
  background: linear-gradient(160deg, #fff8f5 0%, #ffe8d9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 160px;
}

.explore-card-media .tenant-brand-logo {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.pos-logo--tenant {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pos-tenant-name {
  font-weight: 800;
  color: #111;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

/* Store branch picker on tenant shop */

.pos-store-picker {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 24px 16px;
}

.pos-store-picker-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.pos-store-picker-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}

.pos-store-picker-sub {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.pos-change-brand {
  font-size: 13px;
  font-weight: 700;
  color: #FF5C00;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 14px;
  border: 1.5px solid #ffc9a8;
  border-radius: 999px;
  background: #fff8f5;
  transition: background 0.15s;
}

.pos-change-brand:hover {
  background: #ffe8d9;
}

.pos-store-picker-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.pos-store-picker-track::-webkit-scrollbar {
  height: 6px;
}

.pos-store-picker-track::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.pos-store-card {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: #fafafa;
  border: 2px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.pos-store-card:hover {
  border-color: #ffc9a8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 92, 0, 0.1);
}

.pos-store-card.active {
  border-color: #FF5C00;
  background: #fff8f5;
  box-shadow: 0 4px 16px rgba(255, 92, 0, 0.15);
}

.pos-store-card-img {
  height: 100px;
  background: linear-gradient(160deg, #fff8f5, #ffe8d9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pos-store-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pos-store-card-img--all {
  background: linear-gradient(135deg, #1a1a1a, #FF5C00);
}

.pos-store-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pos-store-card-name {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
}

.pos-store-card-address {
  font-size: 11px;
  color: #888;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pos-store-card-meta {
  font-size: 11px;
  color: #666;
  margin-top: 4px;
}

.pos-store-card-meta strong {
  color: #FF5C00;
  font-weight: 700;
}

.tenant-brand-logo {
  display: block;
  flex-shrink: 0;
}

.explore-card--featured .explore-card-media {
  min-height: 220px;
  padding: 32px;
}

.explore-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-logo-img {
  max-width: 120px;
  max-height: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

.explore-card--featured .explore-logo-img {
  max-width: 160px;
  max-height: 160px;
}

.explore-logo-fallback {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  background: linear-gradient(135deg, #FF5C00, #FF5C00);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
}

.explore-card--featured .explore-logo-fallback {
  width: 112px;
  height: 112px;
  font-size: 36px;
}

.explore-card-body {
  padding: 16px 18px 20px;
}

.explore-card-title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #111;
  line-height: 1.3;
}

.explore-card--featured .explore-card-title {
  font-size: 20px;
}

.explore-stars {
  color: #FF5C00;
  font-size: 13px;
  letter-spacing: 1px;
}

.explore-stars-num {
  color: #888;
  margin-left: 6px;
  font-size: 12px;
  letter-spacing: 0;
}

.explore-card-meta {
  font-size: 13px;
  color: #666;
  margin: 8px 0 4px;
}

.explore-card-meta strong { color: #FF5C00; }

.explore-card-domain {
  font-size: 11px;
  color: #aaa;
  margin: 0;
}

.explore-card-cta {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FF5C00;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  line-height: 34px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(255, 92, 0, 0.4);
}

.explore-loading, .explore-empty {
  text-align: center;
  padding: 64px 24px;
  color: #888;
}

.explore-empty h3 {
  color: #333;
  margin: 16px 0 8px;
}

.explore-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #ffe8d9;
  border-top-color: #FF5C00;
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: explore-spin 0.8s linear infinite;
}

@keyframes explore-spin { to { transform: rotate(360deg); } }

.explore-error {
  background: #FEE2E2;
  color: #B91C1C;
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 14px;
}

.explore-footer {
  position: relative;
  background: #111;
  color: #aaa;
  padding: 48px 24px 24px;
  margin-top: 24px;
}

.explore-footer-wave {
  position: absolute;
  top: -59px;
  left: 0;
  width: 100%;
  height: 60px;
}

.explore-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}

.explore-footer-brand .grabengo-logo-mark {
  display: inline-flex;
  margin-bottom: 12px;
}

.explore-footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 260px;
}

.explore-footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
}

.explore-footer-col a {
  display: block;
  color: #999;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.explore-footer-col a:hover { color: #FF5C00; }

.explore-footer-copy {
  max-width: 1200px;
  margin: 20px auto 0;
  text-align: center;
  font-size: 12px;
  color: #555;
}

@media (max-width: 1024px) {
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
  .explore-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .explore-nav-links { display: none; }
  .explore-nav-search { max-width: none; flex-basis: 100%; margin-left: 0; }
  .explore-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .explore-hero-copy p { margin-left: auto; margin-right: auto; }
  .explore-hero-visual { display: none; }
  .explore-featured-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .explore-footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .explore-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   LEGAL / STATIC PAGES  (legal-page-*)
═══════════════════════════════════════════════════════ */

.legal-page {
  min-height: 100vh;
  background: #0a0a0a;
  color: #e5e7eb;
  font-family: 'Outfit', sans-serif;
}

.legal-page-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.legal-page-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  min-width: 0;
}

.legal-page-brand .grabengo-logo-mark {
  flex-shrink: 0;
}

.legal-page-brand-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.legal-page-brand img {
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.legal-page-brand span {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  white-space: nowrap;
}

.legal-page-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 92, 0, 0.12);
  border: 1px solid rgba(255, 92, 0, 0.3);
  color: #FF5C00;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.legal-page-back:hover {
  background: rgba(255, 92, 0, 0.22);
  border-color: #FF5C00;
}

.legal-page-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-page-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.legal-page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.legal-page-subtitle {
  color: #9ca3af;
  font-size: 1.05rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.legal-page-section {
  margin-bottom: 2.5rem;
}

.legal-page-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #FF5C00;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-page-section-body {
  color: #d1d5db;
  line-height: 1.8;
  font-size: 0.97rem;
}

.legal-page-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ══════════════════════════════════════════════════════
   AUTH PAGES  (login / register)
═══════════════════════════════════════════════════════ */

.auth-page {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-dark) 100%);
}

.auth-card {
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  color: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.auth-card--wide {
  max-width: 460px;
}

.portal-review-card {
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.portal-review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background-color: #FFFFFF;
  color: #FF5C00;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.portal-review-body {
  flex: 1;
  min-width: 0;
}

.portal-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.portal-review-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.explore-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.explore-mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0.75rem 1.25rem 1.25rem;
  gap: 0.25rem;
  border-top: 1px solid #eee;
  background: #fff;
}

.explore-mobile-nav a,
.explore-mobile-nav .explore-nav-active {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #555;
  border-radius: 10px;
}

.explore-mobile-nav a:hover {
  background: rgba(255, 92, 0, 0.08);
  color: #FF5C00;
}

.explore-mobile-nav .explore-nav-active {
  color: #FF5C00;
  background: rgba(255, 92, 0, 0.08);
}

/* POS seller link + header helpers */

.pos-seller-link {
  font-size: 12px;
  color: #888;
  margin-left: 8px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.pos-seller-link:hover {
  color: #FF5C00;
}

.pos-back-label {
  margin-left: 4px;
}

.auth-card h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: #111827;
}

.status-banner {
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.status-banner--ok {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-banner--warn {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
}

@media (max-width: 768px) {
  .legal-page-nav {
    padding: 0 1rem;
    height: 56px;
  }

  .legal-page-back {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
  }

  .legal-page-brand span {
    font-size: 1rem;
  }

  .legal-page-main {
    padding: 2rem 1rem 4rem;
  }

  .legal-page-title {
    font-size: 1.85rem;
  }

  .legal-page-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 1.75rem 1.25rem;
  }

  .explore-hamburger {
    display: flex;
  }

  .explore-mobile-nav {
    display: flex;
  }

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

  .explore-nav-back {
    order: 1;
    font-size: 13px;
  }

  .explore-nav-brand {
    order: 2;
    flex: 1;
    min-width: 0;
  }

  .explore-hamburger {
    order: 3;
    margin-left: 0;
  }

  .explore-nav-search {
    order: 4;
  }

  .explore-categories {
    padding-left: 16px;
    padding-right: 16px;
  }

  .explore-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .explore-hero-copy h1 {
    font-size: 1.75rem;
  }

  .pos-header {
    flex-wrap: wrap;
    height: auto;
    min-height: 56px;
    padding: 8px 14px;
    row-gap: 8px;
  }

  .pos-logo--tenant {
    flex: 1;
    min-width: 0;
  }

  .pos-tenant-name {
    max-width: 120px;
    font-size: 14px;
  }

  .pos-search-wrap {
    order: 10;
    flex: 1 1 100%;
  }

  .pos-seller-link {
    order: 5;
    margin-left: auto;
    font-size: 11px;
  }

  .pos-mobile-cart-btn {
    order: 6;
  }

  .portal-review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .portal-review-header span {
    margin-left: 0 !important;
    display: block;
    margin-top: 0.25rem;
  }

  .sub-tab-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sub-tab-bar::-webkit-scrollbar {
    display: none;
  }

  .app-modal-panel {
    width: calc(100vw - 2rem) !important;
    max-width: none !important;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-page-back {
    font-size: 0;
    padding: 0.45rem 0.65rem;
  }

  .legal-page-back::before {
    content: '←';
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .explore-nav-back {
    font-size: 0;
    padding: 6px 8px;
  }

  .explore-nav-back::before {
    content: '←';
    font-size: 16px;
  }

  .pos-back-label {
    display: none;
  }

  .pos-back-btn {
    padding: 6px 10px;
  }

  .pos-seller-link {
    display: none;
  }

  .pos-tenant-name {
    max-width: 90px;
    font-size: 13px;
  }

  .pos-order-panel {
    width: 100%;
    max-width: 100%;
  }

  .pos-grid {
    grid-template-columns: 1fr;
  }

  .portal-table table {
    min-width: 480px;
  }
}

/* =============================================
   PLATFORM MANAGEMENT — TABLE UI
   ============================================= */

.platform-mgmt-page {
  padding-bottom: 5rem;
}

.platform-mgmt-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.platform-mgmt-subtitle {
  color: var(--text-secondary);
  margin: 4px 0 0;
  font-size: 0.95rem;
}

.platform-sub-tab {
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.platform-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.platform-stat-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1rem 1.1rem;
}

.platform-stat-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.platform-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
  margin-top: 0.35rem;
}

.platform-stat-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.platform-toolbar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.platform-search {
  flex: 1;
  min-width: 220px;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: #F9FAFB;
}

.platform-table-wrap {
  padding: 0;
  overflow: hidden;
}

.platform-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.platform-table-wrap thead tr {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.platform-table-wrap th {
  padding: 0.95rem 1rem;
  text-align: left;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 700;
  white-space: nowrap;
}

.platform-table-wrap td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: middle;
  font-size: 0.92rem;
}

.platform-table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.platform-row-selected {
  background: rgba(255, 107, 0, 0.06);
}

.platform-table-empty {
  padding: 2.5rem 1rem;
  text-align: center;
  color: var(--text-secondary);
}

.platform-cell-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.platform-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E5E7EB;
}

.platform-cell-sub,
.platform-cell-muted {
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.platform-cell-sub {
  margin-top: 2px;
}

.platform-link {
  color: var(--brand-orange);
  font-weight: 700;
  text-decoration: none;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.platform-badge-blue {
  background: #EEF2FF;
  color: #4338CA;
}

.platform-badge-green {
  background: #DCFCE7;
  color: #166534;
}

.platform-badge-gray {
  background: #F3F4F6;
  color: #6B7280;
}

.platform-row-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.platform-btn-edit,
.platform-btn-delete {
  padding: 0.38rem 0.85rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.82rem;
}

.platform-btn-edit {
  background: #EEF2FF;
  color: #4338CA;
}

.platform-btn-delete {
  background: #FEE2E2;
  color: #DC2626;
}

.platform-bulk-bar {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #111827;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.platform-bulk-bar .platform-btn-delete {
  background: #DC2626;
  color: #fff;
}

.portal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}

.platform-icon-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: #F3F4F6;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #374151;
}

@media (max-width: 768px) {
  .platform-stat-grid {
    grid-template-columns: 1fr;
  }

  .platform-mgmt-header .btn-primary {
    width: 100%;
  }
}

.card-page {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  margin: 0;
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

.card-page__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.mapboxgl-map{-webkit-tap-highlight-color:rgb(0 0 0/0);font:12px/20px Helvetica Neue,Arial,Helvetica,sans-serif;overflow:hidden;position:relative}.mapboxgl-canvas{left:0;position:absolute;top:0}.mapboxgl-map:-webkit-full-screen{height:100%;width:100%}.mapboxgl-canary{background-color:salmon}.mapboxgl-canvas-container.mapboxgl-interactive,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass{cursor:grab;-webkit-user-select:none;user-select:none}.mapboxgl-canvas-container.mapboxgl-interactive.mapboxgl-track-pointer{cursor:pointer}.mapboxgl-canvas-container.mapboxgl-interactive:active,.mapboxgl-ctrl-group button.mapboxgl-ctrl-compass:active{cursor:grabbing}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate .mapboxgl-canvas{touch-action:pan-x pan-y}.mapboxgl-canvas-container.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:pinch-zoom}.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan,.mapboxgl-canvas-container.mapboxgl-touch-zoom-rotate.mapboxgl-touch-drag-pan .mapboxgl-canvas{touch-action:none}.mapboxgl-ctrl-bottom-left,.mapboxgl-ctrl-bottom-right,.mapboxgl-ctrl-top-left,.mapboxgl-ctrl-top-right{pointer-events:none;position:absolute;z-index:2}.mapboxgl-ctrl-top-left{left:0;top:0}.mapboxgl-ctrl-top-right{right:0;top:0}.mapboxgl-ctrl-bottom-left{bottom:0;left:0}.mapboxgl-ctrl-bottom-right{bottom:0;right:0}.mapboxgl-ctrl{clear:both;pointer-events:auto;transform:translate(0)}.mapboxgl-ctrl-top-left .mapboxgl-ctrl{float:left;margin:10px 0 0 10px}.mapboxgl-ctrl-top-right .mapboxgl-ctrl{float:right;margin:10px 10px 0 0}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl{float:left;margin:0 0 10px 10px}.mapboxgl-ctrl-bottom-right .mapboxgl-ctrl{float:right;margin:0 10px 10px 0}.mapboxgl-ctrl-group{background:#fff;border-radius:4px}.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px rgba(0,0,0,.1)}@media (-ms-high-contrast:active){.mapboxgl-ctrl-group:not(:empty){box-shadow:0 0 0 2px ButtonText}}.mapboxgl-ctrl-group button{background-color:transparent;border:0;box-sizing:border-box;cursor:pointer;display:block;height:29px;outline:none;overflow:hidden;padding:0;width:29px}.mapboxgl-ctrl-group button+button{border-top:1px solid #ddd}.mapboxgl-ctrl button .mapboxgl-ctrl-icon{background-position:50%;background-repeat:no-repeat;display:block;height:100%;width:100%}@media (-ms-high-contrast:active){.mapboxgl-ctrl-icon{background-color:transparent}.mapboxgl-ctrl-group button+button{border-top:1px solid ButtonText}}.mapboxgl-ctrl-attrib-button:focus,.mapboxgl-ctrl-group button:focus{box-shadow:0 0 2px 2px #0096ff}.mapboxgl-ctrl button:disabled{cursor:not-allowed}.mapboxgl-ctrl button:disabled .mapboxgl-ctrl-icon{opacity:.25}.mapboxgl-ctrl-group button:first-child{border-radius:4px 4px 0 0}.mapboxgl-ctrl-group button:last-child{border-radius:0 0 4px 4px}.mapboxgl-ctrl-group button:only-child{border-radius:inherit}.mapboxgl-ctrl button:not(:disabled):hover{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-group button:focus:focus-visible{box-shadow:0 0 2px 2px #0096ff}.mapboxgl-ctrl-group button:focus:not(:focus-visible){box-shadow:none}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-out .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10 13c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h9c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-9z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-zoom-in .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M14.5 8.5c-.75 0-1.5.75-1.5 1.5v3h-3c-.75 0-1.5.75-1.5 1.5S9.25 16 10 16h3v3c0 .75.75 1.5 1.5 1.5S16 19.75 16 19v-3h3c.75 0 1.5-.75 1.5-1.5S19.75 13 19 13h-3v-3c0-.75-.75-1.5-1.5-1.5z'/%3E%3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-fullscreen .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M24 16v5.5c0 1.75-.75 2.5-2.5 2.5H16v-1l3-1.5-4-5.5 1-1 5.5 4 1.5-3h1zM6 16l1.5 3 5.5-4 1 1-4 5.5 3 1.5v1H7.5C5.75 24 5 23.25 5 21.5V16h1zm7-11v1l-3 1.5 4 5.5-1 1-5.5-4L6 13H5V7.5C5 5.75 5.75 5 7.5 5H13zm11 2.5c0-1.75-.75-2.5-2.5-2.5H16v1l3 1.5-4 5.5 1 1 5.5-4 1.5 3h1V7.5z'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-shrink .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M18.5 16c-1.75 0-2.5.75-2.5 2.5V24h1l1.5-3 5.5 4 1-1-4-5.5 3-1.5v-1h-5.5zM13 18.5c0-1.75-.75-2.5-2.5-2.5H5v1l3 1.5L4 24l1 1 5.5-4 1.5 3h1v-5.5zm3-8c0 1.75.75 2.5 2.5 2.5H24v-1l-3-1.5L25 5l-1-1-5.5 4L17 5h-1v5.5zM10.5 13c1.75 0 2.5-.75 2.5-2.5V5h-1l-1.5 3L5 4 4 5l4 5.5L5 12v1h5.5z'/%3E%3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E")}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23999'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-compass .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 29 29'%3E%3Cpath d='M10.5 14l4-8 4 8h-8z'/%3E%3Cpath id='south' d='M10.5 16l4 8 4-8h-8z' fill='%23ccc'/%3E%3C/svg%3E")}}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23333'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23aaa'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-waiting .mapboxgl-ctrl-icon{animation:mapboxgl-spin 2s linear infinite}@media (-ms-high-contrast:active){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23999'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-active-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e58978'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%2333b5e5'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate.mapboxgl-ctrl-geolocate-background-error .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23e54e33'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2' display='none'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23000'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' display='none'/%3E%3C/svg%3E")}.mapboxgl-ctrl button.mapboxgl-ctrl-geolocate:disabled .mapboxgl-ctrl-icon{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill='%23666'%3E%3Cpath d='M10 4C9 4 9 5 9 5v.1A5 5 0 0 0 5.1 9H5s-1 0-1 1 1 1 1 1h.1A5 5 0 0 0 9 14.9v.1s0 1 1 1 1-1 1-1v-.1a5 5 0 0 0 3.9-3.9h.1s1 0 1-1-1-1-1-1h-.1A5 5 0 0 0 11 5.1V5s0-1-1-1zm0 2.5a3.5 3.5 0 1 1 0 7 3.5 3.5 0 1 1 0-7z'/%3E%3Ccircle id='dot' cx='10' cy='10' r='2'/%3E%3Cpath id='stroke' d='M14 5l1 1-9 9-1-1 9-9z' fill='%23f00'/%3E%3C/svg%3E")}}@keyframes mapboxgl-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}a.mapboxgl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='0.3' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='0.9' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E");background-repeat:no-repeat;cursor:pointer;display:block;height:23px;margin:0 0 -4px -4px;overflow:hidden;width:88px}a.mapboxgl-ctrl-logo.mapboxgl-compact{width:23px}@media (-ms-high-contrast:active){a.mapboxgl-ctrl-logo{background-color:transparent;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23000' stroke-width='3'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23fff'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E")}}@media (-ms-high-contrast:black-on-white){a.mapboxgl-ctrl-logo{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill-rule='evenodd' viewBox='0 0 88 23'%3E%3Cdefs%3E%3Cpath id='logo' d='M11.5 2.25c5.105 0 9.25 4.145 9.25 9.25s-4.145 9.25-9.25 9.25-9.25-4.145-9.25-9.25 4.145-9.25 9.25-9.25zM6.997 15.983c-.051-.338-.828-5.802 2.233-8.873a4.395 4.395 0 013.13-1.28c1.27 0 2.49.51 3.39 1.42.91.9 1.42 2.12 1.42 3.39 0 1.18-.449 2.301-1.28 3.13C12.72 16.93 7 16 7 16l-.003-.017zM15.3 10.5l-2 .8-.8 2-.8-2-2-.8 2-.8.8-2 .8 2 2 .8z'/%3E%3Cpath id='text' d='M50.63 8c.13 0 .23.1.23.23V9c.7-.76 1.7-1.18 2.73-1.18 2.17 0 3.95 1.85 3.95 4.17s-1.77 4.19-3.94 4.19c-1.04 0-2.03-.43-2.74-1.18v3.77c0 .13-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V8.23c0-.12.1-.23.23-.23h1.4zm-3.86.01c.01 0 .01 0 .01-.01.13 0 .22.1.22.22v7.55c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V15c-.7.76-1.69 1.19-2.73 1.19-2.17 0-3.94-1.87-3.94-4.19 0-2.32 1.77-4.19 3.94-4.19 1.03 0 2.02.43 2.73 1.18v-.75c0-.12.1-.23.23-.23h1.4zm26.375-.19a4.24 4.24 0 00-4.16 3.29c-.13.59-.13 1.19 0 1.77a4.233 4.233 0 004.17 3.3c2.35 0 4.26-1.87 4.26-4.19 0-2.32-1.9-4.17-4.27-4.17zM60.63 5c.13 0 .23.1.23.23v3.76c.7-.76 1.7-1.18 2.73-1.18 1.88 0 3.45 1.4 3.84 3.28.13.59.13 1.2 0 1.8-.39 1.88-1.96 3.29-3.84 3.29-1.03 0-2.02-.43-2.73-1.18v.77c0 .12-.1.23-.23.23h-1.4c-.13 0-.23-.1-.23-.23V5.23c0-.12.1-.23.23-.23h1.4zm-34 11h-1.4c-.13 0-.23-.11-.23-.23V8.22c.01-.13.1-.22.23-.22h1.4c.13 0 .22.11.23.22v.68c.5-.68 1.3-1.09 2.16-1.1h.03c1.09 0 2.09.6 2.6 1.55.45-.95 1.4-1.55 2.44-1.56 1.62 0 2.93 1.25 2.9 2.78l.03 5.2c0 .13-.1.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.8 0-1.46.7-1.59 1.62l.01 4.68c0 .13-.11.23-.23.23h-1.41c-.13 0-.23-.11-.23-.23v-4.59c0-.98-.74-1.71-1.62-1.71-.85 0-1.54.79-1.6 1.8v4.5c0 .13-.1.23-.23.23zm53.615 0h-1.61c-.04 0-.08-.01-.12-.03-.09-.06-.13-.19-.06-.28l2.43-3.71-2.39-3.65a.213.213 0 01-.03-.12c0-.12.09-.21.21-.21h1.61c.13 0 .24.06.3.17l1.41 2.37 1.4-2.37a.34.34 0 01.3-.17h1.6c.04 0 .08.01.12.03.09.06.13.19.06.28l-2.37 3.65 2.43 3.7c0 .05.01.09.01.13 0 .12-.09.21-.21.21h-1.61c-.13 0-.24-.06-.3-.17l-1.44-2.42-1.44 2.42a.34.34 0 01-.3.17zm-7.12-1.49c-1.33 0-2.42-1.12-2.42-2.51 0-1.39 1.08-2.52 2.42-2.52 1.33 0 2.42 1.12 2.42 2.51 0 1.39-1.08 2.51-2.42 2.52zm-19.865 0c-1.32 0-2.39-1.11-2.42-2.48v-.07c.02-1.38 1.09-2.49 2.4-2.49 1.32 0 2.41 1.12 2.41 2.51 0 1.39-1.07 2.52-2.39 2.53zm-8.11-2.48c-.01 1.37-1.09 2.47-2.41 2.47s-2.42-1.12-2.42-2.51c0-1.39 1.08-2.52 2.4-2.52 1.33 0 2.39 1.11 2.41 2.48l.02.08zm18.12 2.47c-1.32 0-2.39-1.11-2.41-2.48v-.06c.02-1.38 1.09-2.48 2.41-2.48s2.42 1.12 2.42 2.51c0 1.39-1.09 2.51-2.42 2.51z'/%3E%3C/defs%3E%3Cmask id='clip'%3E%3Crect x='0' y='0' width='100%25' height='100%25' fill='white'/%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/mask%3E%3Cg id='outline' opacity='1' stroke='%23fff' stroke-width='3' fill='%23fff'%3E%3Ccircle mask='url(%23clip)' cx='11.5' cy='11.5' r='9.25'/%3E%3Cuse xlink:href='%23text' mask='url(%23clip)'/%3E%3C/g%3E%3Cg id='fill' opacity='1' fill='%23000'%3E%3Cuse xlink:href='%23logo'/%3E%3Cuse xlink:href='%23text'/%3E%3C/g%3E%3C/svg%3E")}}.mapboxgl-ctrl.mapboxgl-ctrl-attrib{background-color:hsla(0,0%,100%,.5);margin:0;padding:0 5px}@media screen{.mapboxgl-ctrl-attrib.mapboxgl-compact{background-color:#fff;border-radius:12px;margin:10px;min-height:20px;padding:2px 24px 2px 0;position:relative}.mapboxgl-ctrl-attrib.mapboxgl-compact-show{padding:2px 28px 2px 8px;visibility:visible}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show,.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact-show{border-radius:12px;padding:2px 8px 2px 28px}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-inner{display:none}.mapboxgl-ctrl-attrib-button{background-color:hsla(0,0%,100%,.5);background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E");border:0;border-radius:12px;box-sizing:border-box;cursor:pointer;display:none;height:24px;outline:none;position:absolute;right:0;top:0;width:24px}.mapboxgl-ctrl-bottom-left .mapboxgl-ctrl-attrib-button,.mapboxgl-ctrl-top-left .mapboxgl-ctrl-attrib-button{left:0}.mapboxgl-ctrl-attrib.mapboxgl-compact .mapboxgl-ctrl-attrib-button,.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-inner{display:block}.mapboxgl-ctrl-attrib.mapboxgl-compact-show .mapboxgl-ctrl-attrib-button{background-color:rgb(0 0 0/5%)}.mapboxgl-ctrl-bottom-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;right:0}.mapboxgl-ctrl-top-right>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{right:0;top:0}.mapboxgl-ctrl-top-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{left:0;top:0}.mapboxgl-ctrl-bottom-left>.mapboxgl-ctrl-attrib.mapboxgl-compact:after{bottom:0;left:0}}@media screen and (-ms-high-contrast:active){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd' fill='%23fff'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}@media screen and (-ms-high-contrast:black-on-white){.mapboxgl-ctrl-attrib.mapboxgl-compact:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' fill-rule='evenodd'%3E%3Cpath d='M4 10a6 6 0 1 0 12 0 6 6 0 1 0-12 0m5-3a1 1 0 1 0 2 0 1 1 0 1 0-2 0m0 3a1 1 0 1 1 2 0v3a1 1 0 1 1-2 0'/%3E%3C/svg%3E")}}.mapboxgl-ctrl-attrib a{color:rgba(0,0,0,.75);text-decoration:none}.mapboxgl-ctrl-attrib a:hover{color:inherit;text-decoration:underline}.mapboxgl-ctrl-attrib .mapbox-improve-map{font-weight:700;margin-left:2px}.mapboxgl-attrib-empty{display:none}.mapboxgl-ctrl-scale{background-color:hsla(0,0%,100%,.75);border:2px solid #333;border-top:#333;box-sizing:border-box;color:#333;font-size:10px;padding:0 5px;white-space:nowrap}.mapboxgl-popup{display:flex;left:0;pointer-events:none;position:absolute;top:0;will-change:transform}.mapboxgl-popup-anchor-top,.mapboxgl-popup-anchor-top-left,.mapboxgl-popup-anchor-top-right{flex-direction:column}.mapboxgl-popup-anchor-bottom,.mapboxgl-popup-anchor-bottom-left,.mapboxgl-popup-anchor-bottom-right{flex-direction:column-reverse}.mapboxgl-popup-anchor-left{flex-direction:row}.mapboxgl-popup-anchor-right{flex-direction:row-reverse}.mapboxgl-popup-tip{border:10px solid transparent;height:0;width:0;z-index:1}.mapboxgl-popup-anchor-top .mapboxgl-popup-tip{align-self:center;border-bottom-color:#fff;border-top:none}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-tip{align-self:flex-start;border-bottom-color:#fff;border-left:none;border-top:none}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-tip{align-self:flex-end;border-bottom-color:#fff;border-right:none;border-top:none}.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip{align-self:center;border-bottom:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-tip{align-self:flex-start;border-bottom:none;border-left:none;border-top-color:#fff}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-tip{align-self:flex-end;border-bottom:none;border-right:none;border-top-color:#fff}.mapboxgl-popup-anchor-left .mapboxgl-popup-tip{align-self:center;border-left:none;border-right-color:#fff}.mapboxgl-popup-anchor-right .mapboxgl-popup-tip{align-self:center;border-left-color:#fff;border-right:none}.mapboxgl-popup-close-button{background-color:transparent;border:0;border-radius:0 3px 0 0;cursor:pointer;position:absolute;right:0;top:0}.mapboxgl-popup-close-button:hover{background-color:rgb(0 0 0/5%)}.mapboxgl-popup-content{background:#fff;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.1);padding:10px 10px 15px;pointer-events:auto;position:relative}.mapboxgl-popup-anchor-top-left .mapboxgl-popup-content{border-top-left-radius:0}.mapboxgl-popup-anchor-top-right .mapboxgl-popup-content{border-top-right-radius:0}.mapboxgl-popup-anchor-bottom-left .mapboxgl-popup-content{border-bottom-left-radius:0}.mapboxgl-popup-anchor-bottom-right .mapboxgl-popup-content{border-bottom-right-radius:0}.mapboxgl-popup-track-pointer{display:none}.mapboxgl-popup-track-pointer *{pointer-events:none;user-select:none}.mapboxgl-map:hover .mapboxgl-popup-track-pointer{display:flex}.mapboxgl-map:active .mapboxgl-popup-track-pointer{display:none}.mapboxgl-marker{left:0;opacity:1;position:absolute;top:0;transition:opacity .2s;will-change:transform}.mapboxgl-user-location-dot,.mapboxgl-user-location-dot:before{background-color:#1da1f2;border-radius:50%;height:15px;width:15px}.mapboxgl-user-location-dot:before{animation:mapboxgl-user-location-dot-pulse 2s infinite;content:"";position:absolute}.mapboxgl-user-location-dot:after{border:2px solid #fff;border-radius:50%;box-shadow:0 0 3px rgba(0,0,0,.35);box-sizing:border-box;content:"";height:19px;left:-2px;position:absolute;top:-2px;width:19px}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading{height:0;width:0}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after,.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{border-bottom:7.5px solid #4aa1eb;content:"";position:absolute}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:before{border-left:7.5px solid transparent;transform:translateY(-28px) skewY(-20deg)}.mapboxgl-user-location-show-heading .mapboxgl-user-location-heading:after{border-right:7.5px solid transparent;transform:translate(7.5px,-28px) skewY(20deg)}@keyframes mapboxgl-user-location-dot-pulse{0%{opacity:1;transform:scale(1)}70%{opacity:0;transform:scale(3)}to{opacity:0;transform:scale(1)}}.mapboxgl-user-location-dot-stale{background-color:#aaa}.mapboxgl-user-location-dot-stale:after{display:none}.mapboxgl-user-location-accuracy-circle{background-color:#1da1f233;border-radius:100%;height:1px;width:1px}.mapboxgl-crosshair,.mapboxgl-crosshair .mapboxgl-interactive,.mapboxgl-crosshair .mapboxgl-interactive:active{cursor:crosshair}.mapboxgl-boxzoom{background:#fff;border:2px dotted #202020;height:0;left:0;opacity:.5;position:absolute;top:0;width:0}@media print{.mapbox-improve-map{display:none}}.mapboxgl-scroll-zoom-blocker,.mapboxgl-touch-pan-blocker{align-items:center;background:rgba(0,0,0,.7);color:#fff;display:flex;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif;height:100%;justify-content:center;left:0;opacity:0;pointer-events:none;position:absolute;text-align:center;top:0;transition:opacity .75s ease-in-out;transition-delay:1s;width:100%}.mapboxgl-scroll-zoom-blocker-show,.mapboxgl-touch-pan-blocker-show{opacity:1;transition:opacity .1s ease-in-out}.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page,.mapboxgl-canvas-container.mapboxgl-touch-pan-blocker-override.mapboxgl-scrollable-page .mapboxgl-canvas{touch-action:pan-x pan-y}