@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand-red: #E53935;
  --brand-black: #0a0a0a;
  --brand-white: #FFFFFF;
  --subtle-grey: #141414;
  --border-grey: #222222;

  --primary: var(--brand-red);
  --primary-dark: #b71c1c;
  --black: var(--brand-black);
  --white: var(--brand-white);
  --bg: #0a0a0a;
  --card-bg: #141414;
  --border: #222222;
  --text-primary: #FFFFFF;
  --text-secondary: #aaaaaa;
  --text-muted: #666666;
  --shadow-sm: 0px 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: none;
  --shadow-lg: none;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-full: 100px;
  --status-pending: #f9a825;
  --status-pending-bg: rgba(249, 168, 37, 0.1);
  --status-confirmed: #4caf50;
  --status-confirmed-bg: rgba(76, 175, 80, 0.1);
  --status-cancelled: #ef5350;
  --status-cancelled-bg: rgba(239, 83, 80, 0.1);
  --status-completed: #888888;
  --status-completed-bg: rgba(136, 136, 136, 0.1);
}

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

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Brutalist Utility Classes */
.brutalist-card {
  border: 1px solid var(--border);
  background-color: var(--card-bg);
  box-shadow: none;
  transition: border-color 0.2s;
}
.brutalist-card:hover {
  border-color: #333;
}
.brutalist-tag {
  border: 1px solid var(--border);
  padding: 4px 8px;
  background: rgba(255,255,255,0.05);
  font-weight: 700;
  border-radius: 6px;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  outline: none;
}

input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo span {
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-profile {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  overflow: hidden;
  border: 2px solid var(--border);
}

.nav-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== BOTTOM NAV ========== */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  height: 64px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 6px 12px;
  border-radius: 12px;
}

.bottom-nav a.active {
  color: var(--white);
  background: var(--primary);
  border-radius: 14px;
}

.bottom-nav a .nav-icon {
  font-size: 22px;
  line-height: 1;
}

/* ========== MAIN CONTENT ========== */
.main {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 16px 24px;
}

@media (min-width: 768px) {
  .main {
    max-width: 1100px;
    padding: 24px 24px 40px;
  }
}

/* ========== HERO ========== */
.hero {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero p {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
}

/* ========== SEARCH BAR ========== */
.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 6px 6px 16px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.search-bar:focus-within {
  border-color: var(--primary);
}

.search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  padding: 8px 0;
  color: #fff;
}

.search-bar button {
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
}

.search-bar button:hover {
  background: var(--primary-dark);
}

/* ========== FILTER CHIPS ========== */
.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.chip {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  background: var(--white);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.chip.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ========== VEHICLE CARDS GRID ========== */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vehicle-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: #444;
}

.vehicle-card .card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--primary);
}

.card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}

.card-title-row h3 {
  font-size: 16px;
  font-weight: 700;
}

.card-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.card-meta span {
  font-size: 12px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  text-transform: uppercase;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  width: 100%;
}

.btn-primary:hover {
  background: #c62828;
  border-color: #c62828;
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: #555;
  background: rgba(255,255,255,0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
}

.btn-ghost:hover {
  background: #fff0f0;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-block {
  width: 100%;
}

/* ========== STATUS BADGES ========== */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-pending {
  background: var(--status-pending-bg);
  color: var(--status-pending);
}

.status-confirmed {
  background: var(--status-confirmed-bg);
  color: var(--status-confirmed);
}

.status-cancelled {
  background: var(--status-cancelled-bg);
  color: var(--status-cancelled);
}

.status-completed {
  background: var(--status-completed-bg);
  color: var(--status-completed);
}

/* ========== SECTION HEADERS ========== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  margin-top: 32px;
}

.section-header h2 {
  font-size: 20px;
  font-weight: 800;
}

.section-header a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* ========== PROFILE SECTION ========== */
.profile-section {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eee;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--primary);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-info h3 {
  font-size: 16px;
  font-weight: 700;
}

.profile-info p {
  font-size: 13px;
  color: var(--text-secondary);
}

.profile-edit {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* ========== MODALS ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-end;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

@media (min-width: 768px) {
  .modal-overlay.active {
    align-items: center;
  }
}

.modal {
  background: #141414;
  border: 1px solid #222;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
  animation: slideUp 0.3s ease;
  color: #fff;
}

@media (min-width: 768px) {
  .modal {
    border-radius: var(--radius-lg);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  font-size: 20px;
  font-weight: 800;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--primary);
}

.form-input::placeholder {
  color: #555;
}

.form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  background-color: #1a1a1a;
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-select option {
  background: #1a1a1a;
  color: #fff;
  padding: 8px;
}

/* ========== PHOTO UPLOAD ========== */
.photo-uploads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.photo-upload-box {
  aspect-ratio: 4/3;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.photo-upload-box:hover {
  border-color: var(--primary);
}

.photo-upload-box .upload-icon {
  font-size: 24px;
  color: var(--text-muted);
}

.photo-upload-box .upload-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

.photo-upload-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-upload-box input {
  display: none;
}

.photo-upload-box.has-image {
  border-style: solid;
  border-color: var(--status-confirmed);
}

/* ========== SLIDESHOW ========== */
.slideshow {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s;
}

.slideshow img.active {
  opacity: 1;
}

.slideshow-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slideshow-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s;
}

.slideshow-dots span.active {
  background: var(--white);
}

/* ========== QR CODE / PAYMENT ========== */
.payment-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.payment-box .amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.payment-box .amount-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.qr-placeholder {
  width: 180px;
  height: 180px;
  margin: 16px auto;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
}

.upi-id {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 700;
  border: 1px solid #333;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

.upi-copy {
  color: var(--primary);
  cursor: pointer;
  font-size: 12px;
}

/* ========== ADMIN PANEL ========== */
.admin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 16px;
}

.admin-card .user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-card .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
}

.admin-card .user-info h4 {
  font-size: 14px;
  font-weight: 700;
}

.admin-card .user-info p {
  font-size: 12px;
  color: var(--text-secondary);
}

.admin-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

/* ========== ACTIVE RIDE ========== */
.ride-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.ride-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

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

.ride-card-body {
  padding: 16px;
}

.ride-stats {
  display: flex;
  gap: 16px;
  margin: 12px 0;
}

.ride-stat {
  text-align: center;
  flex: 1;
}

.ride-stat .stat-val {
  font-size: 16px;
  font-weight: 700;
}

.ride-stat .stat-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* ========== INFO CARDS ========== */
.info-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 16px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.info-card.accent {
  border-left: 3px solid var(--primary);
}

.info-card.green {
  border-left: 3px solid var(--status-confirmed);
  background: var(--status-confirmed-bg);
}

=]


\
+
.info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ========== STATS GRID ========== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
}

.stat-box .stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-box .stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

/* ========== SECURITY BANNER ========== */
.security-banner {
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 20px;
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  z-index: 300;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

/* ========== HELPER ========== */
.text-red {
  color: var(--primary);
}

.text-muted {
  color: var(--text-muted);
}

.fw-700 {
  font-weight: 700;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.gap-8 {
  gap: 8px;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ========================================
   MOBILE RESPONSIVE (max-width: 768px)
   ======================================== */

@media (max-width: 768px) {
  /* --- NAVBAR --- */
  .navbar {
    padding: 0 12px;
    height: 56px;
  }
  .navbar-logo {
    font-size: 20px;
  }
  .nav-links {
    gap: 14px;
  }
  .nav-links a {
    font-size: 12px;
    letter-spacing: 0;
  }

  /* --- HERO --- */
  .hero h1 {
    font-size: 28px;
  }
  .hero p {
    font-size: 15px;
  }

  /* --- SEARCH --- */
  .search-bar {
    padding: 4px 4px 4px 12px;
  }
  .search-bar input {
    font-size: 15px;
  }
  .search-bar button {
    padding: 10px 16px;
    font-size: 14px;
  }

  /* --- FILTER BAR --- */
  .filter-bar {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .filter-bar > * {
    width: 100% !important;
  }
  .filter-bar select {
    width: 100% !important;
    min-width: unset !important;
  }

  /* --- VEHICLE GRID --- */
  .vehicle-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* --- VEHICLE CARD --- */
  .vehicle-card .card-body {
    padding: 12px;
  }
  .card-title-row h3 {
    font-size: 16px;
  }
  .card-price {
    font-size: 14px;
  }
  .card-meta span {
    font-size: 12px;
  }

  /* --- PROFILE SECTION --- */
  .profile-section {
    padding: 14px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .profile-avatar {
    width: 44px;
    height: 44px;
  }
  .profile-info h3 {
    font-size: 14px;
  }
  .profile-edit {
    padding: 6px 10px;
    font-size: 11px;
  }

  /* --- MODALS --- */
  .modal {
    max-height: 85vh;
    padding: 20px 16px;
    border-radius: 16px 16px 0 0;
  }
  .modal-header h2 {
    font-size: 17px;
  }

  /* --- FORMS --- */
  .form-input, .form-select {
    padding: 12px 14px;
    font-size: 16px;
  }
  .form-label {
    font-size: 12px;
  }

  /* --- PHOTO UPLOADS --- */
  .photo-uploads {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .photo-upload-box .upload-label {
    font-size: 9px;
  }

  /* --- BUTTONS --- */
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
  }

  /* --- SECTION HEADER --- */
  .section-header h2 {
    font-size: 20px;
  }

  /* --- STATS GRID (admin) --- */
  .stat-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .stat-card {
    padding: 14px !important;
  }
  .stat-card .stat-num {
    font-size: 24px !important;
  }
  .stat-card .stat-label {
    font-size: 10px !important;
  }

  /* --- ADMIN TABS --- */
  .admin-tabs {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex-wrap: nowrap !important;
    gap: 2px !important;
    padding: 3px !important;
  }
  .admin-tabs::-webkit-scrollbar {
    display: none;
  }
  .admin-tab {
    font-size: 11px !important;
    padding: 8px 12px !important;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* --- ADMIN CARDS --- */
  .admin-card {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 12px !important;
  }
  .admin-card-img {
    width: 100% !important;
    height: 120px !important;
    border-radius: 8px !important;
  }
  .admin-card-title {
    font-size: 14px !important;
  }
  .admin-card-meta {
    font-size: 11px !important;
  }
  .admin-card-actions {
    flex-wrap: wrap;
  }

  /* --- USER ROWS --- */
  .user-row {
    flex-wrap: wrap;
    gap: 10px !important;
    padding: 12px !important;
  }

  /* --- INFO CARDS --- */
  .info-card {
    padding: 12px;
  }
  .info-card h4 {
    font-size: 13px;
  }
  .info-card p {
    font-size: 12px;
  }

  /* --- RIDE CARD --- */
  .ride-card-body {
    padding: 12px;
  }
  .ride-stats {
    gap: 8px;
  }
  .ride-stat .stat-val {
    font-size: 14px;
  }
  .ride-stat .stat-label {
    font-size: 10px;
  }

  /* --- TOAST --- */
  .toast {
    bottom: 24px;
    padding: 10px 20px;
    font-size: 12px;
    max-width: calc(100vw - 32px);
    text-align: center;
  }

  /* --- PROFILE DROPDOWN --- */
  .profile-dropdown {
    right: -8px !important;
    min-width: 200px !important;
  }

  /* --- PAYMENT BOX --- */
  .payment-box {
    padding: 16px;
  }
  .payment-box .amount {
    font-size: 24px;
  }
  .qr-placeholder {
    width: 140px;
    height: 140px;
  }
}

/* ========================================
   SMALL MOBILE (max-width: 380px)
   ======================================== */
@media (max-width: 380px) {
  .navbar-logo {
    font-size: 16px;
  }
  .nav-links a {
    font-size: 10px;
  }
  .hero h1 {
    font-size: 20px;
  }
  .photo-uploads {
    grid-template-columns: 1fr 1fr;
  }
  .stat-grid {
    grid-template-columns: 1fr !important;
  }
}
