/* ============================================================
   SpakySEND — Global Stylesheet
   Brand: Cyan #04D8DB | Gold #D4AF37 | Beige #F5F5DC | Dark #333333
   ============================================================ */

/* ════════════════════════════════════════════
   VARIABLES
════════════════════════════════════════════ */
:root {
  --gold:         #D4AF37;
  --gold-soft:    rgba(212, 175, 55, 0.15);
  --gold-glow:    rgba(212, 175, 55, 0.3);
  --cyan:         #04D8DB;
  --cyan-soft:    rgba(4, 216, 219, 0.1);
  --cyan-mid:     rgba(4, 216, 219, 0.25);
  --cyan-glow:    rgba(4, 216, 219, 0.4);
  --beige:        #F5F5DC;
  --dark:         #333333;
  --dark-60:      rgba(51, 51, 51, 0.6);
  --dark-20:      rgba(51, 51, 51, 0.08);
  --white:        #FFFFFF;
  --error:        #FF5C5C;
  --success:      #00C896;
  --bg:           #0e0e0e;
  --border-soft:  rgba(255, 255, 255, 0.1);
  --text-muted:   rgba(255, 255, 255, 0.45);
  --text-faint:   rgba(255, 255, 255, 0.25);
  --surface:      rgba(255, 255, 255, 0.04);
  --surface-2:    rgba(255, 255, 255, 0.07);
  --radius:       14px;
  --radius-lg:    20px;
}

/* ════════════════════════════════════════════
   RESET
════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* ════════════════════════════════════════════
   BASE
════════════════════════════════════════════ */
body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-x: hidden;
  position: relative;
}

body.dashboard-body {
  display: block;
  align-items: unset;
  justify-content: unset;
  padding: 0;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  overflow: hidden;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ════════════════════════════════════════════
   AMBIENT ORBS
════════════════════════════════════════════ */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}
.bg-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(4,216,219,0.18) 0%, transparent 70%);
  top: -120px; left: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
  max-width: 100vw;
}
.bg-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
  bottom: -80px; right: 0;
  animation: drift2 15s ease-in-out infinite alternate;
}
.bg-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(4,216,219,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-orb 8s ease-in-out infinite;
}

/* ════════════════════════════════════════════
   CARD
════════════════════════════════════════════ */
.card {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  padding: 2.5rem 2.25rem 2.25rem;
  box-shadow:
    0 0 0 1px rgba(4, 216, 219, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: cardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--gold), transparent);
  border-radius: 100%;
  opacity: 0.8;
}

/* ════════════════════════════════════════════
   BRAND PILL
════════════════════════════════════════════ */
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(4, 216, 219, 0.1);
  border: 1px solid rgba(4, 216, 219, 0.2);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 2rem;
}
.brand-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}
.brand-text {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 { font-size: 2rem;    font-weight: 800; }
h2 { font-size: 1.75rem; font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }

.text-gradient {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.heading-block { margin-bottom: 2rem; }
p.subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  font-weight: 300;
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════════
   AUTH TABS
════════════════════════════════════════════ */
.tabs {
  display: flex;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 4px;
  margin-bottom: 1.75rem;
  gap: 4px;
}
.tab {
  flex: 1;
  text-align: center;
  padding: 0.6rem;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  background: transparent;
}
.tab.active {
  background: var(--cyan);
  color: var(--dark);
  font-weight: 600;
  box-shadow: 0 2px 12px var(--cyan-glow);
}

/* ════════════════════════════════════════════
   FORM ELEMENTS
════════════════════════════════════════════ */
.form-group  { margin-bottom: 1rem; }
.input-group { margin-bottom: 1rem; }

.input-label,
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: rgba(255,255,255,0.2);
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  border-color: var(--cyan);
  background: rgba(4,216,219,0.06);
  box-shadow: 0 0 0 3px rgba(4,216,219,0.15);
}

.input-field {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border-soft);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
}
.input-field::placeholder { color: rgba(255,255,255,0.2); }
.input-field:focus {
  border-color: var(--cyan);
  background: rgba(4,216,219,0.06);
  box-shadow: 0 0 0 3px rgba(4,216,219,0.15);
}
.input-field:disabled { opacity: 0.5; cursor: not-allowed; }

input.filled,
.input-field.filled {
  border-color: rgba(212, 175, 55, 0.5) !important;
  background: #1a1505 !important;
  color: var(--gold) !important;
}

.input-password-wrap { position: relative; }
.input-password-wrap .input-field { padding-right: 2.8rem; }
.toggle-pw {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.toggle-pw:hover { color: var(--cyan); }

.momo-same-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.momo-same-row input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--cyan);
  cursor: pointer;
}
.momo-same-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

/* ════════════════════════════════════════════
   OTP BOXES
════════════════════════════════════════════ */
.otp-group {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.otp-box {
  flex: 1;
  min-width: 0;
  max-width: 52px;
  height: 56px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border-soft);
  border-radius: 14px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  caret-color: var(--cyan);
  -webkit-appearance: none;
}
.otp-box:focus {
  border-color: var(--cyan);
  background: rgba(4,216,219,0.08);
  box-shadow: 0 0 0 3px rgba(4,216,219,0.2), 0 0 20px rgba(4,216,219,0.1);
  transform: translateY(-2px);
}
.otp-box.filled {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.06);
  color: var(--gold);
}
.otp-box.error-shake {
  animation: shake 0.4s cubic-bezier(.36,.07,.19,.97);
  border-color: var(--error) !important;
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  width: 100%;
  padding: 1rem;
  background: var(--cyan);
  color: var(--dark);
  border: none;
  border-radius: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0.85rem;
  letter-spacing: 0.01em;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover {
  background: #00e8ec;
  box-shadow: 0 8px 24px rgba(4,216,219,0.4), 0 2px 8px rgba(4,216,219,0.2);
  transform: translateY(-1px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(1px) scale(0.99); }
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-ghost {
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 0.75rem;
}
.btn-ghost:hover:not(:disabled) {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}
.btn-ghost:disabled { cursor: not-allowed; opacity: 0.5; }

.btn-google {
  width: 100%;
  padding: 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.btn-google:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.btn-link {
  background: transparent;
  border: none;
  color: var(--cyan);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.btn-link:hover { opacity: 0.75; }

.dash-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.18s ease;
  text-decoration: none;
  white-space: nowrap;
}
.dash-btn-cyan {
  background: linear-gradient(135deg, var(--cyan) 0%, #02b0b3 100%);
  color: #000;
}
.dash-btn-cyan:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(4,216,219,0.3);
}
.dash-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8960f 100%);
  color: #000;
}
.dash-btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}
.dash-btn-outline {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  color: var(--white);
}
.dash-btn-outline:hover { background: var(--surface-2); }

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(51,51,51,0.25);
  border-top-color: var(--dark);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  display: none;
  flex-shrink: 0;
}
.btn-primary.loading .btn-spinner { display: block; }

/* ════════════════════════════════════════════
   MISC UI
════════════════════════════════════════════ */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.divider-line { flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.divider-text { font-size: 0.75rem; color: var(--text-faint); white-space: nowrap; }

.resend-timer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.resend-timer span { color: var(--gold); font-weight: 600; }

.msg {
  margin-top: 1rem;
  font-size: 0.82rem;
  text-align: center;
  min-height: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s;
}
.error       { color: var(--error); }
.success     { color: var(--success); }
.loading-msg { color: var(--text-faint); }

.auth-switch {
  margin-top: 1.25rem;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}
.auth-switch a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.auth-switch a:hover { opacity: 0.75; }

.success-overlay {
  position: absolute; inset: 0;
  border-radius: 28px;
  background: rgba(0, 200, 150, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.success-overlay.show { opacity: 1; pointer-events: all; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(0, 200, 150, 0.15);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  animation: pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-label { font-family: 'Syne', sans-serif; font-size: 1.1rem; color: var(--white); font-weight: 700; }
.success-sub   { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

.slide-container { position: relative; overflow: hidden; }
.slide {
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide.hidden-right {
  position: absolute; top: 0; left: 0;
  transform: translateX(100%); opacity: 0; pointer-events: none;
}
.slide.hidden-left {
  position: absolute; top: 0; left: 0;
  transform: translateX(-100%); opacity: 0; pointer-events: none;
}

/* ════════════════════════════════════════════
   AUTOFILL OVERRIDE
════════════════════════════════════════════ */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 999px #1a1505 inset !important;
  -webkit-text-fill-color: #D4AF37 !important;
  border-color: rgba(212, 175, 55, 0.5) !important;
  caret-color: #D4AF37 !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

/* ════════════════════════════════════════════
   DASHBOARD LAYOUT
════════════════════════════════════════════ */
.dash-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  max-width: 100vw;
  transition: grid-template-columns 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.dash-layout.sidebar-collapsed {
  grid-template-columns: 56px 1fr;
}

/* FIXED: Removed non-functional sibling selector - the sidebar expand is handled via width transition */

.dash-sidebar {
  grid-row: 1 / -1;
  background: rgba(10,10,10,0.75);
  border-right: 1px solid var(--border-soft);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 26px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 100;
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.dash-sidebar.collapsed {
  width: 56px;
}
.dash-sidebar.collapsed:hover {
  width: 230px;
}
.dash-sidebar.collapsed {
  overflow: hidden;
}
.dash-sidebar.collapsed .nav-label,
.dash-sidebar.collapsed .dash-nav-label,
.dash-sidebar.collapsed .dash-logo-sub,
.dash-sidebar.collapsed .dash-logo-text,
.dash-sidebar.collapsed .dash-user-info,
.dash-sidebar.collapsed .dash-logout-btn {
  display: none;
}
.dash-sidebar.collapsed .dash-nav-item {
  justify-content: center;
  padding: 10px 0;
  position: relative;
}
.dash-sidebar.collapsed .dash-nav-icon {
  flex-shrink: 0;
  min-width: 20px;
  width: 20px;
  height: 20px;
}
.dash-sidebar.collapsed .dash-logo-wrap {
  justify-content: center;
  padding: 0 0 24px;
}
.dash-sidebar.collapsed .dash-user-pill {
  justify-content: center;
  padding: 10px 0;
}
.dash-sidebar.collapsed .dash-sidebar-collapse-btn {
  justify-content: center;
  margin: 12px 4px 0;
}
.dash-sidebar.collapsed .admin-nav-badge {
  position: absolute;
  top: 2px; right: 2px;
  margin-left: 0;
}

.dash-sidebar.collapsed:hover {
  overflow-y: auto;
  overflow-x: hidden;
}
.dash-sidebar.collapsed:hover .nav-label,
.dash-sidebar.collapsed:hover .dash-nav-label,
.dash-sidebar.collapsed:hover .dash-logo-sub,
.dash-sidebar.collapsed:hover .dash-logo-text,
.dash-sidebar.collapsed:hover .dash-user-info,
.dash-sidebar.collapsed:hover .dash-logout-btn {
  display: unset;
}
.dash-sidebar.collapsed:hover .dash-nav-item {
  justify-content: flex-start;
  padding: 10px 12px;
}
.dash-sidebar.collapsed:hover .dash-logo-wrap {
  justify-content: flex-start;
  padding: 0 22px 24px;
}
.dash-sidebar.collapsed:hover .dash-user-pill {
  justify-content: flex-start;
  padding: 10px 12px;
}
.dash-sidebar.collapsed:hover .dash-sidebar-collapse-btn {
  margin: 12px 10px 0;
}
.dash-sidebar.collapsed:hover .admin-nav-badge {
  position: static;
  margin-left: auto;
}

.dash-sidebar-collapse-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s;
  flex-shrink: 0;
  width: calc(100% - 20px);
}
.dash-sidebar-collapse-btn:hover {
  background: var(--surface);
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}
.dash-sidebar-collapse-btn svg {
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.dash-sidebar.collapsed .dash-sidebar-collapse-btn {
  width: calc(100% - 8px);
  margin: 8px 4px;
  padding: 8px 0;
  justify-content: center;
  border-color: transparent;
}
.dash-sidebar.collapsed .dash-sidebar-collapse-btn svg {
  transform: rotate(180deg);
}

.dash-sidebar.collapsed:hover .dash-sidebar-collapse-btn {
  width: calc(100% - 20px);
  margin: 8px 10px;
  padding: 8px 12px;
  justify-content: flex-start;
  border-color: var(--border-soft);
}
.dash-sidebar.collapsed:hover .dash-sidebar-collapse-btn svg {
  transform: rotate(180deg);
}
.dash-logo-wrap {
  padding: 0 22px 24px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 18px;
}
.dash-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.5px;
}
.dash-logo-text span { color: var(--gold); }
.dash-logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.dash-nav { padding: 0 10px; }
.dash-nav-label {
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 12px 5px;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.18s ease;
  text-decoration: none;
  margin-bottom: 2px;
}
.dash-nav-item:hover { background: var(--surface); color: var(--white); }
.dash-nav-item.active { background: rgba(4,216,219,0.1); color: var(--cyan); }
.dash-nav-icon { width: 17px; height: 17px; flex-shrink: 0; }

.dash-sidebar-footer {
  margin-top: auto;
  padding: 18px 10px 0;
  border-top: 1px solid var(--border-soft);
}
.dash-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
}
.dash-user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #000;
  flex-shrink: 0;
}
.dash-user-info { flex: 1; min-width: 0; }
.dash-user-name {
  font-size: 13px; font-weight: 600; color: var(--white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-user-id {
  font-size: 11px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dash-logout-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px; border-radius: 6px;
  transition: color 0.15s; display: flex; align-items: center;
}
.dash-logout-btn:hover { color: #ff6b6b; }

.dash-topbar {
  grid-column: 2;
  background: rgba(10,10,10,0.55);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(20px);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.dash-topbar-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.dash-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dash-main {
  grid-column: 2;
  padding: 36px 32px;
  padding-bottom: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.dash-wallet-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(4,216,219,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.dash-wallet-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
  pointer-events: none;
}
.dash-wallet-label {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.dash-wallet-amount {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.dash-wallet-currency {
  font-size: 14px; font-weight: 600;
  color: rgba(212,175,55,0.55); margin-right: 3px;
}
.dash-wallet-sub { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

.dash-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
}
.dash-stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  position: relative;
  overflow: hidden;
  transition: all 0.22s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.07);
}
.dash-stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}
.dash-stat-card:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-1px);
}
.dash-stat-accent {
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 3px 0 0 3px;
}
.dash-stat-label {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}
.dash-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--white); line-height: 1;
}

.dash-orders-panel {
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.order-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.order-card-skeleton {
  height: 80px;
  border-radius: 16px;
  background: var(--surface-2);
  animation: shimmer 1.5s ease infinite;
}

.order-empty-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(4,216,219,0.08);
  border: 1px solid rgba(4,216,219,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 24px rgba(4,216,219,0.1);
}

.order-card {
  background: rgba(255,255,255,0.025);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s;
}
.order-card:hover {
  background: rgba(255,255,255,0.04);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.order-card.open {
  background: rgba(4,216,219,0.04);
  box-shadow: 0 4px 20px rgba(4,216,219,0.05);
}

.order-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  cursor: pointer;
  gap: 8px;
  user-select: none;
}

.order-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  min-width: 0;
  flex: 1;
}
.order-card-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.order-card-id {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
}
.order-card-id:hover { opacity: 0.75; }

.order-card-rider {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.order-card-chevron {
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.order-card.open .order-card-chevron { transform: rotate(180deg); }

.order-card-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.order-card-detail.open { max-height: 1200px; }

.order-card-detail-inner {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: none;
  background: rgba(0,0,0,0.1);
}

.order-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.order-detail-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  flex-shrink: 0;
  width: 38px;
}
.order-detail-val {
  flex: 1;
  color: var(--white);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.order-detail-val:hover { color: var(--cyan); }

.order-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(4,216,219,0.08);
  border: 1px solid rgba(4,216,219,0.2);
  color: var(--cyan);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
}
.order-call-btn:hover { background: rgba(4,216,219,0.18); }

.order-detail-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-item-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 11px 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.order-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3px;
}
.order-item-receiver {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.order-item-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.order-item-desc {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-style: italic;
  margin-top: 2px;
}

.order-detail-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.dash-orders-panel-header {
  padding: 18px 4px;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.dash-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--white);
}
.dash-count-pill {
  font-size: 11px; font-weight: 700;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.dash-tab-bar {
  display: flex; gap: 3px;
  background: var(--surface);
  border-radius: 9px; padding: 3px;
  width: fit-content;
}
.dash-tab-btn {
  padding: 6px 14px; border-radius: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  transition: all 0.18s; border: none; background: none;
}
.dash-tab-btn.active { background: rgba(255,255,255,0.08); color: var(--white); }

.dash-refresh-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-faint);
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.dash-refresh-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
}
.dash-table th {
  padding: 12px 24px;
  text-align: left;
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em;
  background: rgba(0,0,0,0.18);
  border-bottom: 1px solid var(--border-soft);
}
.dash-table td {
  padding: 14px 24px;
  font-size: 13px; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  vertical-align: middle;
}
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: rgba(255,255,255,0.02); }

.dash-order-id {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 600;
  color: var(--cyan); letter-spacing: 0.04em;
  white-space: nowrap;
}
.copyable-id {
  cursor: pointer;
  position: relative;
}
.copyable-id:hover { color: #04D8DB; }
.copyable-id[data-fullid]:hover::after {
  content: attr(data-fullid);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 0;
  transform: none;
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.4);
  color: #F5F5DC;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  max-width: none;
  z-index: 999;
  pointer-events: none;
  letter-spacing: 0.3px;
  text-align: center;
}
.dash-order-address {
  max-width: 180px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: var(--text-muted); font-size: 12px;
}
.dash-order-fee {
  font-family: 'Syne', sans-serif;
  font-weight: 700; color: var(--gold);
}

.dash-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 9px; border-radius: 20px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.dash-badge-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.dash-badge-pending        { background: rgba(255,200,0,0.1);   color: #ffc800;        border: 1px solid rgba(255,200,0,0.2); }
.dash-badge-assigned       { background: rgba(4,216,219,0.1);   color: var(--cyan);    border: 1px solid rgba(4,216,219,0.2); }
.dash-badge-picked_up      { background: rgba(100,149,237,0.1); color: cornflowerblue; border: 1px solid rgba(100,149,237,0.2); }
.dash-badge-delivered      { background: rgba(50,205,50,0.1);   color: #32cd32;        border: 1px solid rgba(50,205,50,0.2); }
.dash-badge-confirmed      { background: rgba(50,205,50,0.15);  color: #4ade80;        border: 1px solid rgba(50,205,50,0.25); }
.dash-badge-expired        { background: rgba(255,100,100,0.1); color: #ff8080;        border: 1px solid rgba(255,100,100,0.2); }
.dash-badge-cancelled_by_rider { background: rgba(200,100,0,0.1); color: #ff9944; border: 1px solid rgba(200,100,0,0.2); }
.dash-badge-cancelled_by_seller { background: rgba(200,100,0,0.1); color: #ff9944; border: 1px solid rgba(200,100,0,0.2); }

.dash-badge-pending .dash-badge-dot,
.dash-badge-assigned .dash-badge-dot,
.dash-badge-picked_up .dash-badge-dot { animation: pulse-dot 1.8s ease-in-out infinite; }

.dash-expand-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: 4px 6px;
  border-radius: 6px; transition: all 0.15s;
  display: flex; align-items: center;
}
.dash-expand-btn:hover { background: var(--surface-2); color: var(--white); }
.dash-expand-btn.open  { color: var(--cyan); }

.dash-detail-row td {
  padding: 0 20px;
  background: rgba(0,0,0,0.12);
}
.dash-detail-inner {
  overflow: hidden; max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.dash-detail-inner.open { max-height: 600px; padding: 14px 0; }

.dash-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
}
.dash-item-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
}
.dash-item-card-header {
  display: flex; align-items: center;
  justify-content: space-between; margin-bottom: 6px;
}
.dash-item-receiver { font-size: 13px; font-weight: 600; color: var(--white); }
.dash-item-size {
  font-size: 10px; padding: 2px 8px; border-radius: 20px;
  background: rgba(4,216,219,0.08); color: var(--cyan); font-weight: 600;
}
.dash-item-address { font-size: 12px; color: var(--text-muted); margin-bottom: 3px; }
.dash-item-desc    { font-size: 11px; color: rgba(255,255,255,0.35); font-style: italic; }

.dash-empty {
  padding: 44px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.dash-empty-icon  { font-size: 32px; margin-bottom: 10px; opacity: 0.35; }
.dash-empty-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted); margin-bottom: 5px;
}
.dash-empty-sub { font-size: 12px; color: rgba(255,255,255,0.25); }

.dash-skeleton span {
  display: block; height: 13px;
  border-radius: 5px; background: var(--surface-2);
  animation: shimmer 1.5s ease infinite;
}
@keyframes shimmer {
  0%   { opacity: 0.5; }
  50%  { opacity: 1; }
  100% { opacity: 0.5; }
}

.dash-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 1000; display: none;
  align-items: center; justify-content: center;
}
.dash-modal-overlay.open { display: flex; }
.dash-modal {
  background: #141414;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px; width: 100%; max-width: 400px;
  animation: modalIn 0.22s ease;
  margin: 16px;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.dash-modal-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 5px; }
.dash-modal-sub   { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.dash-quick-amounts {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.dash-quick-amt {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 8px; padding: 9px; text-align: center;
  cursor: pointer; font-size: 13px; font-weight: 600; color: var(--white);
  transition: all 0.15s;
}
.dash-quick-amt:hover,
.dash-quick-amt.selected { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.08); }
.dash-modal-actions { display: flex; gap: 10px; margin-top: 18px; }
.dash-modal-actions .dash-btn { flex: 1; justify-content: center; }

.dash-toast-container {
  position: fixed; bottom: 26px; right: 16px;
  display: flex; flex-direction: column; gap: 8px; z-index: 9999;
}
.dash-toast {
  background: rgba(18,18,18,0.96);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 16px; font-size: 13px; color: var(--white);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; gap: 9px;
  animation: toastIn 0.28s ease;
  max-width: 300px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.dash-toast.success { border-color: rgba(0,200,150,0.3); }
.dash-toast.error   { border-color: rgba(255,92,92,0.3); }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ════════════════════════════════════════════
   MOBILE NAV BAR — Floating Pill
════════════════════════════════════════════ */
.dash-mobile-nav {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  padding: 4px 6px;
  z-index: 200;
  transition: bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: bottom, opacity;
}

.dash-mobile-nav.hidden {
  bottom: -100px;
  opacity: 0;
  pointer-events: none;
}

.dash-mobile-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.dash-mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 4px 12px;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255,255,255,0.3);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  border: none;
  background: none;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  flex: 1;
}

.dash-mobile-nav-item span { display: none; }

.nav-icon-wrap {
  width: 38px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  transition: background 0.2s, transform 0.2s;
}
.nav-icon-wrap i,
.nav-icon-wrap svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}

.dash-mobile-nav-item.active { color: var(--cyan); }
.dash-mobile-nav-item.active .nav-icon-wrap {
  background: rgba(4,216,219,0.12);
  box-shadow: 0 0 16px rgba(4,216,219,0.15);
}
.dash-mobile-nav-item.active .nav-icon-wrap i,
.dash-mobile-nav-item.active .nav-icon-wrap svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 6px rgba(4,216,219,0.5));
}
.dash-mobile-nav-item:active .nav-icon-wrap { transform: scale(0.92); }

/* ════════════════════════════════════════════
   PLACE ORDER PAGE
════════════════════════════════════════════ */
.po-body {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  max-width: 100vw;
  background: var(--bg);
  overscroll-behavior: none;
  touch-action: none;
  animation: po-page-enter 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.po-body.po-exit {
  animation: po-page-exit 0.32s cubic-bezier(0.4, 0, 1, 1) both;
}
@keyframes po-page-enter {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes po-page-exit {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(32px); }
}
#map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.po-back {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s;
}
.po-back:hover { background: rgba(20,20,20,0.95); }

.po-sheet {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(18, 20, 24, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px 24px 0 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 0 0 1px rgba(4, 216, 219, 0.08), 0 -8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.po-sheet-handle-wrap {
  padding: 12px 0 4px;
  display: flex;
  justify-content: center;
  cursor: grab;
  flex-shrink: 0;
}
.po-sheet-handle {
  width: 40px; height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
}
.po-sheet-header {
  padding: 4px 20px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.po-sheet-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white);
}
.po-sheet-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.po-sheet-body {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1;
  padding: 18px 20px 32px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 640px) {
  .po-body .po-sheet-body { padding-bottom: 88px; }
  .po-body .po-sheet { max-height: 84vh; }
}
@media (max-width: 640px) and (max-height: 680px) {
  .po-body .po-sheet { max-height: 78vh; }
}

.po-section-label {
  font-size: 11px; font-weight: 600;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  margin-top: 16px;
}
.po-section-label:first-child { margin-top: 0; }
.po-section-label.hidden { display: none; }

.po-pickup-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}
.po-pickup-row .input-field { flex: 1; }
.po-location-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(4,216,219,0.1);
  border: 1px solid rgba(4,216,219,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
  color: var(--cyan);
}
.po-location-btn:hover {
  background: rgba(4,216,219,0.18);
  box-shadow: 0 0 12px rgba(4,216,219,0.2);
}
.po-location-btn.loading {
  opacity: 0.6;
  pointer-events: none;
}

.po-sheet .input-field {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  margin-bottom: 0;
}
.po-sheet .input-field:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(4,216,219,0.4);
  box-shadow: 0 0 0 3px rgba(4,216,219,0.15);
}
.po-sheet .input-field.filled {
  background: #1a1505 !important;
  border-color: rgba(212, 175, 55, 0.5) !important;
  color: var(--gold) !important;
}

.po-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.po-item-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.18s, background 0.18s;
  backdrop-filter: blur(8px);
}
.po-item-card.open {
  border-color: rgba(4,216,219,0.25);
  background: rgba(4,216,219,0.03);
}
.po-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 14px;
  cursor: pointer;
  user-select: none;
}
.po-item-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.po-item-num {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(4,216,219,0.12);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.po-item-title {
  font-size: 13px; font-weight: 600;
  color: var(--white);
}
.po-item-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
  display: block;
  white-space: normal;
  word-break: break-word;
}
.po-item-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.po-item-remove {
  background: none; border: none;
  color: rgba(255,100,100,0.5);
  cursor: pointer; padding: 4px;
  border-radius: 6px;
  transition: color 0.15s;
  display: flex; align-items: center;
}
.po-item-remove:hover { color: #ff6b6b; }
.po-item-chevron {
  color: var(--text-muted);
  transition: transform 0.25s ease;
  display: flex; align-items: center;
}
.po-item-card.open .po-item-chevron { transform: rotate(180deg); }
.po-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.po-item-card.open .po-item-body { max-height: 600px; }
/* ── Size dropdown ── */
.po-size-dropdown {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  color: var(--gold);
}
.po-size-dropdown.filled {
  background: #1a1505;
  border-color: rgba(212,175,55,0.5);
  color: var(--gold);
}
.po-size-dropdown.filled .po-size-selected,
.po-size-dropdown.filled .po-desc-label {
  color: var(--gold) !important;
}
.po-size-dropdown.filled > svg:first-child {
  color: var(--gold) !important;
  opacity: 0.7;
}
.po-size-dropdown > svg:first-child {
  color: rgba(255,255,255,0.5) !important;
}
.po-size-dropdown:hover {
  border-color: rgba(212, 175, 55, 0.7);
}
.po-size-dropdown.open {
  border-color: var(--cyan);
  background: rgba(4,216,219,0.06);
  box-shadow: 0 0 0 3px rgba(4,216,219,0.15);
}
.po-size-selected {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
}
.po-size-selected:empty::before {
  content: 'Select package size';
  color: rgba(255,255,255,0.25);
  font-weight: 400;
}
.po-desc-label:empty::before {
  content: 'Any special instructions? (optional)';
  color: rgba(255,255,255,0.25);
  font-weight: 400;
  font-size: 0.82rem;
}
.po-size-dropdown:not(.open) .po-size-selected {
  color: var(--gold);
}
.po-size-chevron {
  color: var(--text-faint);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.po-size-dropdown.open .po-size-chevron {
  transform: rotate(180deg);
  color: var(--cyan);
}

.po-size-menu {
  display: none;
  flex-direction: column;
  background: rgba(14, 16, 22, 0.98);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  animation: dropIn 0.18s cubic-bezier(0.16,1,0.3,1);
}
.po-size-menu.open { display: flex; }

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

.po-size-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.po-size-option:last-child { border-bottom: none; }
.po-size-option:hover { background: rgba(255,255,255,0.05); }
.po-size-option.active { background: rgba(212,175,55,0.08); }
.po-size-option span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.po-size-option.active span:first-child { color: var(--gold); }
.po-size-hint {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: var(--text-faint) !important;
}

/* ── Field group — proper breathing room between fields ── */
.po-field-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.po-item-fields {
  padding: 4px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.po-item-fields .input-group,
.po-item-fields .form-group {
  margin-bottom: 0;
}

/* ── Icon-prefixed input wrapper ── */
.po-input-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.po-input-icon {
  position: absolute;
  left: 12px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  flex-shrink: 0;
  z-index: 1;
  transition: color 0.2s;
}
.input-field.filled ~ .po-input-icon,
.po-input-icon-wrap:has(.input-field.filled) .po-input-icon {
  color: var(--gold) !important;
  opacity: 0.7;
}
.po-input-padded {
  padding-left: 34px !important;
}

/* ── Fee label with icon ── */
.po-fee-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

/* ── Size buttons — icon + text ── */
.po-size-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.po-add-item-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed rgba(4,216,219,0.2);
  background: rgba(4,216,219,0.03);
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all 0.18s;
  margin-top: 8px;
}
.po-add-item-btn:hover {
  border-color: rgba(4,216,219,0.45);
  color: var(--cyan);
  background: rgba(4,216,219,0.06);
}

.po-bulk-banner {
  display: none;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--gold);
  margin-top: 8px;
  align-items: center;
  gap: 8px;
}
.po-bulk-banner.show { display: flex; }

.po-fee-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 16px;
  backdrop-filter: blur(8px);
}
.po-fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
}
.po-fee-row.total {
  border-top: 1px solid var(--border-soft);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.po-fee-row.total span:last-child {
  font-family: 'Syne', sans-serif;
  color: var(--gold);
}
.po-fee-loading {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  padding: 8px 0;
}

.po-submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--cyan) 0%, #02b0b3 100%);
  color: #001a1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.po-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(4,216,219,0.3);
}
.po-submit-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.po-error {
  font-size: 12px;
  color: var(--error);
  text-align: center;
  margin-top: 8px;
  min-height: 16px;
}

.po-addr-error {
  color: #ff6b6b;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.2s ease, margin 0.2s ease;
  margin-top: 0;
}
.po-addr-error:not(:empty) {
  max-height: 30px;
  margin-top: 4px;
}

/* ════════════════════════════════════════════
   GOOGLE PLACES AUTOCOMPLETE
════════════════════════════════════════════ */
.pac-container {
  background: rgba(12, 12, 12, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  margin-top: 6px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  padding: 4px 0;
  z-index: 9999 !important;
  pointer-events: auto !important;
  touch-action: pan-y !important;
  overflow-y: auto !important;
  max-height: 380px !important;
}

/* Hide Google branding */
.pac-container::after,
.pac-logo::after {
  display: none !important;
  background-image: none !important;
  height: 0 !important;
}

/* Each suggestion row */
.pac-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  background: transparent;
  transition: background 0.15s;
  line-height: 1.5;
}
.pac-item::before {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
}
.pac-item-query {
  grid-column: 2;
  grid-row: 1;
}
.pac-item > span:not(.pac-item-query) {
  grid-column: 2;
  grid-row: 2;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}
.pac-item:first-child { border-top: none; }
.pac-item:hover,
.pac-item:active { background: rgba(255,255,255,0.06); }

.pac-icon,
.pac-icon-marker { display: none !important; }

.pac-item::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='2.5'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  align-self: flex-start;
}

/* Main place name */
.pac-item-query {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding-right: 6px;
}

/* Matched portion highlight */
.pac-matched {
  color: #04D8DB;
  font-weight: 700;
}

/* Secondary text (city, region) */
.pac-item span:not(.pac-item-query):not(.pac-matched) {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dash-sidebar    { display: none; }
  .dash-mobile-nav { display: flex; }

  .dash-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .dash-topbar {
    grid-column: 1;
    padding: 12px 16px;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .dash-topbar-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .dash-main {
    grid-column: 1;
    padding: 18px 14px;
    padding-bottom: 100px;
    gap: 28px;
  }
  .dash-btn { font-size: 12px; padding: 8px 14px; }
  .dash-wallet-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 18px;
  }
  .dash-wallet-amount { font-size: 28px; }
  .dash-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0; }
  .dash-orders-panel-header { padding: 14px 16px; }
  .dash-table th:nth-child(6),
  .dash-table td:nth-child(6) { display: none; }
  .dash-table th { padding: 10px 12px; }
  .dash-table td { padding: 11px 12px; }
  .dash-empty { padding: 36px 12px; }
  .dash-item-grid { grid-template-columns: 1fr; }
  .dash-detail-row td { padding: 0 12px; }
}

@media (max-width: 480px) {
  .card { padding: 2rem 1.5rem; border-radius: 22px; }
  h2 { font-size: 1.5rem; }
  .otp-box { height: 50px; font-size: 1.2rem; border-radius: 10px; }
}

@media (max-width: 380px) {
  .dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-wallet-amount { font-size: 24px; }
  .dash-btn { font-size: 11px; padding: 7px 10px; }
}

@media (min-width: 769px) {
  .po-sheet {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 400px;
    border-radius: 20px;
    max-height: calc(100vh - 48px);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  }
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes cardIn {
  from { opacity: 0; transform: translateY(32px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 60px) scale(1.1); }
}
@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-30px, -50px) scale(1.08); }
}
@keyframes pulse-orb {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ════════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; height: 2px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.12); }

body > .bg-orb {
  overflow: hidden;
  max-width: 100vw;
}

/* ── Pin drop banner ── */
.po-pin-banner {
  display: none;
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(4, 10, 20, 0.75);
  border: 1px solid rgba(4, 216, 219, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #04D8DB;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px 6px 12px;
  border-radius: 999px;
  gap: 6px;
  align-items: center;
  z-index: 50;
  white-space: nowrap;
  max-width: calc(100vw - 48px);
}
.po-pin-banner.show { display: flex; }

/* FIXED: Consolidated .pac-container styles - removed duplicate rule */

.po-pin-cancel {
  background: rgba(4, 216, 219, 0.12);
  border: 1px solid rgba(4, 216, 219, 0.25);
  color: #04D8DB;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 2px;
}

/* ── Map controls ── */
.po-map-controls {
  position: fixed;
  top: 60px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 40;
}
.po-map-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(10, 14, 24, 0.85);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.2s, color 0.2s;
}
.po-map-btn.active {
  border-color: #04D8DB;
  color: #04D8DB;
}

.po-pin-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 10px;
}
.po-pin-btn:hover { background: rgba(212, 175, 55, 0.14); }

#pin-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #04D8DB;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  width: 200px;
  max-width: calc(100vw - 120px);
}
#pin-search-input::placeholder { color: rgba(4, 216, 219, 0.45); }

/* ════════════════════════════════════════════
   RIDER DASHBOARD — SPECIFIC STYLES
════════════════════════════════════════════ */
.rider-online-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.rider-online-toggle.online  { border-color: rgba(50,205,50,0.4); color: #32cd32; background: rgba(50,205,50,0.08); }
.rider-online-toggle.offline { border-color: rgba(255,80,80,0.4); color: #ff8080; background: rgba(255,80,80,0.08); }
.rider-online-toggle:hover   { filter: brightness(1.1); }

.rider-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
}
.rider-status-dot.online {
  background: #32cd32;
  box-shadow: 0 0 6px rgba(50,205,50,0.6);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.rider-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}
.rider-status-pill.online  { background: rgba(50,205,50,0.12); color: #32cd32; border: 1px solid rgba(50,205,50,0.25); }
.rider-status-pill.offline { background: rgba(255,80,80,0.12); color: #ff8080; border: 1px solid rgba(255,80,80,0.25); }
.rider-status-pill .rider-status-dot { width: 6px; height: 6px; }

.rider-order-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, rgba(4,216,219,0.12), rgba(212,175,55,0.08));
  border: 1px solid rgba(4,216,219,0.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  animation: bannerSlide 0.4s cubic-bezier(0.16,1,0.3,1) both;
  flex-wrap: wrap;
}
@keyframes bannerSlide {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.rider-banner-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.rider-banner-icon {
  font-size: 28px;
  animation: bounce 0.8s ease-in-out infinite alternate;
}
@keyframes bounce {
  from { transform: translateY(0); }
  to   { transform: translateY(-4px); }
}
.rider-banner-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cyan);
}
.rider-banner-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rider-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.rider-action-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   ACCOUNT PANEL
════════════════════════════════════════════ */
.account-panel {
  position: fixed;
  top: 0; right: 0;
  width: 360px;
  max-width: 100vw;
  height: 100vh;
  background: #111;
  border-left: 1px solid var(--border-soft);
  z-index: 300;
  overflow-y: auto;
  padding: 28px 24px 160px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.account-panel.open { transform: translateX(0); }

.account-panel-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 299;
}
.account-panel-backdrop.open { display: block; }

.account-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.account-panel-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.account-panel-close {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.account-panel-close:hover { color: var(--white); background: var(--surface-2); }

.account-avatar-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}
.account-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #001a1a;
  margin-bottom: 10px;
}
.account-avatar-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.account-avatar-id {
  font-size: 12px;
  color: var(--cyan);
  margin-top: 3px;
  font-weight: 500;
}

.account-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.account-info-item {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 12px;
}
.account-info-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.account-info-value {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  word-break: break-all;
}

.account-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s;
}
.account-section-toggle:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.account-section-toggle i[data-lucide="chevron-down"] {
  transition: transform 0.25s;
}
.account-section-collapsible {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}
.account-section-collapsible.open {
  display: flex;
}

.account-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.account-logout-btn {
  width: 100%;
  background: rgba(255, 80, 80, 0.08);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: #ff8080;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.account-logout-btn:hover { background: rgba(255, 80, 80, 0.15); }

.rider-modal-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 12px;
  animation: bounce 0.8s ease-in-out infinite alternate;
}

.bg-orb-1, .bg-orb-2, .bg-orb-3 {
  overflow: hidden;
  pointer-events: none;
}

body { overflow-x: hidden !important; }

/* ════════════════════════════════════════════
   ADMIN PANEL
════════════════════════════════════════════ */
.admin-earnings-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(4,216,219,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.admin-earnings-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 150px; height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.07), transparent 70%);
  pointer-events: none;
}

.admin-stats-grid {
  display: grid;
  gap: 14px;
  padding: 0 4px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
}
@media (min-width: 800px) {
  .admin-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1400px) {
  .admin-stats-grid { grid-template-columns: repeat(6, 1fr); }
}

.admin-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: #D4AF37;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 0 5px;
  margin-left: auto;
  line-height: 1;
}

.admin-form-group { margin-bottom: 16px; }
.admin-form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.admin-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  resize: vertical;
  min-height: 90px;
  transition: border-color 0.18s;
  outline: none;
}
.admin-textarea:focus { border-color: rgba(255,92,92,0.5); }
.admin-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.18s;
  appearance: none;
  -webkit-appearance: none;
}
.admin-select:focus { border-color: var(--gold); }
.admin-select option { background: #1a1a1a; color: var(--white); }

.dash-btn-gold {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.3);
}
.dash-btn-gold:hover { background: rgba(212,175,55,0.25); }

.upload-zone {
  border: 1.5px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 16px;
  cursor: pointer;
  transition: border-color 0.2s;
  text-align: center;
  background: rgba(255,255,255,0.02);
}
.upload-zone:hover { border-color: rgba(4,216,219,0.4); }

.upload-status { font-size: 12px; margin-top: 6px; min-height: 18px; }
.upload-status.success { color: #4ade80; }
.upload-status.error   { color: #ff8080; }
.upload-status.loading { color: rgba(255,255,255,0.4); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.notif-bell-btn {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}
.notif-bell-btn:hover {
  background: rgba(4,216,219,0.1);
  color: #04D8DB;
  border-color: rgba(4,216,219,0.3);
}
.notif-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: #ff6b6b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-family: 'DM Sans', sans-serif;
}

.notif-drawer {
  position: fixed;
  top: 0; right: -105vw;
  width: 100vw; height: 100vh;
  z-index: 1100;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: row;
  pointer-events: none;
}
.notif-drawer.open { right: 0; pointer-events: all; }

.notif-swipe-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0 4px;
}
.notif-swipe-arrow {
  width: 28px; height: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  transition: background 0.2s, color 0.2s;
}
.notif-swipe-handle:hover .notif-swipe-arrow {
  background: rgba(4,216,219,0.1);
  color: var(--cyan);
}

.notif-drawer-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(8, 10, 20, 0.6);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-left: 1px solid rgba(255,255,255,0.08);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5), inset 1px 0 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.notif-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  z-index: 1099;
}
.notif-drawer-backdrop.open { display: block; }

.notif-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
  background: rgba(4,216,219,0.03);
}
.notif-drawer-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.notif-mark-read-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(4,216,219,0.7);
  background: rgba(4,216,219,0.08);
  border: 1px solid rgba(4,216,219,0.15);
  border-radius: 20px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  padding: 5px 10px;
  transition: all 0.15s;
}
.notif-mark-read-btn:hover { background: rgba(4,216,219,0.15); color: #04D8DB; }

.notif-drawer-list { flex: 1; overflow-y: auto; padding: 8px 0; }

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.15s;
  position: relative;
}
.notif-item:hover { background: rgba(255,255,255,0.03); }
.notif-item.unread { background: rgba(4,216,219,0.04); }
.notif-item.unread::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--cyan), transparent);
  border-radius: 0 2px 2px 0;
}

.notif-item-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.notif-item.unread .notif-item-icon {
  background: rgba(4,216,219,0.08);
  border-color: rgba(4,216,219,0.15);
}

.notif-item-body { flex: 1; min-width: 0; }
.notif-item-msg {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  margin-bottom: 5px;
}
.notif-item.unread .notif-item-msg { color: #fff; font-weight: 500; }
.notif-item-time {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  gap: 4px;
}

.notif-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ════════════════════════════════════════════
   NEW ORDER MODAL — MODAL 1 (Quick Decision)
════════════════════════════════════════════ */
.nom-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.nom-overlay.open { opacity: 1; pointer-events: all; }

.nom-sheet {
  width: 100%; max-width: 480px;
  background: #0e1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 -24px 80px rgba(0,0,0,0.8);
  min-height: 480px;
}
.nom-overlay.open .nom-sheet { transform: translateY(0); }

.nom-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--cyan));
}
.nom-handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  margin: 14px auto 0;
}

.nom-header {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 24px 0;
}
.nom-pulse-ring {
  position: relative; width: 44px; height: 44px; flex-shrink: 0;
}
.nom-pulse-ring::before, .nom-pulse-ring::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(4,216,219,0.15);
  animation: nomPulse 1.8s ease-out infinite;
}
.nom-pulse-ring::after { animation-delay: 0.9s; }
.nom-pulse-inner {
  position: absolute; inset: 6px;
  background: rgba(4,216,219,0.12);
  border: 1.5px solid rgba(4,216,219,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
@keyframes nomPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.nom-title-block { flex: 1; }
.nom-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: -0.3px;
  line-height: 1.1;
}
.nom-subtitle {
  font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 2px;
}
.nom-timer {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  color: var(--cyan);
  min-width: 40px; text-align: right;
}
.nom-timer.urgent { color: #ff8080; animation: timerUrgent 0.5s ease infinite alternate; }
@keyframes timerUrgent { from { opacity: 1; } to { opacity: 0.4; } }

.nom-earnings-hero {
  margin: 20px 24px 0;
  background: linear-gradient(135deg, rgba(4,216,219,0.08) 0%, rgba(4,216,219,0.02) 100%);
  border: 1px solid rgba(4,216,219,0.2);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.nom-earn-label {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.nom-earn-amount {
  font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}
.nom-earn-currency {
  font-size: 16px; font-weight: 600;
  color: rgba(4,216,219,0.6);
  margin-right: 2px;
}
.nom-earn-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.nom-meta-pill {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px; color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.nom-meta-pill i { flex-shrink: 0; }

.nom-info-grid {
  margin: 14px 24px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.nom-info-row {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 11px 14px;
}
.nom-info-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.nom-info-icon.cyan  { background: rgba(4,216,219,0.1);   border: 1px solid rgba(4,216,219,0.2); }
.nom-info-icon.gold  { background: rgba(212,175,55,0.1);  border: 1px solid rgba(212,175,55,0.2); }
.nom-info-icon.white { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.nom-info-label {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 2px;
}
.nom-info-val {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.nom-actions {
  display: flex; gap: 10px;
  padding: 20px 24px 44px;
}
.nom-btn-ignore {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 20px;
  color: rgba(255,255,255,0.45);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.nom-btn-ignore:hover { background: rgba(255,80,80,0.08); border-color: rgba(255,80,80,0.2); color: #ff8080; }
.nom-btn-accept {
  flex: 1;
  background: linear-gradient(135deg, rgba(4,216,219,0.2), rgba(4,216,219,0.1));
  border: 1px solid rgba(4,216,219,0.4);
  border-radius: 14px;
  padding: 14px 20px;
  color: var(--cyan);
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  position: relative; overflow: hidden;
}
.nom-btn-accept::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,216,219,0.3), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.nom-btn-accept:hover::before { opacity: 1; }
.nom-btn-accept:active { transform: scale(0.97); }

.nom-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 0 0 14px 14px;
  overflow: hidden;
  margin: -8px 24px 0;
}
.nom-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  border-radius: 3px;
  transition: width 1s linear;
}

/* ════════════════════════════════════════════
   NEW ORDER MODAL 2 — Special Instructions
════════════════════════════════════════════ */
.nom2-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.nom2-overlay.open { opacity: 1; pointer-events: all; }

.nom2-card {
  width: 100%; max-width: 400px;
  background: #0e1117;
  border: 1px solid rgba(255,165,0,0.25);
  border-radius: 24px;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 0 60px rgba(255,140,0,0.15), 0 32px 80px rgba(0,0,0,0.8);
}
.nom2-overlay.open .nom2-card { transform: scale(1) translateY(0); }

.nom2-top { height: 3px; background: linear-gradient(90deg, #ff8c00, #ffcc00, #ff8c00); }
.nom2-body { padding: 32px 28px 32px; }

.nom2-icon-wrap {
  width: 56px; height: 56px; border-radius: 18px;
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 30px rgba(255,140,0,0.15);
}
.nom2-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff; text-align: center;
  margin-bottom: 6px;
}
.nom2-sub {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-align: center; margin-bottom: 18px;
}
.nom2-instruction-box {
  background: rgba(255,140,0,0.05);
  border: 1px solid rgba(255,140,0,0.2);
  border-radius: 14px;
  padding: 16px;
  font-size: 14px;
  color: rgba(255,200,100,0.9);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 60px;
}
.nom2-btn-confirm {
  width: 100%;
  background: linear-gradient(135deg, rgba(255,140,0,0.2), rgba(255,140,0,0.08));
  border: 1px solid rgba(255,140,0,0.4);
  border-radius: 14px;
  padding: 14px;
  color: #ffaa00;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.nom2-btn-confirm:hover { background: rgba(255,140,0,0.25); }

/* ════════════════════════════════════════════
   DELIVERY MODE
════════════════════════════════════════════ */
.dm-blur-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px) saturate(80%);
  -webkit-backdrop-filter: blur(8px) saturate(80%);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.dm-blur-overlay.active { opacity: 1; pointer-events: all; }

.dm-panel {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9100;
  max-width: 480px; margin: 0 auto;
  background: #0e1117;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  border-radius: 28px 28px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.8);
  overflow: hidden;
  min-height: 540px;
}
.dm-panel.active { transform: translateY(0); }

.dm-panel-top-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}
.dm-handle {
  width: 36px; height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 12px auto 0;
}
.dm-panel-inner { padding: 20px 24px 56px; }

.dm-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.dm-header-left { display: flex; align-items: center; gap: 14px; }
.dm-status-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(4,216,219,0.08);
  border: 1px solid rgba(4,216,219,0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px; font-weight: 600;
  color: var(--cyan);
}
.dm-status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  animation: dmDotPulse 1.5s ease infinite;
}
@keyframes dmDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.dm-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 800;
  color: #fff;
}
.dm-minimize-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.dm-minimize-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }

.dm-steps {
  display: flex; align-items: center;
  margin-bottom: 22px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dm-step {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.dm-step.active { color: var(--cyan); }
.dm-step.done   { color: rgba(74,222,128,0.7); }
.dm-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  transition: all 0.3s;
}
.dm-step.active .dm-step-num {
  background: rgba(4,216,219,0.15);
  border-color: var(--cyan);
  color: var(--cyan);
}
.dm-step.done .dm-step-num {
  background: rgba(74,222,128,0.15);
  border-color: rgba(74,222,128,0.5);
  color: #4ade80;
}
.dm-step-line {
  flex: 1; height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 6px;
}

.dm-addr-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.dm-addr-card {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 12px 14px;
  min-height: unset;
  overflow: visible;
}
.dm-addr-icon {
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dm-addr-icon.cyan { background: rgba(4,216,219,0.1);  border: 1px solid rgba(4,216,219,0.2); }
.dm-addr-icon.gold { background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2); }
.dm-addr-label {
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.dm-addr-val {
  font-size: 13px; color: rgba(255,255,255,0.8);
  line-height: 1.4; flex: 1;
}
.dm-addr-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  margin-left: auto; flex-shrink: 0;
}

.dm-nav-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(4,216,219,0.08);
  border: 1px solid rgba(4,216,219,0.2);
  border-radius: 10px;
  padding: 6px 10px;
  color: var(--cyan);
  font-size: 11px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.dm-nav-btn:hover { background: rgba(4,216,219,0.15); }

.dm-call-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px;
  padding: 6px 10px;
  color: #4ade80;
  font-size: 11px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.dm-call-btn:hover { background: rgba(74,222,128,0.15); }

.dm-action-btn {
  width: 100%;
  border-radius: 16px;
  padding: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: all 0.2s;
  margin-top: 6px;
}
.dm-action-btn.pickup {
  background: linear-gradient(135deg, rgba(4,216,219,0.18), rgba(4,216,219,0.08));
  border: 1px solid rgba(4,216,219,0.35);
  color: var(--cyan);
}
.dm-action-btn.deliver {
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.08));
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
}
.dm-action-btn:active { transform: scale(0.97); }

.dm-fab {
  position: fixed; bottom: 80px; right: 16px; z-index: 8900;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #04D8DB, #0ab8ba);
  border-radius: 30px;
  padding: 11px 16px;
  color: #000;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(4,216,219,0.4), 0 2px 8px rgba(0,0,0,0.5);
  transform: translateY(120px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  letter-spacing: 0.01em;
}
.dm-fab.visible { transform: translateY(0); }
.dm-fab-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(0,0,0,0.4);
  animation: dmDotPulse 1.5s ease infinite;
}

@media (min-width: 480px) {
  .dm-panel { border-radius: 28px 28px 0 0; left: 50%; right: auto; transform: translateX(-50%) translateY(100%); width: 480px; }
  .dm-panel.active { transform: translateX(-50%) translateY(0); }
  .dm-fab { right: calc(50% - 224px); }
}

/* ═══════════════════════════════════════════════════════════════════
   LANDING PAGE  ·  landing.html
   ═══════════════════════════════════════════════════════════════════ */

.lp-body {
  display: block;
  margin: 0;
  padding: 0;
  background: #080808;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Shared delay helpers ── */
.lp-delay-1 { transition-delay: 0.14s; }
.lp-delay-2 { transition-delay: 0.28s; }

/* ── NAV ── */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.lp-nav-stuck {
  background: rgba(8,8,8,0.82);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-color: rgba(255,255,255,0.06);
}
.lp-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  overflow: hidden;
}
.lp-logo img {
  width: 34px !important;
  height: 34px !important;
  max-width: 34px !important;
  max-height: 34px !important;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.lp-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #04D8DB, #0ab8ba);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800;
  color: #000;
  flex-shrink: 0;
}
.lp-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}
.lp-nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.lp-nav-link {
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-nav-link:hover { color: #fff; }
.lp-nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-btn-ghost {
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.lp-btn-nav-primary {
  padding: 8px 18px;
  background: #04D8DB;
  border-radius: 10px;
  color: #000;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-btn-nav-primary:hover {
  background: #0ab8ba;
  transform: translateY(-1px);
}
.lp-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 6px 8px;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  align-items: center;
  justify-content: center;
}
.lp-menu-btn i { width: 18px; height: 18px; }
.lp-mobile-drawer {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 24px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.lp-mobile-drawer.lp-drawer-open { display: flex; }
.lp-drawer-link {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}
.lp-drawer-link:hover { color: #fff; }
.lp-drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 6px 0;
}
.lp-drawer-cta {
  margin-top: 10px;
  text-align: center;
  display: block;
  border-radius: 12px;
  padding: 12px;
}

/* ── HERO ── */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}
.lp-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.lp-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.lp-glow-cyan {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(4,216,219,0.1) 0%, transparent 65%);
  top: -200px; left: -150px;
  filter: blur(60px);
}
.lp-glow-gold {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 65%);
  bottom: -100px; right: -100px;
  filter: blur(60px);
}
.lp-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 130px 24px 90px;
  max-width: 820px;
}
.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4,216,219,0.07);
  border: 1px solid rgba(4,216,219,0.18);
  border-radius: 40px;
  padding: 6px 18px 6px 12px;
  font-size: 12px; font-weight: 600;
  color: rgba(4,216,219,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.lp-pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #04D8DB;
  animation: lpDotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.lp-dot-green { background: #4ade80; }
@keyframes lpDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}
.lp-hero-h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(44px, 7.5vw, 84px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 26px;
}
.lp-grad-text {
  background: linear-gradient(120deg, #04D8DB 0%, #0ab8ba 40%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-grad-cyan {
  background: linear-gradient(120deg, #04D8DB, #0ab8ba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-grad-gold {
  background: linear-gradient(120deg, #D4AF37, #f0c94d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin: 0 0 44px;
  font-weight: 400;
}
.lp-desktop-br { display: block; }
.lp-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.lp-btn-hero-cyan {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #04D8DB;
  color: #000;
  padding: 15px 30px;
  border-radius: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 8px 32px rgba(4,216,219,0.28);
  letter-spacing: 0.01em;
}
.lp-btn-hero-cyan i { width: 18px; height: 18px; }
.lp-btn-hero-cyan:hover {
  background: #0ab8ba;
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(4,216,219,0.42);
}
.lp-btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.85);
  padding: 15px 30px;
  border-radius: 14px;
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  letter-spacing: 0.01em;
}
.lp-btn-hero-ghost i { width: 18px; height: 18px; }
.lp-btn-hero-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}
.lp-arrow-icon { transition: transform 0.2s; width: 16px; height: 16px; }
.lp-btn-hero-ghost:hover .lp-arrow-icon { transform: translateX(4px); }
.lp-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.lp-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.lp-trust-chip i { width: 14px; height: 14px; color: #04D8DB; }
.lp-trust-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.lp-scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
}
.lp-scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(4,216,219,0.7), transparent);
  animation: lpScrollDrop 1.8s ease infinite;
}
@keyframes lpScrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}

/* ── STATS STRIP ── */
.lp-stats-strip {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.015);
}
.lp-stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 28px;
}
.lp-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 44px; font-weight: 800;
  color: #04D8DB;
  line-height: 1;
  letter-spacing: -0.025em;
}
.lp-stat-pct {
  font-family: 'Syne', sans-serif;
  font-size: 30px; font-weight: 800;
  color: #04D8DB;
}
.lp-stat-l {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.lp-stat-sep {
  width: 1px; height: 50px;
  background: rgba(255,255,255,0.06);
}

/* ── SECTION COMMON ── */
.lp-section { padding: 104px 24px; }
.lp-section-alt { background: rgba(255,255,255,0.012); }
.lp-section-wrap {
  max-width: 1140px;
  margin: 0 auto;
}
.lp-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #04D8DB;
  margin-bottom: 14px;
}
.lp-section-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 14px;
}
.lp-section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.38);
  margin: 0 0 60px;
  font-weight: 400;
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.lp-hiw-grid {
  display: flex;
  align-items: flex-start;
}
.lp-hiw-card {
  flex: 1;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 24px;
  padding: 36px 30px;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.lp-hiw-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(4,216,219,0.2);
  transform: translateY(-4px);
}
.lp-hiw-num {
  font-family: 'Syne', sans-serif;
  font-size: 54px; font-weight: 800;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.lp-hiw-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px; font-weight: 700;
  color: #fff;
  margin: 20px 0 10px;
}
.lp-hiw-p {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin: 0;
}
.lp-hiw-line {
  flex-shrink: 0;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, rgba(4,216,219,0.25), rgba(212,175,55,0.25));
  margin-top: 76px;
  position: relative;
}
.lp-hiw-line::after {
  content: '';
  position: absolute;
  right: -4px; top: -3.5px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D4AF37;
  box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

/* ── ICON TILE ── */
.lp-icon-tile {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
}
.lp-icon-tile i { width: 22px; height: 22px; }
.lp-tile-cyan {
  background: rgba(4,216,219,0.09);
  border: 1px solid rgba(4,216,219,0.18);
  color: #04D8DB;
}
.lp-tile-gold {
  background: rgba(212,175,55,0.09);
  border: 1px solid rgba(212,175,55,0.18);
  color: #D4AF37;
}

/* ── PRICING ── */
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.lp-price-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  transition: all 0.3s;
}
.lp-price-card:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-4px);
}
.lp-price-featured {
  border-color: rgba(4,216,219,0.22);
  background: rgba(4,216,219,0.035);
}
.lp-price-popular-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: #04D8DB;
  color: #000;
  font-size: 10px; font-weight: 800;
  padding: 3px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.lp-price-dist {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.lp-price-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: rgba(255,255,255,0.025);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.045);
}
.lp-sz {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.lp-sz-s { background: rgba(4,216,219,0.1);  color: #04D8DB; }
.lp-sz-m { background: rgba(212,175,55,0.1); color: #D4AF37; }
.lp-sz-l { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.lp-sz-name {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  flex: 1;
}
.lp-sz-price {
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 800;
  color: #fff;
}
.lp-discount-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-discount-chip {
  flex: 1;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.13);
  border-radius: 16px;
  padding: 18px 20px;
}
.lp-discount-chip i {
  width: 20px; height: 20px;
  color: #D4AF37;
  flex-shrink: 0;
}
.lp-discount-chip div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-discount-chip strong {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff;
}
.lp-discount-chip span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ── FEATURES ── */
.lp-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lp-feat-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 28px;
  transition: all 0.3s;
}
.lp-feat-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(4,216,219,0.16);
  transform: translateY(-4px);
}
.lp-feat-h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px; font-weight: 700;
  color: #fff;
  margin: 18px 0 9px;
}
.lp-feat-p {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin: 0;
}

/* ── FOR RIDERS ── */
.lp-riders-section {
  background: radial-gradient(ellipse at 75% 50%, rgba(212,175,55,0.055) 0%, transparent 55%);
}
.lp-riders-wrap {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 0 24px;
}
.lp-riders-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
}
.lp-riders-p {
  font-size: 16px;
  color: rgba(255,255,255,0.4);
  line-height: 1.72;
  margin: 0 0 28px;
}
.lp-riders-list {
  list-style: none;
  padding: 0; margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-riders-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
.lp-riders-list i {
  width: 17px; height: 17px;
  color: #04D8DB;
  flex-shrink: 0;
}

/* ── EARNINGS CARD (rider mockup) ── */
.lp-earnings-card {
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5),
              0 0 0 1px rgba(212,175,55,0.07);
}
.lp-ec-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.lp-ec-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.lp-ec-online {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.18);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11px; font-weight: 600;
  color: #4ade80;
}
.lp-ec-amount {
  font-family: 'Syne', sans-serif;
  font-size: 50px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}
.lp-ec-cents {
  font-size: 30px;
  color: rgba(255,255,255,0.4);
}
.lp-ec-progress-wrap { margin-bottom: 20px; }
.lp-ec-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  margin-bottom: 7px;
  overflow: hidden;
}
.lp-ec-fill {
  height: 100%;
  width: 71%;
  background: linear-gradient(90deg, #D4AF37, #f0c94d);
  border-radius: 4px;
}
.lp-ec-pct-label {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.lp-ec-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.lp-ec-stat-box {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 13px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-ec-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800;
  color: #fff;
  line-height: 1;
}
.lp-ec-stat-l {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
}
.lp-ec-incoming {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(4,216,219,0.05);
  border: 1px solid rgba(4,216,219,0.14);
  border-radius: 16px;
  padding: 14px;
  animation: lpIncomingPulse 3s ease infinite;
}
@keyframes lpIncomingPulse {
  0%, 100% { border-color: rgba(4,216,219,0.14); }
  50%       { border-color: rgba(4,216,219,0.32); }
}
.lp-ec-in-icon {
  width: 36px; height: 36px;
  background: rgba(4,216,219,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #04D8DB;
  flex-shrink: 0;
}
.lp-ec-in-icon i { width: 18px; height: 18px; }
.lp-ec-in-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-ec-in-title {
  font-size: 13px; font-weight: 600;
  color: #fff;
}
.lp-ec-in-dist {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.lp-ec-accept-btn {
  background: #04D8DB;
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-ec-accept-btn:hover { background: #0ab8ba; }

/* ── FINAL CTA ── */
.lp-cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(4,216,219,0.08) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
}
.lp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.lp-cta-h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
}
.lp-cta-p {
  font-size: 17px;
  color: rgba(255,255,255,0.35);
  margin: 0 0 44px;
}
.lp-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.lp-footer {
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 60px 32px 30px;
  background: rgba(255,255,255,0.008);
}
.lp-footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.lp-footer-brand { flex: 0 0 220px; }
.lp-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.25);
  margin: 12px 0 0;
  line-height: 1.5;
}
.lp-footer-cols {
  flex: 1;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.lp-footer-col-head {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.lp-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.lp-footer-col a:hover { color: rgba(255,255,255,0.8); }
.lp-footer-legal-links {
  display: flex;
  gap: 20px;
}
.lp-footer-legal-link {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.lp-footer-legal-link:hover { color: rgba(255,255,255,0.7); }

.lp-footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.18);
  flex-wrap: wrap;
  gap: 8px;
}

/* ════════════════════════════════════════════
   AVAILABLE ORDERS PILL + PANEL
════════════════════════════════════════════ */
.avail-pill {
  position: fixed;
  bottom: calc(72px + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 999px;
  padding: 10px 16px 10px 14px;
  cursor: pointer;
  color: #D4AF37;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
  white-space: nowrap;
}
.avail-pill.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.avail-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D4AF37;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
.avail-pill-dismiss {
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(212,175,55,0.7);
  margin-left: 4px;
  flex-shrink: 0;
}
.avail-blur-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.avail-blur-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.avail-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 70vh;
  background: rgba(18,18,18,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  z-index: 1200;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1);
  overflow: hidden;
}
.avail-panel.active {
  transform: translateY(0);
}
.avail-panel-top-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan), var(--gold));
  opacity: 0.6;
}
.avail-panel-handle {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  margin: 12px auto 0;
}
.avail-panel-inner {
  padding: 16px 20px 24px;
  overflow-y: auto;
  max-height: calc(70vh - 40px);
}
.avail-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.avail-panel-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.avail-minimize-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
}
.avail-panel-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.avail-order-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.avail-empty {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  padding: 24px 0;
}
.avail-order-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 16px;
}
.avail-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.avail-earn {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.avail-earn-currency {
  font-size: 12px;
  font-weight: 700;
  color: #D4AF37;
}
.avail-earn-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #D4AF37;
}
.avail-meta-pills {
  display: flex;
  gap: 6px;
}
.avail-meta-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(4,216,219,0.06);
  border: 1px solid rgba(4,216,219,0.15);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.avail-pickup-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.5;
}
.avail-accept-btn {
  width: 100%;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.08));
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 12px;
  padding: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.avail-accept-btn:hover {
  background: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.5);
}
.avail-accept-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── SPLASH KEYFRAMES ── */
@keyframes splashOrb1    { 0%,100%{transform:translate(0,0)}  50%{transform:translate(20px,30px)} }
@keyframes splashOrb2    { 0%,100%{transform:translate(0,0)}  50%{transform:translate(-25px,-20px)} }
@keyframes splashLogoIn  { from{opacity:0;transform:scale(0.75) translateY(12px)} to{opacity:1;transform:scale(1) translateY(0)} }
@keyframes splashFadeUp  { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
@keyframes splashRingPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.04)} }

/* ── SCROLL REVEAL ── */
.lp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .lp-nav-links  { display: none; }
  .lp-nav-ctas   { display: none; }
  .lp-menu-btn   { display: flex; }
  .lp-hiw-grid   { flex-direction: column; }
  .lp-hiw-line   { width: 1px; height: 36px; margin: 0 auto; }
  .lp-hiw-line::after { right: -4px; bottom: -4px; top: auto; }
  .lp-price-grid { grid-template-columns: 1fr; }
  .lp-feat-grid  { grid-template-columns: 1fr 1fr; }
  .lp-riders-wrap { grid-template-columns: 1fr; gap: 48px; }
  .lp-stat-sep   { display: none; }
  .lp-footer-brand { flex: 0 0 100%; }
}
@media (max-width: 640px) {
  .lp-feat-grid    { grid-template-columns: 1fr; }
  .lp-hero-btns    { flex-direction: column; align-items: center; }
  .lp-cta-btns     { flex-direction: column; align-items: center; }
  .lp-discount-row { flex-direction: column; }
  .lp-footer-cols  { gap: 32px; }
  .lp-desktop-br   { display: none; }
  .lp-stats-inner  { justify-content: center; }
}

/* ── Multi-step form ── */
.step-indicator{display:flex;align-items:center;justify-content:center;margin-bottom:28px;gap:0;}
.step-dot{width:9px;height:9px;border-radius:50%;background:rgba(255,255,255,0.15);transition:background .3s,transform .3s,opacity .3s;}
.step-dot.active{background:var(--cyan);transform:scale(1.25);}
.step-dot.done{background:var(--cyan);opacity:.45;}
.step-line{flex:1;height:1px;background:rgba(255,255,255,0.1);max-width:56px;transition:background .3s;}
.step-line.active{background:rgba(4,216,219,.4);}
.step{display:none;}
.step.active{display:block;animation:stepIn .38s cubic-bezier(.16,1,.3,1);}
@keyframes stepIn{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);}}

/* ── Rider register extras ── */
.input-label-note{color:rgba(255,255,255,0.35);font-weight:400;}
.upload-hint{font-size:13px;color:rgba(255,255,255,0.4);margin-top:8px;}
.upload-hint-sub{font-size:11px;color:rgba(255,255,255,0.25);margin-top:4px;}
.upload-preview{width:100%;border-radius:8px;max-height:180px;object-fit:cover;}
.upload-placeholder{text-align:center;padding:20px 0;}
.upload-video-title{font-size:15px;font-weight:700;color:#fff;margin-top:12px;font-family:'Syne',sans-serif;}
.upload-video-sub{font-size:13px;color:rgba(255,255,255,0.5);margin-top:6px;line-height:1.6;}
.upload-video-tags{display:flex;justify-content:center;gap:10px;margin-top:14px;flex-wrap:wrap;}
.upload-tag{font-size:11px;color:rgba(4,216,219,0.7);background:rgba(4,216,219,0.08);border:1px solid rgba(4,216,219,0.2);border-radius:20px;padding:4px 12px;}
.upload-video-controls{display:flex;gap:10px;justify-content:center;margin-top:12px;flex-wrap:wrap;}
.upload-video-controls .btn-primary,.upload-video-controls .btn-ghost{width:auto;padding:10px 20px;font-size:13px;margin-bottom:0;}
.upload-video-tags{display:flex;justify-content:center;gap:8px;margin-top:14px;flex-wrap:wrap;}
.upload-tag{font-size:11px;color:rgba(4,216,219,0.7);background:rgba(4,216,219,0.08);border:1px solid rgba(4,216,219,0.2);border-radius:20px;padding:4px 12px;white-space:nowrap;}
.camera-video{width:100%;border-radius:8px;max-height:200px;object-fit:cover;background:#000;}
.recording-indicator{position:absolute;top:10px;left:10px;background:rgba(255,0,0,0.85);color:#fff;font-size:11px;font-weight:700;padding:4px 10px;border-radius:20px;display:flex;align-items:center;gap:6px;}
.recording-dot{width:7px;height:7px;background:#fff;border-radius:50%;display:inline-block;animation:pulse 1s infinite;}
.record-timer{position:absolute;top:10px;right:10px;background:rgba(0,0,0,0.6);color:#fff;font-size:12px;font-weight:600;padding:4px 10px;border-radius:20px;}
.rejection-banner{background:rgba(255,80,80,0.08);border:1px solid rgba(255,80,80,0.25);border-radius:12px;padding:14px 16px;margin-bottom:20px;}
.rejection-banner-title{font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:#ff8080;margin-bottom:6px;}
.rejection-banner-reason{font-size:13px;color:rgba(255,255,255,0.7);line-height:1.5;}
.rejection-banner-note{font-size:12px;color:rgba(255,255,255,0.4);margin-top:8px;}

/* ════════════════════════════════════════════
   LEGAL PAGES — privacy.html + terms.html
════════════════════════════════════════════ */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #04D8DB;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 48px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.legal-back:hover { opacity: 1; }
.legal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.legal-badge-cyan {
  background: rgba(4,216,219,0.08);
  border: 1px solid rgba(4,216,219,0.2);
  color: #04D8DB;
}
.legal-badge-gold {
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  color: #D4AF37;
}
.legal-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.legal-updated {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 48px;
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-section:last-child { border-bottom: none; }
.legal-h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.legal-wrap p { margin: 0 0 14px; }
.legal-wrap ul {
  padding-left: 20px;
  margin: 0 0 14px;
}
.legal-wrap ul li { margin-bottom: 6px; }
.legal-highlight-cyan {
  background: rgba(4,216,219,0.04);
  border-left: 3px solid #04D8DB;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 16px 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.legal-highlight-gold {
  background: rgba(212,175,55,0.04);
  border-left: 3px solid #D4AF37;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 16px 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.legal-contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  margin-top: 16px;
}
.legal-contact-card a {
  color: #04D8DB;
  text-decoration: none;
}
.legal-strong { color: #fff; font-weight: 600; }

/* ════════════════════════════════════════════
   LICENSE BANNER
════════════════════════════════════════════ */
.license-banner {
  grid-column: 2;
  background: rgba(212,175,55,0.08);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  padding: 10px 28px;
  position: sticky;
  top: 57px;
  z-index: 9;
}
.license-banner-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}
.license-banner-btn {
  margin-left: auto;
  flex-shrink: 0;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 8px;
  padding: 5px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.18s;
}
.license-banner-btn:hover { background: rgba(212,175,55,0.25); }

@media (max-width: 768px) {
  .license-banner { grid-column: 1; top: 49px; padding: 10px 14px; }
}

/* ════════════════════════════════════════════
   ADMIN TOGGLE
════════════════════════════════════════════ */
.dash-toggle-wrap {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.dash-toggle-wrap input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.dash-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.dash-toggle-track::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.dash-toggle-wrap input:checked + .dash-toggle-track {
  background: rgba(4,216,219,0.2);
  border-color: rgba(4,216,219,0.4);
}
.dash-toggle-wrap input:checked + .dash-toggle-track::before {
  transform: translateX(20px) translateY(-50%);
  background: var(--cyan);
}