/* css/app.css - Cieletoile Salon Management */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
  --gold: #C4A882;
  --gold-light: #D4BC9A;
  --gold-dark: #9E7F5A;
  --cream: #F5EEE4;
  --cream-dark: #E8DDD0;
  --bg: #0E0B08;
  --bg2: #161210;
  --bg3: #1E1A16;
  --bg4: #26211B;
  --surface: #1E1A16;
  --surface2: #26211B;
  --border: rgba(196, 168, 130, 0.2);
  --border-strong: rgba(196, 168, 130, 0.4);
  --text: #F0E8DC;
  --text-muted: #9E9188;
  --text-faint: #6B6058;
  --bronze: #CD7F32;
  --silver: #A8A9AD;
  --silver-rank: #8CA0C4;
  --gold-rank: #FFD700;
  --platinum: #C8D8E8;
  --danger: #C0392B;
  --success: #27AE60;
  --warning: #E67E22;
  --info: #2980B9;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ====== TYPOGRAPHY ====== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
h1 { font-size: 2rem; letter-spacing: 0.05em; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

/* ====== APP LAYOUT ====== */
#app { display: flex; flex-direction: column; min-height: 100vh; }
#app.staff-mode { --accent: var(--gold); }
#app.customer-mode { --accent: var(--gold-light); }

/* ====== LOGIN SCREENS ====== */
.login-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse at 30% 20%, rgba(196,168,130,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(196,168,130,0.05) 0%, transparent 60%),
              var(--bg);
}

.login-logo {
  text-align: center;
  margin-bottom: 2.5rem;
}

.login-logo .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
}

.login-logo .tagline {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.login-card {
  width: 100%;
  max-width: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.login-card h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.mode-switch {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg3);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
}

.mode-btn {
  flex: 1;
  padding: 0.6rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: var(--transition);
  font-family: 'Noto Sans JP', sans-serif;
}

.mode-btn.active {
  background: var(--gold);
  color: var(--bg);
  font-weight: 500;
}

/* ====== FORMS ====== */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; letter-spacing: 0.05em; }

.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Noto Sans JP', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,168,130,0.15);
}

.form-control::placeholder { color: var(--text-faint); }

select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }

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

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  font-weight: 500;
  width: 100%;
  padding: 0.8rem;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-danger {
  background: var(--danger);
  color: white;
}
.btn-danger:hover { filter: brightness(1.1); }

.btn-success {
  background: var(--success);
  color: white;
}

.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-icon { padding: 0.5rem; width: 36px; height: 36px; }

/* ====== NAV ====== */
.app-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0 1rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.header-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 300;
}

.header-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bg);
  flex-shrink: 0;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex;
  padding: 0;
  z-index: 100;
  padding-bottom: env(safe-area-inset-bottom);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.25rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
  color: var(--text-faint);
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  min-height: 56px;
}

.nav-item.active {
  color: var(--gold);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gold);
  border-radius: 0 0 2px 2px;
}

.nav-icon { font-size: 1.3rem; margin-bottom: 0.2rem; }
.nav-label { font-size: 0.65rem; letter-spacing: 0.05em; }

.nav-badge {
  position: absolute;
  top: 0.4rem;
  right: calc(50% - 16px);
  background: var(--danger);
  color: white;
  font-size: 0.6rem;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ====== MAIN CONTENT ====== */
.main-content {
  flex: 1;
  padding: 1rem;
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.page { display: none; }
.page.active { display: block; animation: fadeIn 0.2s ease; }

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

/* ====== CARDS ====== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.card:hover { border-color: var(--border-strong); }

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1rem;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
}

/* ====== DASHBOARD ====== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ====== CALENDAR ====== */
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-nav-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.calendar-nav-btn:hover { border-color: var(--gold); color: var(--gold); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day-header {
  text-align: center;
  padding: 0.4rem 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.2rem;
  transition: var(--transition);
  position: relative;
}

.calendar-day:hover { background: var(--surface2); }
.calendar-day.today { background: rgba(196,168,130,0.15); color: var(--gold); font-weight: 500; }
.calendar-day.selected { background: var(--gold); color: var(--bg); font-weight: 500; }
.calendar-day.other-month { color: var(--text-faint); }
.calendar-day.has-reservation::after {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.calendar-day.selected.has-reservation::after { background: var(--bg); }

/* ====== RESERVATION LIST ====== */
.reservation-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.reservation-item:hover { border-color: var(--border-strong); transform: translateX(2px); }

.reservation-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  min-width: 48px;
  text-align: center;
}

.reservation-info { flex: 1; min-width: 0; }
.reservation-name { font-weight: 500; font-size: 0.9rem; }
.reservation-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ====== STATUS BADGES ====== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.status-pending { background: rgba(230,126,34,0.15); color: var(--warning); border: 1px solid rgba(230,126,34,0.3); }
.status-confirmed { background: rgba(39,174,96,0.15); color: var(--success); border: 1px solid rgba(39,174,96,0.3); }
.status-completed { background: rgba(41,128,185,0.15); color: var(--info); border: 1px solid rgba(41,128,185,0.3); }
.status-cancelled { background: rgba(192,57,43,0.15); color: var(--danger); border: 1px solid rgba(192,57,43,0.3); }
.status-noshow { background: rgba(100,100,100,0.15); color: var(--text-muted); border: 1px solid rgba(100,100,100,0.3); }

/* ====== RANK BADGES ====== */
.rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.rank-bronze { background: rgba(205,127,50,0.15); color: var(--bronze); border: 1px solid rgba(205,127,50,0.3); }
.rank-silver { background: rgba(140,160,196,0.15); color: var(--silver-rank); border: 1px solid rgba(140,160,196,0.3); }
.rank-gold { background: rgba(255,215,0,0.15); color: var(--gold-rank); border: 1px solid rgba(255,215,0,0.3); }
.rank-platinum { background: rgba(200,216,232,0.15); color: var(--platinum); border: 1px solid rgba(200,216,232,0.3); }

/* ====== CUSTOMER LIST ====== */
.customer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.customer-item:hover { border-color: var(--border-strong); }

.customer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--bg);
  font-weight: 500;
  flex-shrink: 0;
}

.customer-info { flex: 1; min-width: 0; }
.customer-name { font-weight: 500; font-size: 0.9rem; }
.customer-meta { font-size: 0.75rem; color: var(--text-muted); }
.customer-points { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); }

/* ====== TABS ====== */
.tabs {
  display: flex;
  gap: 0;
  background: var(--bg3);
  border-radius: var(--radius-sm);
  padding: 0.25rem;
  margin-bottom: 1rem;
  overflow-x: auto;
}

.tab-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.82rem;
  font-family: 'Noto Sans JP', sans-serif;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn.active {
  background: var(--gold);
  color: var(--bg);
  font-weight: 500;
}

/* ====== POINTS ====== */
.points-display {
  text-align: center;
  padding: 1.5rem;
  background: radial-gradient(ellipse at center, rgba(196,168,130,0.08) 0%, transparent 70%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.points-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.points-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.points-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.points-history-item:last-child { border-bottom: none; }

.points-change {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}

.points-earn { color: var(--success); }
.points-use { color: var(--danger); }

/* ====== RANK PROGRESS ====== */
.rank-progress {
  margin-top: 1rem;
}

.progress-bar-wrap {
  background: var(--bg3);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.progress-bar {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 0.6s ease;
}

.rank-thresholds {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-faint);
}

/* ====== TREATMENT FORM ====== */
.treatment-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

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

.amount-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--gold);
}

/* ====== SEARCH ====== */
.search-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  font-size: 1rem;
  pointer-events: none;
}

.search-input {
  padding-left: 2.5rem;
}

/* ====== MODAL ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}

.modal-overlay.show { opacity: 1; }

.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius) var(--radius) 0 0;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.modal-overlay.show .modal { transform: translateY(0); }

@media (min-width: 600px) {
  .modal-overlay { align-items: center; }
  .modal {
    border-radius: var(--radius);
    max-width: 560px;
    margin: auto;
  }
  .modal.modal-sm { max-width: 360px; }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.25rem 0;
}

.modal-header h3 { color: var(--gold-light); }

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem;
}

.modal-body { padding: 1.25rem; }

/* ====== TOAST ====== */
.toast {
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  font-size: 0.875rem;
  z-index: 300;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-success { border-color: var(--success); color: var(--success); }
.toast-error { border-color: var(--danger); color: var(--danger); }

/* ====== LOADING ====== */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  color: var(--text-muted);
  flex-direction: column;
  gap: 1rem;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.empty-icon { font-size: 3rem; margin-bottom: 0.75rem; opacity: 0.4; }
.empty-text { font-size: 0.9rem; }

/* ====== DIVIDER ====== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

/* ====== PAGE HEADER ====== */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

/* ====== ACTION BUTTONS WRAP ====== */
.action-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

/* ====== INFO ROWS ====== */
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.info-row:last-child { border-bottom: none; }
.info-label { color: var(--text-muted); }

/* ====== FAB ====== */
.fab {
  position: fixed;
  bottom: calc(72px + 1rem + env(safe-area-inset-bottom));
  right: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--bg);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196,168,130,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 50;
}

.fab:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(196,168,130,0.5); }

/* ====== RESPONSIVE ====== */
@media (min-width: 600px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .main-content { padding: 1.5rem; }
}

@media (min-width: 800px) {
  .bottom-nav { display: none; }
  
  #app { flex-direction: row; }
  
  .sidebar {
    width: 220px;
    min-height: 100vh;
    background: var(--bg2);
    border-right: 1px solid var(--border);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
  }
  
  .sidebar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
  }
  
  .sidebar-nav { flex: 1; }
  
  .sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background: transparent;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    text-align: left;
    border-left: 3px solid transparent;
  }
  
  .sidebar-item:hover { color: var(--text); background: var(--surface); }
  
  .sidebar-item.active {
    color: var(--gold);
    background: rgba(196,168,130,0.08);
    border-left-color: var(--gold);
  }
  
  .sidebar-icon { font-size: 1.1rem; width: 20px; text-align: center; }
  
  .main-content {
    flex: 1;
    max-width: none;
    padding: 2rem;
    padding-bottom: 2rem;
  }
  
  .app-header { display: none; }
}

/* ====== INSTALL BANNER ====== */
.install-banner {
  background: linear-gradient(135deg, rgba(196,168,130,0.1), rgba(196,168,130,0.05));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

/* ====== SERVICE TYPE TAGS ====== */
.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}

.service-hair { background: rgba(139,93,100,0.2); color: #C4868E; }
.service-lash { background: rgba(100,120,160,0.2); color: #8CA0C4; }
.service-nail { background: rgba(120,160,120,0.2); color: #8EC48E; }

/* scrollbar */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }
