:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --accent: #0ea5e9;
  --bg: #f7fafc;
  --card: #ffffff;
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --border: #e5e7eb;
  --border-2: #d1d5db;
  --danger: #dc2626;
  --warning: #d97706;
  --success: #059669;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .04);
  --shadow: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --shadow-lg: 0 10px 30px rgba(15, 23, 42, .08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Nunito', -apple-system, sans-serif;
  background: #fafbfc;
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; font-size: 14px; color: var(--text); }
a { color: var(--primary); text-decoration: none; }

/* ====== TOP NAV ====== */
.topbar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar .brand-link {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 17px; color: var(--text);
}
.topbar .brand-link .drop {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.topbar .brand-link .sub {
  color: var(--muted); font-weight: 600; font-size: 15px;
}
.topnav { display: flex; gap: 28px; }
.topnav a {
  color: var(--text-2);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.topnav a:hover { color: var(--primary); }
.topnav a.active { color: var(--primary); }

/* ====== AUTH / FORM PAGE ====== */
.page-wrap {
  min-height: calc(100vh - 60px);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.auth-card {
  background: white;
  border-radius: var(--radius);
  padding: 38px 44px;
  width: 100%;
  max-width: 640px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.auth-card h1 {
  font-size: 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.auth-card h1 .drop { color: var(--primary); }
.auth-card-sm { max-width: 440px; }

/* ====== FORM ====== */
.field { margin-bottom: 18px; }
.field > label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}
.field > label .muted { font-weight: 500; color: var(--muted); }
.field .help {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  margin-top: -2px;
}
.field .help-after {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}
.field .err {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color .15s, box-shadow .15s;
}
.field { min-width: 0; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}
.field textarea { resize: vertical; min-height: 96px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 110px; gap: 14px; }
.grid-3-eq { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-3-eq { grid-template-columns: 1fr; }
}

/* ====== PHOTO PICKER ====== */
.photo-picker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
}
.photo-preview {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: #eef2f7;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ====== BUTTONS ====== */
.btn {
  background: var(--primary);
  color: white;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: background .15s, transform .1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.btn:hover { background: var(--primary-dark); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-outline {
  background: white;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: white; }
.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { background: var(--bg); }
.btn-danger { background: var(--danger); }
.btn-danger:hover { background: #b91c1c; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-block { width: 100%; }

/* ====== CITY CHIPS ====== */
.city-search {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.city-search input { flex: 1; }
.city-counter {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center;
  white-space: nowrap;
}
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.chip-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border-2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  transition: all .15s;
  user-select: none;
}
.chip-toggle:hover { border-color: var(--primary); color: var(--primary); }
.chip-toggle.active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* ====== SCHEDULE BOX (cadastro horário) ====== */
.schedule-box {
  background: #e8f7f3;
  border: 1px solid #b6e5d9;
  border-radius: var(--radius);
  padding: 18px 18px 8px;
  margin-bottom: 18px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
@media (max-width: 600px) {
  .schedule-box { padding: 16px 14px 4px; }
}
.schedule-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.schedule-box .help { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.schedule-box .field > label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #15a684;
}
.schedule-box .grid-2 { gap: 16px; }

.lunch-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 16px;
  cursor: pointer;
  user-select: none;
  min-width: 0;
}
.lunch-toggle .lbl { min-width: 0; flex: 1; }
.lunch-toggle .check {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: white;
  border: 2px solid #b6e5d9;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: transparent;
  transition: all .15s;
  flex-shrink: 0;
}
.lunch-toggle.active .check {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}
.lunch-toggle .lbl {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
  line-height: 1.25;
}

.preview-banner {
  background: #2bc4a3;
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  margin-top: 6px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
  word-break: break-word;
}
.preview-banner .pb-label {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: .9;
}

/* ====== WHATSAPP FAB ====== */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
  cursor: pointer;
  color: white;
  font-size: 26px;
  z-index: 100;
}

/* ====== MOBILE APP LAYOUT (topbar + content) ====== */
.app-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.app-topbar .brand-link {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 17px; color: var(--text);
}
.app-topbar .brand-link .drop { color: var(--primary); display: inline-flex; }
.app-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.app-nav a {
  color: var(--text-2);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 0;
}
.app-nav a:hover { color: var(--primary); }
.app-nav a.active { color: var(--primary); }
.menu-btn {
  display: none;
  background: transparent;
  font-size: 24px;
  color: var(--text);
  padding: 4px 8px;
  cursor: pointer;
}
.app-shell { background: #fafbfc; min-height: 100vh; }
.app-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 22px 20px 80px;
}
.app-content h2 { font-size: 22px; margin-bottom: 4px; }
.app-content .page-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

/* ====== Dashboard sections ====== */
.section {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.section h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.section .section-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

/* ====== Step rows (primeiros passos) ====== */
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.step-row:last-child { margin-bottom: 0; }
.step-bullet {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.step-bullet.completed {
  background: #10b981;
  color: white;
}
.step-content { flex: 1; min-width: 0; }
.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--text);
}
.step-content p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.45;
}
.step-content .btn { padding: 9px 18px; font-size: 14px; }

/* ====== CTA cards ====== */
.cta-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.cta-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cta-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }

/* ====== Tutorial banner / step nav ====== */
.tutorial-banner {
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: white;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tutorial-banner .step-pill {
  display: inline-block;
  background: rgba(255,255,255,.22);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  width: fit-content;
}
.tutorial-banner h3 { color: white; font-size: 17px; font-weight: 700; margin: 0; }
.tutorial-banner p { color: rgba(255,255,255,.92); font-size: 14px; margin: 0; }
.tutorial-banner.success { background: linear-gradient(135deg, #10b981, #059669); }

.step-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.step-nav .btn { flex: 1; min-width: 0; }
.step-nav .btn-back { flex: 0 0 auto; min-width: 140px; }
@media (max-width: 600px) {
  .step-nav { flex-direction: column-reverse; }
  .step-nav .btn { width: 100%; }
}

/* ====== Booking item (mobile-friendly) ====== */
.booking-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .15s;
}
.booking-item:hover { border-color: var(--border-2); box-shadow: var(--shadow); }
.booking-item .bi-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
}
.booking-item .bi-title { font-weight: 700; font-size: 15px; }
.booking-item .bi-meta { color: var(--muted); font-size: 13px; margin-top: 3px; }
.booking-item .bi-price { color: var(--primary); font-weight: 800; font-size: 15px; white-space: nowrap; }

/* ====== APP LAYOUT (logged in - sidebar legacy) ====== */
.app { display: flex; min-height: 100vh; background: #fafbfc; }
.sidebar {
  width: 230px;
  background: white;
  padding: 22px 14px;
  border-right: 1px solid var(--border);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.brand {
  font-size: 16px; font-weight: 800;
  color: var(--primary);
  margin-bottom: 22px;
  padding: 0 8px;
  display: flex; align-items: center; gap: 8px;
}
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  color: var(--text-2);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 3px;
  cursor: pointer;
  transition: all .15s;
}
.nav-item:hover { background: var(--bg); color: var(--text); }
.nav-item.active { background: var(--primary-light); color: var(--primary-dark); }
.main { flex: 1; padding: 28px 36px; max-width: 1200px; }
.main h2 { font-size: 22px; margin-bottom: 4px; }
.main .page-sub { color: var(--muted); margin-bottom: 22px; font-size: 14px; }

/* ====== CARDS ====== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.card-hover { cursor: pointer; transition: all .15s; }
.card-hover:hover { transform: translateY(-1px); box-shadow: var(--shadow); border-color: var(--border-2); }

/* ====== STATS ====== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-bottom: 22px; }
.stat-card { background: white; padding: 18px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.stat-card .label { color: var(--muted); font-size: 13px; font-weight: 600; }
.stat-card .value { font-size: 26px; font-weight: 800; margin-top: 4px; color: var(--primary); }

/* ====== TABLE ====== */
.table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.table th, .table td { padding: 12px 14px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.table th { background: #f8fafc; font-weight: 700; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover { background: #fafbfc; }

/* ====== BADGES ====== */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.badge-PENDENTE_PAGAMENTO { background: #fef3c7; color: #92400e; }
.badge-AGUARDANDO_CONFIRMACAO { background: #dbeafe; color: #1e40af; }
.badge-CONFIRMADO { background: #d1fae5; color: #065f46; }
.badge-CONCLUIDO { background: #e0e7ff; color: #3730a3; }
.badge-CANCELADO { background: #fee2e2; color: #991b1b; }

/* ====== CHIP (filter) ====== */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border-2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin: 3px;
  color: var(--text-2);
  transition: all .15s;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); color: white; border-color: var(--primary); }
.chip-x { font-weight: 800; opacity: .7; }

/* ====== STEPS ====== */
.steps { display: flex; gap: 8px; margin-bottom: 24px; }
.step {
  flex: 1; padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: white; color: var(--muted);
  border: 1px solid var(--border);
  font-weight: 600; font-size: 13px; text-align: center;
}
.step.active { background: var(--primary); color: white; border-color: var(--primary); }
.step.done { background: var(--primary-light); color: var(--primary-dark); border-color: transparent; }

/* ====== STARS ====== */
.stars { display: inline-flex; gap: 3px; }
.star { font-size: 22px; color: #d1d5db; cursor: pointer; }
.star.filled { color: #f59e0b; }

/* ====== PIX BOX ====== */
.pix-box {
  background: var(--primary-light);
  border: 1.5px dashed var(--primary);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.pix-key {
  font-family: 'SF Mono', 'Courier New', monospace;
  font-size: 15px;
  font-weight: 700;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 12px 0;
  word-break: break-all;
  border: 1px solid var(--border);
}

/* ====== AVAIL GRID ====== */
.avail-grid { display: grid; grid-template-columns: 80px repeat(7, 1fr); gap: 6px; }
.avail-cell {
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all .15s;
  border: 1.5px solid transparent;
}
.avail-cell.header { background: transparent; cursor: default; color: var(--muted); }
.avail-cell.label { background: transparent; cursor: default; color: var(--muted); text-align: right; padding-right: 10px; }
.avail-cell.slot { background: #f1f5f9; color: transparent; }
.avail-cell.slot.active { background: var(--primary); color: white; }
.avail-cell.slot:hover:not(.active) { background: var(--primary-light); }

/* ====== Legal/Terms content (modais e páginas) ====== */
.modal h2 { font-size: 19px; font-weight: 800; color: var(--text); }
.modal h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 18px 0 8px; }
.modal p { font-size: 14px; color: var(--text-2); margin: 0 0 10px; }
.modal ul { margin: 4px 0 14px 22px; }
.modal ul li { font-size: 14px; color: var(--text-2); margin-bottom: 6px; }
.modal a { color: var(--primary); text-decoration: underline; }
.modal #terms-scroll { scroll-behavior: smooth; }

/* ====== MODAL ====== */
.modal-bg {
  position: fixed; inset: 0; background: rgba(15, 23, 42, .5);
  display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.modal {
  background: white; border-radius: var(--radius); padding: 26px;
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.modal h3 { margin-bottom: 14px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 18px; }

/* ====== MISC ====== */
.empty {
  text-align: center; padding: 40px 20px; color: var(--muted);
  background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.toast {
  position: fixed; top: 20px; right: 20px; z-index: 200;
  background: var(--text); color: white; padding: 14px 22px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg);
  font-weight: 600; font-size: 14px;
  animation: slideIn .25s;
}
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-10 { gap: 10px; }
.gap-16 { gap: 16px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 13px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ====== PRO DETAIL CARD (search step 3) ====== */
.pro-detail-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  cursor: pointer;
  transition: all .15s;
}
.pro-detail-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow);
}
.pro-detail-card.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}
.pro-detail-head { display: flex; gap: 14px; align-items: flex-start; }
.pro-detail-head .pro-photo {
  width: 56px; height: 56px;
  border-radius: 50%; object-fit: cover;
  background: #eef2f7;
  flex-shrink: 0;
}
.pro-detail-card .pro-name { font-weight: 700; font-size: 16px; color: var(--text); }

.plans-info {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.plans-info li {
  position: relative;
  padding: 4px 0 4px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.plans-info li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-weight: 800;
}

/* ====== PROFESSIONAL CARD (search) ====== */
.pro-card {
  display: flex; gap: 14px; padding: 16px; background: white;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  margin-bottom: 12px; cursor: pointer; transition: all .15s;
}
.pro-card:hover { border-color: var(--border-2); }
.pro-card.selected { border-color: var(--primary); background: var(--primary-light); }
.pro-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; background: #eef2f7; }
.pro-info { flex: 1; }
.pro-name { font-weight: 700; font-size: 15px; }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .topbar { padding: 12px 18px; }
  .topnav { gap: 16px; }
  .auth-card { padding: 26px 20px; }
  .app { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: static; padding: 12px; display: flex; gap: 6px; overflow-x: auto; }
  .brand { display: none; }
  .nav-item { white-space: nowrap; margin-bottom: 0; padding: 8px 12px; font-size: 13px; }
  .main { padding: 18px; }
  .avail-grid { font-size: 11px; }
  .avail-cell { padding: 8px 2px; }

  /* App topbar mobile (drawer) */
  .menu-btn { display: inline-flex; }
  .app-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 0 24px;
    box-shadow: -8px 0 24px rgba(15, 23, 42, .12);
    transform: translateX(100%);
    transition: transform .2s;
    z-index: 60;
  }
  .app-nav.open { transform: translateX(0); }
  .app-nav a {
    padding: 14px 22px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }
  .app-nav-bg {
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, .35);
    z-index: 55;
    display: none;
  }
  .app-nav-bg.open { display: block; }
  .app-content { padding: 16px 14px 80px; }
  .section, .cta-card { padding: 18px; }
  .topbar .brand-link .sub { display: none; }
  .topnav { gap: 14px; }
  .topnav a { font-size: 13px; }
}
