/* ═══════════════════════════════════════════════════════
   URBANCE DASHBOARD DESIGN SYSTEM
   Premium $20M product feel — shared across all dashboard pages
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ────────────────────────────── */
:root {
  --dash-primary: #2F80ED;
  --dash-primary-light: #EAF2FF;
  --dash-primary-dark: #1A5BC4;
  --dash-accent: #06D6A0;
  --dash-black: #111111;
  --dash-text: #1E293B;
  --dash-text-secondary: #64748B;
  --dash-text-muted: #94A3B8;
  --dash-bg: #F5F7FA;
  --dash-white: #FFFFFF;
  --dash-border: #E2E8F0;
  --dash-border-light: #F1F5F9;
  --dash-success: #10B981;
  --dash-success-bg: #ECFDF5;
  --dash-warning: #F59E0B;
  --dash-warning-bg: #FFFBEB;
  --dash-error: #EF4444;
  --dash-error-bg: #FEF2F2;
  --dash-radius-sm: 8px;
  --dash-radius-md: 12px;
  --dash-radius-lg: 16px;
  --dash-radius-xl: 20px;
  --dash-radius-2xl: 24px;
  --dash-shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --dash-shadow-md: 0 2px 4px rgba(0,0,0,0.03), 0 4px 12px rgba(0,0,0,0.06);
  --dash-shadow-lg: 0 4px 8px rgba(0,0,0,0.03), 0 8px 24px rgba(0,0,0,0.08);
  --dash-shadow-xl: 0 8px 16px rgba(0,0,0,0.04), 0 16px 48px rgba(0,0,0,0.08);
  --dash-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --dash-sidebar-width: 260px;
}

/* ── Base Reset for Dashboard Pages ───────────────────── */
.dash-page {
  background: var(--dash-bg);
  min-height: 100vh;
  color: var(--dash-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Dashboard Shell Layout ───────────────────────────── */
.dash-shell {
  display: grid;
  grid-template-columns: var(--dash-sidebar-width) 1fr;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 24px 48px;
  gap: 32px;
  min-height: calc(100vh - 100px);
}

/* ── Sidebar ──────────────────────────────────────────── */
.dash-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-sidebar__user {
  background: var(--dash-white);
  border-radius: var(--dash-radius-xl);
  border: 1px solid var(--dash-border);
  box-shadow: var(--dash-shadow-sm);
  padding: 24px 20px;
  margin-bottom: 16px;
  text-align: center;
}

.dash-sidebar__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dash-primary), var(--dash-accent));
  color: var(--dash-white);
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(47, 128, 237, 0.25);
}

.dash-sidebar__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dash-black);
  margin: 0 0 2px;
}

.dash-sidebar__email {
  font-size: 13px;
  color: var(--dash-text-secondary);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dash-sidebar__nav {
  background: var(--dash-white);
  border-radius: var(--dash-radius-xl);
  border: 1px solid var(--dash-border);
  box-shadow: var(--dash-shadow-sm);
  padding: 8px;
  list-style: none;
  margin: 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--dash-radius-md);
  color: var(--dash-text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--dash-transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.dash-nav-item:hover {
  background: var(--dash-primary-light);
  color: var(--dash-primary);
}

.dash-nav-item.active {
  background: var(--dash-primary);
  color: var(--dash-white);
  box-shadow: 0 2px 8px rgba(47, 128, 237, 0.3);
}

.dash-nav-item.active .dash-nav-icon {
  color: var(--dash-white);
}

.dash-nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--dash-text-muted);
  transition: color var(--dash-transition);
}

.dash-nav-item:hover .dash-nav-icon {
  color: var(--dash-primary);
}

.dash-nav-item--danger {
  color: var(--dash-error);
}

.dash-nav-item--danger:hover {
  background: var(--dash-error-bg);
  color: var(--dash-error);
}

.dash-nav-item--danger .dash-nav-icon {
  color: var(--dash-error);
}

/* ── Mobile Tab Bar ───────────────────────────────────── */
.dash-tab-bar {
  display: none;
  position: sticky;
  top: calc(58px + env(safe-area-inset-top));
  z-index: 100;
  background: var(--dash-white);
  border-bottom: 1px solid var(--dash-border);
  box-shadow: var(--dash-shadow-sm);
}

.dash-tab-bar__inner {
  display: flex;
  gap: 4px;
  padding: 8px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dash-tab-bar__inner::-webkit-scrollbar {
  display: none;
}

.dash-tab-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--dash-radius-lg);
  background: none;
  border: none;
  color: var(--dash-text-secondary);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--dash-transition);
  text-decoration: none;
}

.dash-tab-btn:hover {
  background: var(--dash-primary-light);
  color: var(--dash-primary);
}

.dash-tab-btn.active {
  background: var(--dash-primary);
  color: var(--dash-white);
  box-shadow: 0 2px 8px rgba(47, 128, 237, 0.25);
}

/* ── Main Content Area ────────────────────────────────── */
.dash-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Page Header ──────────────────────────────────────── */
.dash-page-header {
  margin-bottom: 8px;
}

.dash-page-header__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dash-black);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dash-page-header__subtitle {
  font-size: 15px;
  color: var(--dash-text-secondary);
  margin: 0;
  font-weight: 500;
}

/* ── Card System ──────────────────────────────────────── */
.dash-card {
  background: var(--dash-white);
  border-radius: var(--dash-radius-xl);
  border: 1px solid var(--dash-border);
  box-shadow: var(--dash-shadow-sm);
  padding: 28px;
  transition: box-shadow var(--dash-transition);
}

.dash-card:hover {
  box-shadow: var(--dash-shadow-md);
}

.dash-card--flat {
  box-shadow: none;
}

.dash-card--flat:hover {
  box-shadow: none;
}

.dash-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dash-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dash-black);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-card__title-icon {
  width: 20px;
  height: 20px;
  color: var(--dash-primary);
}

.dash-card__badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--dash-primary-light);
  color: var(--dash-primary);
}

/* ── Section Divider ──────────────────────────────────── */
.dash-divider {
  height: 1px;
  background: var(--dash-border);
  margin: 24px 0;
  border: none;
}

/* ── Info Rows ────────────────────────────────────────── */
.dash-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--dash-border-light);
}

.dash-info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dash-info-row:first-child {
  padding-top: 0;
}

.dash-info-label {
  font-size: 14px;
  color: var(--dash-text-secondary);
  font-weight: 500;
}

.dash-info-value {
  font-size: 14px;
  color: var(--dash-black);
  font-weight: 600;
  text-align: right;
}

/* ── Form Components ──────────────────────────────────── */
.dash-form-group {
  margin-bottom: 20px;
}

.dash-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dash-text);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.dash-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--dash-border);
  border-radius: var(--dash-radius-md);
  font-size: 15px;
  color: var(--dash-text);
  background: var(--dash-white);
  transition: all var(--dash-transition);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.dash-form-input:focus {
  outline: none;
  border-color: var(--dash-primary);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.12);
}

.dash-form-input::placeholder {
  color: var(--dash-text-muted);
}

.dash-form-input:disabled {
  background: var(--dash-bg);
  color: var(--dash-text-muted);
  cursor: not-allowed;
}

.dash-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dash-form-hint {
  font-size: 12px;
  color: var(--dash-text-muted);
  margin-top: 4px;
}

select.dash-form-input {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394A3B8' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ── Toggle Switch (iOS Style) ────────────────────────── */
.dash-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  background: var(--dash-border);
  border-radius: 14px;
  cursor: pointer;
  transition: background var(--dash-transition);
  flex-shrink: 0;
  border: none;
  padding: 0;
}

.dash-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--dash-white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--dash-transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.dash-toggle.active {
  background: var(--dash-primary);
}

.dash-toggle.active::after {
  transform: translateX(20px);
}

/* ── Status Pills ─────────────────────────────────────── */
.dash-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.dash-pill--success {
  background: var(--dash-success-bg);
  color: #065F46;
}

.dash-pill--warning {
  background: var(--dash-warning-bg);
  color: #92400E;
}

.dash-pill--error {
  background: var(--dash-error-bg);
  color: #991B1B;
}

.dash-pill--info {
  background: var(--dash-primary-light);
  color: var(--dash-primary-dark);
}

.dash-pill--neutral {
  background: var(--dash-bg);
  color: var(--dash-text-secondary);
}

/* ── Stat Chips ───────────────────────────────────────── */
.dash-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dash-stat-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dash-white);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-lg);
  padding: 14px 20px;
  box-shadow: var(--dash-shadow-sm);
  flex: 1;
  min-width: 140px;
}

.dash-stat-chip__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--dash-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-chip__icon--blue {
  background: var(--dash-primary-light);
  color: var(--dash-primary);
}

.dash-stat-chip__icon--green {
  background: var(--dash-success-bg);
  color: var(--dash-success);
}

.dash-stat-chip__icon--yellow {
  background: var(--dash-warning-bg);
  color: var(--dash-warning);
}

.dash-stat-chip__icon--red {
  background: var(--dash-error-bg);
  color: var(--dash-error);
}

.dash-stat-chip__label {
  font-size: 12px;
  color: var(--dash-text-muted);
  font-weight: 500;
  margin: 0 0 2px;
}

.dash-stat-chip__value {
  font-size: 20px;
  font-weight: 800;
  color: var(--dash-black);
  margin: 0;
  line-height: 1;
}

/* ── Buttons ──────────────────────────────────────────── */
.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--dash-radius-md);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--dash-transition);
  border: none;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.dash-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.dash-btn--primary {
  background: var(--dash-primary);
  color: var(--dash-white);
  box-shadow: 0 2px 8px rgba(47, 128, 237, 0.25);
}

.dash-btn--primary:hover:not(:disabled) {
  background: var(--dash-primary-dark);
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.3);
  transform: translateY(-1px);
}

.dash-btn--secondary {
  background: var(--dash-bg);
  color: var(--dash-text);
  border: 1px solid var(--dash-border);
}

.dash-btn--secondary:hover:not(:disabled) {
  background: var(--dash-border-light);
  border-color: var(--dash-text-muted);
}

.dash-btn--ghost {
  background: none;
  color: var(--dash-primary);
  padding: 10px 12px;
}

.dash-btn--ghost:hover {
  background: var(--dash-primary-light);
}

.dash-btn--danger {
  background: var(--dash-error);
  color: var(--dash-white);
}

.dash-btn--danger:hover:not(:disabled) {
  background: #DC2626;
  transform: translateY(-1px);
}

.dash-btn--danger-ghost {
  background: none;
  color: var(--dash-error);
  border: 1px solid var(--dash-error);
}

.dash-btn--danger-ghost:hover {
  background: var(--dash-error-bg);
}

.dash-btn--sm {
  padding: 6px 14px;
  font-size: 13px;
}

.dash-btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--dash-radius-lg);
}

.dash-btn--full {
  width: 100%;
}

/* ── Setting Item ─────────────────────────────────────── */
.dash-setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--dash-border-light);
  gap: 16px;
}

.dash-setting-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.dash-setting-item:first-child {
  padding-top: 0;
}

.dash-setting-label {
  flex: 1;
  min-width: 0;
}

.dash-setting-label h3 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dash-text);
}

.dash-setting-label p {
  margin: 0;
  font-size: 13px;
  color: var(--dash-text-muted);
  line-height: 1.4;
}

/* ── Danger Zone ──────────────────────────────────────── */
.dash-danger-zone {
  background: var(--dash-error-bg);
  border: 1px solid #FECACA;
  border-radius: var(--dash-radius-lg);
  padding: 24px;
}

.dash-danger-zone__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dash-error);
}

.dash-danger-zone__desc {
  margin: 0 0 16px;
  font-size: 13px;
  color: #991B1B;
  line-height: 1.5;
}

/* ── Empty State ──────────────────────────────────────── */
.dash-empty {
  text-align: center;
  padding: 48px 24px;
}

.dash-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--dash-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dash-primary);
}

.dash-empty__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dash-text);
  margin: 0 0 8px;
}

.dash-empty__desc {
  font-size: 14px;
  color: var(--dash-text-muted);
  margin: 0 0 24px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ── Skeleton Loader ──────────────────────────────────── */
.dash-skeleton {
  background: linear-gradient(90deg, var(--dash-border-light) 25%, var(--dash-border) 50%, var(--dash-border-light) 75%);
  background-size: 200% 100%;
  animation: dash-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--dash-radius-sm);
}

.dash-skeleton--text {
  height: 14px;
  width: 60%;
  margin-bottom: 8px;
}

.dash-skeleton--title {
  height: 20px;
  width: 40%;
  margin-bottom: 12px;
}

.dash-skeleton--avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.dash-skeleton--card {
  height: 120px;
  border-radius: var(--dash-radius-lg);
}

@keyframes dash-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Toast Notifications ──────────────────────────────── */
.dash-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.dash-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--dash-radius-md);
  background: var(--dash-white);
  box-shadow: var(--dash-shadow-xl);
  border: 1px solid var(--dash-border);
  font-size: 14px;
  font-weight: 600;
  color: var(--dash-text);
  pointer-events: all;
  animation: dash-toast-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 360px;
}

.dash-toast--success {
  border-left: 3px solid var(--dash-success);
}

.dash-toast--error {
  border-left: 3px solid var(--dash-error);
}

.dash-toast--removing {
  animation: dash-toast-out 0.2s ease-in forwards;
}

@keyframes dash-toast-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes dash-toast-out {
  to { opacity: 0; transform: translateY(12px) scale(0.96); }
}

/* ── Quick Actions Row ────────────────────────────────── */
.dash-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dash-action-card {
  flex: 1;
  min-width: 160px;
  background: var(--dash-white);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-lg);
  padding: 20px;
  text-decoration: none;
  color: var(--dash-text);
  transition: all var(--dash-transition);
  box-shadow: var(--dash-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-action-card:hover {
  border-color: var(--dash-primary);
  box-shadow: var(--dash-shadow-md);
  transform: translateY(-2px);
}

.dash-action-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--dash-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dash-primary-light);
  color: var(--dash-primary);
}

.dash-action-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dash-black);
  margin: 0;
}

.dash-action-card__desc {
  font-size: 13px;
  color: var(--dash-text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ── Booking Card ─────────────────────────────────────── */
.dash-booking-card {
  background: var(--dash-white);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-xl);
  padding: 24px;
  box-shadow: var(--dash-shadow-sm);
  transition: all var(--dash-transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.dash-booking-card:hover {
  box-shadow: var(--dash-shadow-md);
  border-color: rgba(47, 128, 237, 0.2);
}

.dash-booking-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--dash-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--dash-primary-light);
  color: var(--dash-primary);
}

.dash-booking-card__body {
  flex: 1;
  min-width: 0;
}

.dash-booking-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.dash-booking-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dash-black);
  margin: 0;
}

.dash-booking-card__id {
  font-size: 12px;
  color: var(--dash-text-muted);
  font-weight: 500;
  margin: 2px 0 0;
}

.dash-booking-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0;
}

.dash-booking-card__detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dash-text-secondary);
  font-weight: 500;
}

.dash-booking-card__detail svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--dash-text-muted);
}

.dash-booking-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dash-border-light);
}

.dash-booking-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--dash-black);
}

.dash-booking-card__actions {
  display: flex;
  gap: 8px;
}

/* ── Filters Bar ──────────────────────────────────────── */
.dash-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.dash-filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--dash-border);
  background: var(--dash-white);
  color: var(--dash-text-secondary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--dash-transition);
  white-space: nowrap;
}

.dash-filter-btn:hover {
  border-color: var(--dash-primary);
  color: var(--dash-primary);
}

.dash-filter-btn.active {
  background: var(--dash-primary);
  color: var(--dash-white);
  border-color: var(--dash-primary);
}

.dash-search-input {
  padding: 8px 16px 8px 40px;
  border: 1px solid var(--dash-border);
  border-radius: 999px;
  font-size: 13px;
  color: var(--dash-text);
  background: var(--dash-white) url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E") no-repeat 14px center;
  transition: all var(--dash-transition);
  min-width: 200px;
  box-sizing: border-box;
}

.dash-search-input:focus {
  outline: none;
  border-color: var(--dash-primary);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.12);
}

/* ── Verified Badge ───────────────────────────────────── */
.dash-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dash-success);
}

.dash-verified svg {
  width: 14px;
  height: 14px;
}

/* ── Profile Header Card ──────────────────────────────── */
.dash-profile-hero {
  background: var(--dash-white);
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-2xl);
  box-shadow: var(--dash-shadow-md);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.dash-profile-hero__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dash-primary), var(--dash-accent));
  color: var(--dash-white);
  font-weight: 800;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.25);
}

.dash-profile-hero__info {
  flex: 1;
  min-width: 0;
}

.dash-profile-hero__name {
  font-size: 24px;
  font-weight: 800;
  color: var(--dash-black);
  margin: 0 0 4px;
  line-height: 1.2;
}

.dash-profile-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.dash-profile-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--dash-text-secondary);
  font-weight: 500;
}

.dash-profile-hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--dash-text-muted);
}

.dash-profile-hero__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Section Title ────────────────────────────────────── */
.dash-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dash-text-muted);
  margin: 0 0 16px;
}

/* ── Mobile Save Bar ──────────────────────────────────── */
.dash-save-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dash-white);
  border-top: 1px solid var(--dash-border);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  padding: 12px 16px;
  z-index: 100;
}

.dash-save-bar.visible {
  display: flex;
  gap: 12px;
}

.dash-save-bar .dash-btn {
  flex: 1;
}

/* ── Grid Layouts ─────────────────────────────────────── */
.dash-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Booking Details Modal ────────────────────────────── */
.dash-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 16px;
}

.dash-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.dash-modal {
  background: var(--dash-white);
  border-radius: var(--dash-radius-xl);
  box-shadow: var(--dash-shadow-xl);
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.25s ease;
}

.dash-modal-backdrop.open .dash-modal {
  transform: translateY(0) scale(1);
}

.dash-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.dash-modal__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dash-black);
  margin: 0;
}

.dash-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--dash-bg);
  color: var(--dash-text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dash-transition);
}

.dash-modal__close:hover {
  background: var(--dash-border);
  color: var(--dash-text);
}

.dash-modal__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dash-modal__section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dash-text-muted);
  margin: 0 0 8px;
}

.dash-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.dash-modal__label {
  font-size: 14px;
  color: var(--dash-text-secondary);
  flex-shrink: 0;
}

.dash-modal__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dash-text);
  text-align: right;
}

.dash-modal__divider {
  border: none;
  border-top: 1px dashed var(--dash-border);
  margin: 0;
}

.dash-modal__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--dash-bg);
  border-radius: var(--dash-radius-md);
}

.dash-modal__total-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dash-black);
}

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

.dash-modal__payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.dash-modal__payment-badge--paid {
  background: var(--dash-success-bg);
  color: var(--dash-success);
}

.dash-modal__payment-badge--unpaid {
  background: var(--dash-warning-bg);
  color: var(--dash-warning);
}

.dash-modal__payment-badge--failed {
  background: var(--dash-error-bg);
  color: var(--dash-error);
}

.dash-modal__actions {
  display: flex;
  gap: 12px;
  padding: 0 24px 24px;
}

.dash-modal__actions .dash-btn {
  flex: 1;
}

@media (max-width: 768px) {
  .dash-modal {
    max-width: 100%;
    max-height: calc(100vh - 32px);
    border-radius: var(--dash-radius-lg);
  }

  .dash-modal__header {
    padding: 16px 20px 0;
  }

  .dash-modal__body {
    padding: 16px 20px 20px;
  }

  .dash-modal__actions {
    flex-direction: column;
    padding: 0 20px 20px;
  }
}

/* ── Collapsible Sections (inside modals) ─────────────── */
.dash-collapse {
  border: 1px solid var(--dash-border);
  border-radius: var(--dash-radius-md);
  overflow: hidden;
}

.dash-collapse__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: var(--dash-bg);
  border: none;
  cursor: pointer;
  transition: background var(--dash-transition);
}

.dash-collapse__trigger:hover {
  background: var(--dash-border-light);
}

.dash-collapse__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dash-text);
}

.dash-collapse__chevron {
  flex-shrink: 0;
  color: var(--dash-text-muted);
  transition: transform 0.25s ease;
}

.dash-collapse__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .dash-shell {
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 96px 20px 40px;
  }

  .dash-page-header__title {
    font-size: 28px;
  }

  .dash-profile-hero {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .dash-profile-hero__meta {
    justify-content: center;
  }

  .dash-profile-hero__actions {
    justify-content: center;
  }

  .dash-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .dash-shell {
    grid-template-columns: 1fr;
    padding: 0 0 80px;
    gap: 0;
    padding-top: calc(58px + env(safe-area-inset-top));
  }

  .dash-sidebar {
    display: none;
  }

  .dash-tab-bar {
    display: block;
    top: calc(58px + env(safe-area-inset-top));
  }

  .dash-main {
    padding: 20px 16px;
    gap: 16px;
  }

  .dash-page-header__title {
    font-size: 24px;
  }

  .dash-page-header__subtitle {
    font-size: 14px;
  }

  .dash-card {
    padding: 20px;
    border-radius: var(--dash-radius-lg);
  }

  .dash-profile-hero {
    padding: 24px 20px;
    border-radius: var(--dash-radius-lg);
  }

  .dash-profile-hero__avatar {
    width: 64px;
    height: 64px;
    font-size: 22px;
  }

  .dash-profile-hero__name {
    font-size: 20px;
  }

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

  .dash-stats {
    gap: 8px;
  }

  .dash-stat-chip {
    padding: 12px 16px;
    min-width: 0;
    flex-basis: calc(50% - 4px);
  }

  .dash-stat-chip__value {
    font-size: 18px;
  }

  .dash-actions-row {
    gap: 8px;
  }

  .dash-action-card {
    min-width: 0;
    flex-basis: calc(50% - 4px);
    padding: 16px;
  }

  .dash-booking-card {
    flex-direction: column;
    padding: 20px;
    border-radius: var(--dash-radius-lg);
  }

  .dash-booking-card__icon {
    width: 40px;
    height: 40px;
  }

  .dash-booking-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .dash-booking-card__actions {
    flex-direction: column;
  }

  .dash-booking-card__actions .dash-btn {
    width: 100%;
  }

  .dash-filters {
    gap: 8px;
  }

  .dash-search-input {
    width: 100%;
    min-width: 0;
  }

  .dash-save-bar {
    display: none;
  }

  .dash-save-bar.visible {
    display: flex;
  }

  .dash-toast-container {
    bottom: 80px;
    right: 16px;
    left: 16px;
  }

  .dash-toast {
    max-width: 100%;
  }

  .dash-setting-item {
    padding: 14px 0;
  }

  .dash-danger-zone {
    padding: 20px;
  }

  .dash-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .dash-info-value {
    text-align: left;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .dash-stat-chip {
    flex-basis: 100%;
  }

  .dash-action-card {
    flex-basis: 100%;
  }

  .dash-profile-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .dash-profile-hero__actions .dash-btn {
    width: 100%;
  }
}
