/* ── MARDON Barbershop · Global Styles (Bento Design) ── */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --bg: #0d0f14;
  --bg-2: #161922;
  --bg-3: #1f2331;
  --line: rgba(255,255,255,.06);
  --line-2: rgba(255,255,255,.12);
  --text: #f5f4f0;
  --muted: #8d92a3;
  --muted-2: #525667;
  --mint: #5dd4b0;
  --mint-dark: #2da484;
  --peach: #ff9070;
  --peach-dark: #e76343;
  --lilac: #a890ff;
  --lilac-dark: #7560d4;
  --sun: #ffc266;
  --sun-dark: #e8a13c;
  --rose: #ff80a1;
  --sky: #7ad0ff;
  --danger: #ff5c6a;
  --success: #5dd4b0;
}

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

body {
  font-family: 'Geist', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
.serif { font-family: 'Instrument Serif', serif; font-weight: 400; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── HEADER ── */
header {
  padding: 22px 0;
  position: sticky; top: 0; z-index: 10;
  background: rgba(13,15,20,.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 36px; }
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; font-size: 20px; letter-spacing: .08em; }
.brand-mark {
  width: 44px; height: 44px;
  background: transparent !important;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
nav.links { display: flex; gap: 4px; margin-left: 24px; }
nav.links a {
  font-size: 14px; color: var(--muted); font-weight: 500;
  padding: 8px 14px; border-radius: 10px; transition: all .15s;
}
nav.links a:hover, nav.links a.active { background: var(--bg-2); color: var(--text); }
.nav-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.btn-out {
  padding: 10px 20px; border: 1px solid var(--line-2); color: var(--text);
  font-size: 13px; font-weight: 500; background: transparent; cursor: pointer;
  border-radius: 99px; transition: all .15s; font-family: inherit;
}
.btn-out:hover { background: var(--bg-2); }
.btn-fill {
  padding: 10px 22px; background: var(--text); color: var(--bg);
  font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  border-radius: 99px; transition: all .15s; font-family: inherit; display: inline-flex; align-items: center; gap: 8px;
}
.btn-fill:hover { background: rgba(245,244,240,.85); }

/* ── FLASH MESSAGES ── */
.flash-list { list-style: none; padding: 0 0 16px; }
.flash-msg {
  padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 500;
  margin-bottom: 8px;
}
.flash-msg.success { background: rgba(93,212,176,.15); border: 1px solid rgba(93,212,176,.3); color: var(--mint); }
.flash-msg.error   { background: rgba(255,92,106,.15);  border: 1px solid rgba(255,92,106,.3);  color: var(--danger); }
.flash-msg.info    { background: rgba(122,208,255,.15); border: 1px solid rgba(122,208,255,.3); color: var(--sky); }

/* ── HERO BENTO ── */
.hero { padding: 36px 0 60px; }
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 104px;
  gap: 14px;
}
.bento-cell {
  border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden; transition: transform .25s;
}
.bento-cell:hover { transform: translateY(-3px); }

/* Hero title */
.b-title {
  grid-column: span 7; grid-row: span 4;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
}
.b-title-eyebrow {
  font-size: 11px; color: var(--mint); text-transform: uppercase;
  letter-spacing: .24em; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.b-title-eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); box-shadow: 0 0 12px var(--mint);
}
.b-title h1 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 78px; line-height: .96; letter-spacing: -.025em;
  color: var(--text); margin: auto 0;
}
.b-title h1 em { font-style: italic; color: var(--peach); }
.b-title-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; font-size: 14px; color: var(--muted); }
.b-title-foot b { display: block; color: var(--text); font-weight: 600; font-size: 16px; }
.btn-action {
  padding: 14px 26px; background: var(--text); color: var(--bg);
  font-size: 13px; font-weight: 600; border: none; cursor: pointer;
  border-radius: 99px; display: inline-flex; align-items: center; gap: 8px; font-family: inherit;
  transition: all .15s;
}
.btn-action:hover { background: rgba(245,244,240,.85); }

/* Service bento cells */
.b-service { grid-column: span 5; grid-row: span 2; padding: 24px; }
.b-service.mint  { background: linear-gradient(135deg, var(--mint),  var(--mint-dark));  color: var(--bg); }
.b-service.peach { background: linear-gradient(135deg, var(--peach), var(--peach-dark)); color: var(--bg); }
.b-service.lilac { background: linear-gradient(135deg, var(--lilac), var(--lilac-dark)); color: var(--bg); }
.b-service.sun   { background: linear-gradient(135deg, var(--sun),   var(--sun-dark));   color: var(--bg); }
.b-service.rose  { background: linear-gradient(135deg, var(--rose),  var(--lilac));       color: var(--bg); }
.b-service.sky   { background: linear-gradient(135deg, var(--sky),   var(--mint));        color: var(--bg); }
.b-service-icon {
  width: 36px; height: 36px; background: rgba(13,15,20,.18);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.b-service h3 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 30px; letter-spacing: -.01em; line-height: 1; margin-top: auto;
}
.b-service-meta { display: flex; justify-content: space-between; align-items: flex-end; font-size: 12px; font-weight: 600; opacity: .85; }
.b-service-price { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; font-size: 24px; line-height: 1; }

/* Stats cell */
.b-stat {
  grid-column: span 3; grid-row: span 2;
  background: var(--bg-2); border: 1px solid var(--line); padding: 22px;
}
.b-stat-l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .18em; font-weight: 600; }
.b-stat-v { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 54px; line-height: 1; letter-spacing: -.02em; }
.b-stat-v em { font-style: italic; color: var(--mint); }
.b-stat-foot { font-size: 12px; color: var(--muted); font-weight: 500; }

/* Pay cell */
.b-pay {
  grid-column: span 4; grid-row: span 2;
  background: linear-gradient(135deg, var(--sun), var(--sun-dark)); color: var(--bg);
  padding: 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.b-pay-l { font-size: 11px; text-transform: uppercase; letter-spacing: .2em; font-weight: 700; }
.b-pay-list { display: flex; flex-direction: column; gap: 8px; font-size: 14px; font-weight: 600; }
.b-pay-list span { display: inline-flex; align-items: center; gap: 8px; }
.b-pay-list span::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: rgba(13,15,20,.4); }
.b-pay-icon { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 48px; line-height: 1; margin-top: auto; font-weight: 400; }

/* Featured master */
.b-master {
  grid-column: span 5; grid-row: span 3;
  background: linear-gradient(160deg, var(--rose), var(--lilac)); color: var(--bg);
  padding: 28px;
}
.b-master-tag {
  display: inline-block; background: rgba(13,15,20,.2); color: var(--bg);
  padding: 5px 12px; border-radius: 99px; font-size: 10px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
}
.b-master-name { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 48px; line-height: .96; margin-top: auto; }
.b-master-spec { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 18px; opacity: .85; }
.b-master-rating { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; }

/* Hours cell */
.b-hours {
  grid-column: span 4; grid-row: span 1;
  background: var(--bg-2); border: 1px solid var(--line);
  padding: 20px; display: flex; align-items: center; justify-content: space-between;
}
.b-hours-l { font-size: 13px; color: var(--muted); font-weight: 500; }
.b-hours-v { font-family: 'Instrument Serif', serif; font-weight: 400; font-style: italic; font-size: 22px; color: var(--mint); }

/* ── SECTIONS ── */
section.services-sec, section.masters-sec { padding: 36px 0; }
section.masters-sec { padding-bottom: 80px; }
.sec-eyebrow {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: .24em; font-weight: 700; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.sec-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--muted-2); }
.sec-h {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 54px; letter-spacing: -.02em; margin-bottom: 32px; line-height: 1;
}
.sec-h em { font-style: italic; color: var(--peach); }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-c {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px; cursor: pointer;
  transition: all .25s; display: flex; flex-direction: column; gap: 24px;
}
.service-c:hover { transform: translateY(-4px); border-color: var(--line-2); }
.service-head { display: flex; align-items: center; justify-content: space-between; }
.service-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; color: var(--bg);
}
.service-icon.mint  { background: linear-gradient(135deg, var(--mint),  var(--sky)); }
.service-icon.peach { background: linear-gradient(135deg, var(--peach), var(--sun)); }
.service-icon.lilac { background: linear-gradient(135deg, var(--lilac), var(--rose)); }
.service-icon.sun   { background: linear-gradient(135deg, var(--sun),   var(--peach)); }
.service-icon.rose  { background: linear-gradient(135deg, var(--rose),  var(--lilac)); }
.service-icon.sky   { background: linear-gradient(135deg, var(--sky),   var(--mint)); }
.service-dur {
  font-size: 11px; color: var(--muted); text-transform: uppercase;
  letter-spacing: .16em; font-weight: 600; padding: 6px 12px;
  background: var(--bg-3); border-radius: 99px;
}
.service-c h3 {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 34px; line-height: 1; letter-spacing: -.015em;
}
.service-c p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.service-price { font-family: 'Instrument Serif', serif; font-weight: 400; font-size: 32px; color: var(--text); }
.service-price em { font-style: italic; color: var(--mint); }
.service-c-foot {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.service-btn {
  padding: 10px 18px; background: var(--text); color: var(--bg);
  border: none; border-radius: 99px; font-size: 12px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}

/* Masters grid */
.masters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.master-c {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 24px; cursor: pointer; transition: all .25s;
  overflow: hidden; text-align: center;
}
.master-c:hover { transform: translateY(-4px); border-color: var(--line-2); }
.master-photo { aspect-ratio: 1; position: relative; overflow: hidden; }
.master-photo img { width: 100%; height: 100%; object-fit: cover; }
.master-photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.master-photo-placeholder svg { width: 60%; height: 60%; opacity: .4; }
.master-rib {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(13,15,20,.4); color: var(--text);
  padding: 5px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  border-radius: 99px; backdrop-filter: blur(8px);
}
.master-name {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 28px; padding: 18px 12px 4px; letter-spacing: -.015em;
}
.master-spec { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 14px; color: var(--muted); padding: 0 12px 10px; }
.master-rating { font-size: 12px; color: var(--mint); padding-bottom: 18px; font-weight: 600; }

/* ── FOOTER ── */
footer {
  padding: 40px 0; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.foot-brand-mini { display: flex; align-items: center; gap: 14px; font-weight: 800; font-size: 18px; letter-spacing: .08em; }
.foot-copy { font-size: 12px; color: var(--muted); }

/* ── AUTH FORMS ── */
.auth-wrap {
  min-height: calc(100vh - 90px); display: flex; align-items: center; justify-content: center;
  padding: 48px 20px;
}
.auth-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 28px; padding: 44px 40px; width: 100%; max-width: 460px;
}
.auth-title { font-family: 'Instrument Serif', serif; font-size: 44px; letter-spacing: -.02em; line-height: 1; margin-bottom: 6px; }
.auth-title em { font-style: italic; color: var(--peach); }
.auth-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.form-input {
  background: var(--bg-3); border: 1px solid var(--line-2); color: var(--text);
  border-radius: 12px; padding: 12px 16px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .15s;
}
.form-input:focus { border-color: var(--mint); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 14px; background: var(--text); color: var(--bg);
  font-size: 14px; font-weight: 700; border: none; border-radius: 12px;
  cursor: pointer; font-family: inherit; margin-top: 8px; transition: all .15s;
}
.form-submit:hover { background: rgba(245,244,240,.85); }
.auth-alt { text-align: center; font-size: 13px; color: var(--muted); margin-top: 20px; }
.auth-alt a { color: var(--mint); font-weight: 600; }

/* ── ADMIN ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 240px; background: var(--bg-2); border-right: 1px solid var(--line);
  padding: 28px 16px; display: flex; flex-direction: column; gap: 4px;
  position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-sidebar-brand {
  font-weight: 800; font-size: 14px; letter-spacing: .1em; color: var(--muted);
  text-transform: uppercase; padding: 0 10px 20px; border-bottom: 1px solid var(--line); margin-bottom: 12px;
}
.admin-nav-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--muted);
  transition: all .15s;
}
.admin-nav-link:hover, .admin-nav-link.active { background: var(--bg-3); color: var(--text); }
.admin-main { flex: 1; padding: 36px 40px; overflow-y: auto; }
.admin-page-title {
  font-family: 'Instrument Serif', serif; font-size: 44px;
  letter-spacing: -.02em; margin-bottom: 28px; line-height: 1;
}
.admin-page-title em { font-style: italic; color: var(--mint); }

/* Admin stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }
.stat-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: 22px; }
.stat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-weight: 600; margin-bottom: 8px; }
.stat-value { font-family: 'Instrument Serif', serif; font-size: 48px; line-height: 1; letter-spacing: -.02em; }

/* Admin table */
.admin-table-wrap { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th {
  padding: 14px 20px; text-align: left; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.admin-table td { padding: 14px 20px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }

/* Admin form */
.admin-form { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: 32px; max-width: 680px; }
.admin-form-title { font-family: 'Instrument Serif', serif; font-size: 28px; margin-bottom: 24px; }
.admin-form .form-group { margin-bottom: 20px; }
.admin-form textarea.form-input { min-height: 100px; resize: vertical; }
.admin-form select.form-input { cursor: pointer; }
.admin-form-footer { display: flex; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.btn-primary {
  padding: 12px 24px; background: var(--text); color: var(--bg);
  font-size: 13px; font-weight: 700; border: none; cursor: pointer;
  border-radius: 10px; font-family: inherit; transition: all .15s;
}
.btn-primary:hover { background: rgba(245,244,240,.85); }
.btn-secondary {
  padding: 12px 24px; border: 1px solid var(--line-2); color: var(--text);
  font-size: 13px; font-weight: 500; background: transparent; cursor: pointer;
  border-radius: 10px; font-family: inherit; transition: all .15s;
}
.btn-secondary:hover { background: var(--bg-3); }
.btn-danger {
  padding: 8px 16px; background: rgba(255,92,106,.15); border: 1px solid rgba(255,92,106,.3);
  color: var(--danger); font-size: 12px; font-weight: 600; cursor: pointer;
  border-radius: 8px; font-family: inherit; transition: all .15s;
}
.btn-danger:hover { background: rgba(255,92,106,.25); }
.btn-sm {
  padding: 6px 14px; font-size: 12px; border-radius: 8px;
}
.badge {
  display: inline-flex; align-items: center; padding: 4px 10px;
  border-radius: 99px; font-size: 11px; font-weight: 700; letter-spacing: .06em;
}
.badge-active  { background: rgba(93,212,176,.15); color: var(--mint); }
.badge-inactive { background: rgba(141,146,163,.12); color: var(--muted); }
.badge-admin { background: rgba(168,144,255,.15); color: var(--lilac); }

/* Checkbox toggle */
.toggle-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; }
.toggle-label input[type=checkbox] {
  width: 18px; height: 18px; accent-color: var(--mint); cursor: pointer;
}

/* Checkboxes multi-select */
.checkbox-list { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.checkbox-item input { width: 16px; height: 16px; accent-color: var(--mint); }

/* Photo preview */
.photo-preview-wrap { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.photo-preview { width: 80px; height: 80px; border-radius: 16px; overflow: hidden; background: var(--bg-3); border: 1px solid var(--line); }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }

/* Profile page */
.profile-wrap { max-width: 720px; margin: 48px auto; padding: 0 20px; }
.profile-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; padding: 36px; margin-bottom: 20px; }
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin-bottom: 20px; }
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-title { font-family: 'Instrument Serif', serif; font-size: 32px; margin-bottom: 4px; }
.profile-email { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* Page header shared */
.page-hero { padding: 60px 0 40px; border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.page-hero-eyebrow { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .24em; font-weight: 700; margin-bottom: 10px; }
.page-hero-title { font-family: 'Instrument Serif', serif; font-size: 72px; line-height: .96; letter-spacing: -.025em; }
.page-hero-title em { font-style: italic; color: var(--peach); }

/* Barber detail */
.barber-detail { display: grid; grid-template-columns: 340px 1fr; gap: 28px; padding: 40px 0 80px; }
.barber-photo-large { border-radius: 24px; overflow: hidden; aspect-ratio: 1; background: var(--bg-2); }
.barber-photo-large img { width: 100%; height: 100%; object-fit: cover; }
.barber-info-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px; padding: 32px; }
.barber-info-name { font-family: 'Instrument Serif', serif; font-size: 52px; line-height: 1; letter-spacing: -.02em; margin-bottom: 4px; }
.barber-info-spec { font-family: 'Instrument Serif', serif; font-style: italic; font-size: 20px; color: var(--muted); margin-bottom: 24px; }
.barber-info-bio { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.barber-meta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.barber-meta-tag {
  padding: 8px 16px; background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 99px; font-size: 13px; font-weight: 500; color: var(--muted);
}

/* 403 / 404 */
.error-page { text-align: center; padding: 100px 20px; }
.error-code { font-family: 'Instrument Serif', serif; font-size: 120px; line-height: 1; color: var(--peach); }
.error-msg { font-size: 20px; color: var(--muted); margin: 12px 0 32px; }

/* ══════════════════════════════════════════════
   BOOKING PAGES  (book / confirm / my-bookings)
   ══════════════════════════════════════════════ */

/* Nav mint CTA */
.btn-fill.btn-mint { background: var(--mint); color: var(--bg); }
.btn-fill.btn-mint:hover { background: var(--mint-dark); }

/* Shared page header */
.booking-page, .confirm-page, .mybookings-page {
  max-width: 860px; margin: 0 auto; padding: 40px 0 80px;
}
.booking-header { margin-bottom: 32px; }
.booking-title {
  font-family: 'Instrument Serif', serif; font-weight: 400;
  font-size: 54px; line-height: 1; letter-spacing: -.025em;
}
.booking-title em { font-style: italic; color: var(--peach); }

/* ── Progress indicator ── */
.booking-progress {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 40px; padding: 20px 24px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 20px;
}
.bp-step {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 0;
}
.bp-num {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  background: var(--bg-3); color: var(--muted-2);
  border: 1px solid var(--line);
}
.bp-label { font-size: 13px; font-weight: 500; color: var(--muted-2); white-space: nowrap; }
.bp-step.bp-active .bp-num { background: var(--mint); color: var(--bg); border-color: var(--mint); }
.bp-step.bp-active .bp-label { color: var(--text); }
.bp-step.bp-done .bp-num { background: rgba(93,212,176,.15); color: var(--mint); border-color: rgba(93,212,176,.3); }
.bp-step.bp-done .bp-label { color: var(--muted); }
.bp-line {
  flex: 1; height: 1px; background: var(--line);
  margin: 0 8px; min-width: 16px;
}
.bp-line.bp-line-done { background: rgba(93,212,176,.3); }

/* ── Book sections ── */
.book-section {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px; margin-bottom: 16px;
}
.book-section-hd {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px; flex-wrap: wrap;
}
.book-step-num {
  font-size: 11px; font-weight: 800; letter-spacing: .16em;
  color: var(--muted-2); text-transform: uppercase; flex-shrink: 0;
}
.book-section-title {
  font-family: 'Instrument Serif', serif; font-size: 28px;
  font-weight: 400; line-height: 1;
}
.book-chosen-tag {
  margin-left: auto; padding: 5px 14px;
  background: var(--bg-3); border: 1px solid var(--line-2);
  border-radius: 99px; font-size: 13px; font-weight: 600; color: var(--muted);
}
.book-empty { color: var(--muted); font-size: 14px; text-align: center; padding: 20px; }

/* ── Choice cards (services + barbers) ── */
.choice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.choice-grid-barbers { grid-template-columns: repeat(4, 1fr); }
.choice-card {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 18px; padding: 16px; cursor: pointer;
  transition: all .2s; display: flex; align-items: center; gap: 14px;
  position: relative; overflow: hidden;
}
.choice-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.choice-card.active { border-color: transparent; }
.choice-icon {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.choice-dot {
  position: absolute; top: 14px; right: 14px;
  width: 8px; height: 8px; border-radius: 50%;
}
.choice-body { flex: 1; min-width: 0; }
.choice-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.choice-meta { font-size: 12px; color: var(--muted); }
.choice-rating { font-size: 12px; color: var(--mint); font-weight: 600; margin-top: 3px; }

/* Barber card */
.choice-card.barber { flex-direction: column; align-items: flex-start; padding: 0; overflow: hidden; }
.choice-barber-photo {
  width: 100%; aspect-ratio: 1; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.choice-barber-photo img { width: 100%; height: 100%; object-fit: cover; }
.choice-barber-ini {
  font-family: 'Instrument Serif', serif; font-size: 48px; color: rgba(13,15,20,.6);
}
.choice-card.barber .choice-body { padding: 14px 14px 16px; }
.choice-card.barber.active { outline: 2px solid var(--mint); }

/* ── Date tabs ── */
.date-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.date-tab {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 10px 14px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--bg-3);
  cursor: pointer; transition: all .15s; min-width: 56px;
}
.date-tab:hover { border-color: var(--line-2); background: var(--bg-2); }
.date-tab.active {
  background: var(--mint); border-color: var(--mint); color: var(--bg);
}
.date-tab-wd { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .7; }
.date-tab-d  { font-family: 'Instrument Serif', serif; font-size: 26px; line-height: 1; }
.date-tab-m  { font-size: 10px; opacity: .7; }

/* ── Slot grid ── */
.slot-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.slot {
  padding: 14px 8px; border-radius: 14px; border: 1px solid var(--line);
  background: var(--bg-3); cursor: pointer; transition: all .15s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Geist', sans-serif; font-size: 15px; font-weight: 600; color: var(--text);
}
.slot-time { line-height: 1; }
.slot-lock { width: 12px; height: 12px; flex-shrink: 0; }
.slot-free:hover { border-color: var(--mint); background: rgba(93,212,176,.08); color: var(--mint); }
.slot-free.slot-active {
  background: var(--mint); border-color: var(--mint); color: var(--bg);
}
.slot-taken {
  opacity: .35; cursor: not-allowed; color: var(--muted-2);
}

/* ── Booking summary ── */
.booking-summary {
  margin-top: 16px;
  display: none;
  flex-direction: column; gap: 16px;
}
.booking-summary.bs-visible { display: flex; }
.bs-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden; display: flex;
}
.bs-accent-bar { width: 4px; flex-shrink: 0; }
.bs-content { flex: 1; padding: 24px; }
.bs-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .16em; color: var(--muted); margin-bottom: 18px;
}
.bs-rows { display: flex; flex-direction: column; gap: 10px; }
.bs-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.bs-row span { color: var(--muted); }
.bs-row strong { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.bs-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bs-price { font-family: 'Instrument Serif', serif; font-size: 22px; color: var(--mint); font-weight: 400; }
.bs-hint { font-size: 13px; color: var(--muted); text-align: center; }

/* ── Confirm button ── */
.btn-book-confirm {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 32px; background: var(--mint); color: var(--bg);
  font-size: 15px; font-weight: 700; border: none; border-radius: 14px;
  cursor: pointer; font-family: inherit; transition: all .15s;
  text-decoration: none; gap: 8px;
}
.btn-book-confirm:hover { background: var(--mint-dark); }
.btn-book-confirm:disabled { opacity: .45; cursor: not-allowed; }

/* ══════════════════
   CONFIRM PAGE
   ══════════════════ */
.confirm-page { max-width: 560px; }
.confirm-info-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 24px; overflow: hidden; display: flex; margin-bottom: 20px;
}
.confirm-accent-bar { width: 4px; flex-shrink: 0; }
.confirm-card-body { flex: 1; padding: 28px; }
.confirm-barber-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.confirm-barber-photo {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.confirm-barber-photo img { width: 100%; height: 100%; object-fit: cover; }
.confirm-barber-ini { font-family: 'Instrument Serif', serif; font-size: 28px; color: rgba(13,15,20,.6); }
.confirm-barber-name { font-family: 'Instrument Serif', serif; font-size: 26px; line-height: 1; }
.confirm-barber-spec { font-size: 13px; color: var(--muted); font-style: italic; margin-top: 3px; }
.confirm-divider { height: 1px; background: var(--line); margin: 0 0 16px; }
.confirm-details { display: flex; flex-direction: column; gap: 10px; }
.confirm-detail-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.confirm-detail-row span { color: var(--muted); }
.confirm-detail-row strong { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.confirm-time-row strong { font-family: 'Instrument Serif', serif; font-size: 20px; }

.confirm-form-wrap { display: flex; flex-direction: column; gap: 14px; }
.confirm-expired {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,92,106,.1); border: 1px solid rgba(255,92,106,.25);
  color: var(--danger); padding: 14px 18px; border-radius: 14px; font-size: 14px;
}
.confirm-expired a { color: var(--mint); font-weight: 600; }
.confirm-code-label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .1em;
}
.confirm-ttl { font-size: 11px; color: var(--muted-2); font-weight: 500; text-transform: none; letter-spacing: 0; }
.code-input {
  width: 100%; padding: 18px 24px; font-size: 38px; font-weight: 700;
  font-family: 'Courier New', Courier, monospace; letter-spacing: .32em;
  background: var(--bg-3); border: 2px solid var(--line-2); color: var(--text);
  border-radius: 16px; text-align: center; outline: none; transition: border-color .15s;
}
.code-input:focus { border-color: var(--mint); }
.confirm-attempts {
  display: flex; align-items: center; gap: 8px;
  color: var(--danger); font-size: 14px; font-weight: 500;
}
.confirm-spam-hint {
  text-align: center; font-size: 13px; color: var(--muted);
  padding: 8px 0;
}
.confirm-back-link { font-size: 14px; color: var(--muted); font-weight: 500; }
.confirm-back-link:hover { color: var(--text); }

/* ══════════════════
   MY BOOKINGS PAGE
   ══════════════════ */
.mybookings-page { max-width: 860px; }
.mybookings-hd {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
}
.btn-book-new { padding: 12px 24px; font-size: 14px; flex-shrink: 0; margin-bottom: 4px; }
.mybookings-empty {
  text-align: center; padding: 80px 20px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 24px;
}
.mybookings-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: .3; }
.mybookings-empty-title { font-family: 'Instrument Serif', serif; font-size: 32px; margin-bottom: 8px; }
.mybookings-empty-sub { font-size: 15px; color: var(--muted); }
.mybookings-group { margin-bottom: 32px; }
.mybookings-group-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .18em; color: var(--muted); margin-bottom: 12px;
  padding-left: 4px;
}
.mybookings-list { display: flex; flex-direction: column; gap: 10px; }

/* Booking card */
.booking-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; display: flex;
  transition: border-color .2s;
}
.booking-card:hover { border-color: var(--line-2); }
.bc-past { opacity: .7; }
.booking-card-accent { width: 4px; flex-shrink: 0; }
.booking-card-body {
  flex: 1; display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
}
.bc-barber-photo {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.bc-barber-photo img { width: 100%; height: 100%; object-fit: cover; }
.bc-barber-ini { font-family: 'Instrument Serif', serif; font-size: 24px; color: rgba(13,15,20,.6); }
.bc-info { flex: 1; min-width: 0; }
.bc-service {
  display: flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600; margin-bottom: 3px;
}
.bc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.bc-barber { font-size: 13px; color: var(--muted); margin-bottom: 4px; }
.bc-datetime { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.bc-sep { opacity: .4; }
.bc-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0;
}
.bc-price { font-family: 'Instrument Serif', serif; font-size: 20px; font-weight: 400; }
.bc-price-muted { opacity: .5; }
.bc-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.bc-btn {
  padding: 7px 14px; border-radius: 99px; font-size: 12px; font-weight: 600;
  cursor: pointer; border: none; font-family: inherit; transition: all .15s; text-decoration: none;
  display: inline-flex; align-items: center;
}
.bc-btn-code { background: rgba(93,212,176,.15); color: var(--mint); }
.bc-btn-code:hover { background: rgba(93,212,176,.25); }
.bc-btn-cancel { background: rgba(255,92,106,.12); color: var(--danger); }
.bc-btn-cancel:hover { background: rgba(255,92,106,.22); }

/* Status badges */
.badge-confirmed { background: rgba(93,212,176,.15); color: var(--mint); }
.badge-pending   { background: rgba(255,194,102,.15); color: var(--sun); }
.badge-cancelled { background: rgba(141,146,163,.12); color: var(--muted); }
.badge-completed { background: rgba(122,208,255,.15); color: var(--sky); }

/* Payment badges */
.payment-badge {
  display: inline-block; padding: 3px 10px; border-radius: 99px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.payment-badge.paid     { background: rgba(93,212,176,.15); color: var(--mint); }
.payment-badge.unpaid   { background: rgba(255,194,102,.15); color: var(--sun); }
.payment-badge.refunded { background: rgba(141,146,163,.12); color: var(--muted); }

/* Pay hint in booking card */
.bc-pay-hint { font-size: 11px; color: var(--muted-2); font-style: italic; }

/* Pay button in booking card */
.bc-btn-pay { background: rgba(93,212,176,.15); color: var(--mint); }
.bc-btn-pay:hover { background: rgba(93,212,176,.25); }

/* ══════════════════
   PAY PAGE
   ══════════════════ */
.pay-page { max-width: 800px; padding-bottom: 60px; }

.pay-summary {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden; display: flex; margin-bottom: 32px;
}
.pay-summary-accent { width: 4px; flex-shrink: 0; }
.pay-summary-body {
  flex: 1; display: flex; align-items: center; gap: 18px;
  padding: 24px 28px; flex-wrap: wrap;
}
.pay-summary-left { display: flex; align-items: center; gap: 16px; flex: 1; min-width: 200px; }
.pay-barber-photo {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pay-barber-photo img { width: 100%; height: 100%; object-fit: cover; }
.pay-barber-ini { font-family: 'Instrument Serif', serif; font-size: 26px; color: rgba(13,15,20,.6); }
.pay-service-name {
  display: flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 600; margin-bottom: 3px;
}
.pay-barber-name { font-size: 13px; color: var(--muted); margin-bottom: 3px; }
.pay-datetime { font-size: 13px; color: var(--muted); }
.pay-summary-amount { text-align: right; flex-shrink: 0; }
.pay-amount-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .18em;
  font-weight: 700; color: var(--muted); margin-bottom: 4px;
}
.pay-amount-value { font-family: 'Instrument Serif', serif; font-size: 32px; color: var(--text); }

.pay-section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px;
}

/* QR grid */
.pay-qr-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 12px;
}
.pay-qr-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 20px; padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.pay-qr-provider-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; align-self: flex-start;
}
.pay-qr-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.pay-qr-wrap {
  background: #fff; border-radius: 16px; padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
.pay-qr-wrap svg { display: block; }
.pay-qr-open-btn {
  padding: 10px 22px; background: var(--text); color: var(--bg);
  font-size: 13px; font-weight: 600; border-radius: 99px;
  transition: all .15s; display: inline-flex; align-items: center; gap: 6px;
}
.pay-qr-open-btn:hover { background: rgba(245,244,240,.85); }
.pay-qr-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 32px 16px; text-align: center;
  background: var(--bg-3); border: 1px dashed var(--line-2); border-radius: 12px; width: 100%;
}
.pay-qr-placeholder-icon { font-size: 32px; opacity: .5; }
.pay-qr-placeholder-text { font-size: 13px; color: var(--muted); font-weight: 500; }
.pay-qr-placeholder-sub { font-size: 11px; color: var(--muted-2); }

/* Action buttons */
.pay-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
}
.pay-btn {
  padding: 13px 24px; border-radius: 99px; font-size: 14px; font-weight: 600;
  cursor: pointer; border: none; font-family: inherit; transition: all .15s;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
}
.pay-btn-later {
  background: rgba(255,194,102,.2); color: var(--sun);
  border: 1px solid rgba(255,194,102,.3);
}
.pay-btn-later:hover { background: rgba(255,194,102,.3); }
.pay-btn-cash {
  background: rgba(255,144,112,.2); color: var(--peach);
  border: 1px solid rgba(255,144,112,.3);
}
.pay-btn-cash:hover { background: rgba(255,144,112,.3); }
.pay-btn-skip {
  background: transparent; color: var(--muted);
  border: 1px solid var(--line);
}
.pay-btn-skip:hover { background: var(--bg-2); color: var(--text); }

.pay-footnote {
  font-size: 13px; color: var(--muted-2); line-height: 1.6;
  padding: 16px 20px; background: var(--bg-2); border-radius: 12px;
  border: 1px solid var(--line);
}
.pay-footnote strong { color: var(--muted); }

/* Admin payment alert */
.admin-payment-alert {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,194,102,.12); border: 1px solid rgba(255,194,102,.25);
  color: var(--sun); border-radius: 14px; padding: 14px 20px;
  font-size: 14px; font-weight: 600; margin-bottom: 24px; text-decoration: none;
  transition: background .15s;
}
.admin-payment-alert:hover { background: rgba(255,194,102,.2); }

/* Admin filter row */
.admin-filters {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; align-items: center;
}
.admin-filter-select {
  padding: 9px 14px; background: var(--bg-2); border: 1px solid var(--line);
  color: var(--text); border-radius: 10px; font-family: inherit; font-size: 13px;
  cursor: pointer;
}
.admin-filter-select:focus { outline: none; border-color: var(--line-2); }

/* Admin action buttons in table */
.admin-action-btn {
  padding: 5px 12px; border-radius: 99px; font-size: 11px; font-weight: 700;
  cursor: pointer; border: none; font-family: inherit; transition: all .15s;
}
.admin-action-btn-pay   { background: rgba(93,212,176,.15); color: var(--mint); }
.admin-action-btn-pay:hover { background: rgba(93,212,176,.25); }
.admin-action-btn-unpay { background: rgba(141,146,163,.12); color: var(--muted); }
.admin-action-btn-unpay:hover { background: rgba(141,146,163,.2); }

/* ── HAMBURGER + MOBILE MENU ── */
.nav-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px; border: none; background: transparent;
  cursor: pointer; border-radius: 10px; margin-left: auto; transition: background .15s;
}
.nav-burger:hover { background: var(--bg-2); }
.nav-burger span {
  display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s;
}

.mob-menu {
  position: fixed; top: 0; right: -100%; width: min(360px, 100vw); height: 100%;
  background: var(--bg-2); border-left: 1px solid var(--line-2);
  z-index: 200; padding: 24px 28px; display: flex; flex-direction: column;
  transition: right .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mob-menu.open { right: 0; }

.mob-menu-close {
  align-self: flex-end; background: var(--bg-3); border: 1px solid var(--line);
  color: var(--muted); font-size: 18px; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .15s; margin-bottom: 32px;
}
.mob-menu-close:hover { background: var(--bg); color: var(--text); }

.mob-nav { display: flex; flex-direction: column; gap: 6px; }
.mob-nav a {
  display: block; padding: 14px 18px; border-radius: 14px; font-size: 17px; font-weight: 500;
  color: var(--muted); transition: all .15s;
}
.mob-nav a:hover { background: var(--bg-3); color: var(--text); }
.mob-nav-cta {
  background: var(--mint) !important; color: var(--bg) !important;
  font-weight: 700 !important; text-align: center; margin-top: 6px;
}
.mob-nav-cta:hover { opacity: .9; }
.mob-nav-logout {
  width: 100%; padding: 14px 18px; border-radius: 14px; font-size: 17px; font-weight: 500;
  color: var(--danger); background: rgba(255,92,106,.08); border: 1px solid rgba(255,92,106,.15);
  cursor: pointer; font-family: inherit; transition: all .15s; text-align: left;
}
.mob-nav-logout:hover { background: rgba(255,92,106,.15); }

.mob-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px); z-index: 199;
}
.mob-overlay.open { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento > * { grid-column: span 2 !important; grid-row: auto !important; }
  .b-title h1 { font-size: 48px; }
  .services-grid, .masters-grid { grid-template-columns: 1fr 1fr; }
  nav.links { display: none; }
  .nav-right { display: none; }
  .nav-burger { display: flex; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: static; flex-direction: row; flex-wrap: wrap; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .barber-detail { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .services-grid, .masters-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice-grid-barbers { grid-template-columns: 1fr 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-title { font-size: 40px; }
  .mybookings-hd { flex-direction: column; align-items: flex-start; }
  .booking-card-body { flex-wrap: wrap; gap: 12px; }
  .bc-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .bp-label { display: none; }
  .pay-qr-grid { grid-template-columns: 1fr; }
  .pay-actions { flex-direction: column; }
  .pay-btn { justify-content: center; }
  .pay-summary-body { gap: 16px; }
  .pay-amount-value { font-size: 26px; }
}
