/* ─── Variables ─── */
:root {
  --accent:   #adfe00;
  --accent2:  #c8ff2e;
  --cyan:     #00bcd4;
  --gradient: linear-gradient(135deg, #adfe00 0%, #00bcd4 100%);
  --bg:       #08080f;
  --bg2:      #0e0e1a;
  --bg3:      #141424;
  --border:   rgba(255,255,255,.07);
  --text:     #e8e8f0;
  --text2:    #8888a0;
  --radius:   14px;
  --radius-sm: 8px;
  --shadow:   0 4px 32px rgba(0,0,0,.5);
  --nav-h:    68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ─── Icons ─── */
.aw-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.aw-biz-card__stats span,
.aw-biz-card__city,
.aw-biz-hero__city,
.aw-booking-item__time,
.aw-rating-badge { display: inline-flex; align-items: center; gap: 5px; }
.aw-cat-pill { display: inline-flex; align-items: center; gap: 7px; }
.aw-stat-pill__val { display: inline-flex; align-items: center; gap: 5px; }
.aw-badge { display: inline-flex; align-items: center; gap: 5px; }
.aw-empty-state__icon { display: flex; align-items: center; justify-content: center; opacity: .4; margin-bottom: 8px; }
.aw-booking-gate__icon { display: flex; align-items: center; justify-content: center; opacity: .5; margin-bottom: 12px; }

/* ─── Container ─── */
.aw-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Nav ─── */
.aw-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,15,.85);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color .2s, box-shadow .2s;
}
.aw-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.aw-nav__inner {
  display: flex; align-items: center; gap: 16px;
  height: var(--nav-h);
}
.aw-nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
}
.aw-nav__logo em { font-style: normal; color: var(--accent); margin-left: 2px; }
.aw-logo-bar { width: 3px; height: 18px; background: var(--accent); border-radius: 2px; flex-shrink: 0; }
.aw-footer__logo .aw-logo-bar { width: 3px; height: 16px; }
.aw-nav__links {
  display: flex; gap: 4px; margin-left: 8px;
  flex: 1;
}
.aw-nav__links a {
  padding: 6px 14px; border-radius: var(--radius-sm);
  color: var(--text2); font-size: 14px; font-weight: 500;
  transition: color .15s, background .15s;
}
.aw-nav__links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.aw-nav__right { display: flex; align-items: center; gap: 10px; }
.aw-nav__user-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 6px 16px 6px 8px; border-radius: 40px;
  font-size: 14px; font-weight: 500;
  transition: border-color .15s;
}
.aw-nav__user-btn:hover { border-color: rgba(173,254,0,.3); }
.aw-nav__avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #000;
}
.aw-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.aw-burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .2s; }
.aw-mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--border);
}
.aw-mobile-menu.open { display: flex; }
.aw-mobile-menu a {
  padding: 10px 14px; border-radius: var(--radius-sm);
  color: var(--text2); font-size: 15px;
  transition: color .15s, background .15s;
}
.aw-mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.aw-mobile-menu__sep { height: 1px; background: var(--border); margin: 6px 0; }
.aw-mobile-cta { color: var(--accent) !important; font-weight: 600; }

/* ─── Buttons ─── */
.aw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 22px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: opacity .15s, transform .1s, box-shadow .15s;
  text-decoration: none; white-space: nowrap;
}
.aw-btn:hover { opacity: .88; }
.aw-btn:active { transform: scale(.97); }
.aw-btn--primary {
  background: var(--gradient); color: #000;
  box-shadow: 0 2px 16px rgba(173,254,0,.25);
}
.aw-btn--primary:hover { box-shadow: 0 4px 24px rgba(173,254,0,.35); opacity: 1; }
.aw-btn--ghost {
  background: rgba(255,255,255,.06); color: var(--text);
  border: 1px solid var(--border);
}
.aw-btn--ghost:hover { background: rgba(255,255,255,.1); }
.aw-btn--outline {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(173,254,0,.35);
}
.aw-btn--outline:hover { background: rgba(173,254,0,.08); }
.aw-btn--sm  { padding: 6px 14px; font-size: 13px; }
.aw-btn--lg  { padding: 14px 28px; font-size: 16px; }
.aw-btn--full { width: 100%; }

/* ─── Tags / Badges ─── */
.aw-tag {
  display: inline-block;
  background: rgba(173,254,0,.1); color: var(--accent);
  border: 1px solid rgba(173,254,0,.2);
  padding: 2px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.aw-badge {
  display: inline-block;
  background: rgba(255,255,255,.08); color: var(--text2);
  padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 500;
}
.aw-badge--green { background: rgba(173,254,0,.12); color: var(--accent); }
.aw-count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 6px;
  background: var(--accent); color: #000;
  border-radius: 11px; font-size: 12px; font-weight: 700;
}

/* ─── Alerts ─── */
.aw-alert {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 16px;
}
.aw-alert--error {
  background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3);
  color: #fca5a5;
}
.aw-alert--success {
  background: rgba(173,254,0,.1); border: 1px solid rgba(173,254,0,.25);
  color: var(--accent);
}

/* ─── Form fields ─── */
.aw-form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.aw-form-field label { font-size: 13px; font-weight: 600; color: var(--text2); }
.aw-form-field input,
.aw-form-field select,
.aw-form-field textarea {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.aw-form-field input:focus,
.aw-form-field select:focus,
.aw-form-field textarea:focus {
  outline: none;
  border-color: rgba(173,254,0,.4);
  box-shadow: 0 0 0 3px rgba(173,254,0,.08);
}
.aw-form-field select option { background: var(--bg3); }

/* ─── Section cards ─── */
.aw-section-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; margin-bottom: 20px;
}
.aw-section-card h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}

/* ─── Gradient text ─── */
.aw-grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────
   EXPLORE PAGE
───────────────────────────────────────── */
.aw-explore { padding: 0 0 80px; }

/* Hero */
.aw-xhero {
  padding: 52px 0 36px;
  border-bottom: 1px solid var(--border);
}
.aw-xhero__inner {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.aw-xhero__text h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.0;
  margin-bottom: 12px;
}
.aw-xhero__text h1 em { color: var(--accent); font-style: normal; }
.aw-xhero__text p { font-size: 15px; color: var(--text2); max-width: 380px; line-height: 1.6; }
.aw-xhero__nums { display: flex; gap: 32px; flex-shrink: 0; padding-bottom: 6px; }
.aw-xnum { text-align: right; }
.aw-xnum strong {
  display: block; font-size: 22px; font-weight: 800;
  color: var(--text); letter-spacing: -.03em;
}
.aw-xnum span {
  font-size: 11px; color: var(--text2);
  text-transform: uppercase; letter-spacing: .07em; font-weight: 500;
}

/* Layout: sidebar + main */
.aw-xlayout {
  display: flex; gap: 0; align-items: flex-start;
  padding-top: 24px;
}

/* Sidebar */
.aw-xsidebar {
  width: 0; overflow: hidden; flex-shrink: 0;
  transition: width .25s ease, margin-right .25s ease;
  margin-right: 0;
}
.aw-xsidebar.open {
  width: 244px;
  margin-right: 24px;
}
.aw-xsidebar__inner { width: 244px; padding-bottom: 40px; }
.aw-xsidebar__section { margin-bottom: 24px; }
.aw-xsidebar__label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text2);
  margin-bottom: 10px;
}

.aw-xsearch {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 12px;
  transition: border-color .15s;
}
.aw-xsearch:focus-within { border-color: rgba(173,254,0,.35); }
.aw-xsearch .aw-icon { color: var(--text2); flex-shrink: 0; }
.aw-xsearch input {
  flex: 1; background: transparent; border: none;
  color: var(--text); font-size: 13px; font-family: inherit; outline: none;
}
.aw-xsearch input::placeholder { color: var(--text2); }

.aw-xfilter-opts { display: flex; flex-direction: column; gap: 2px; }
.aw-xfilter-opt {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; border-radius: var(--radius-sm);
  cursor: pointer; font-size: 13px; color: var(--text2);
  transition: background .12s, color .12s;
  border: 1px solid transparent;
  user-select: none;
}
.aw-xfilter-opt input[type=radio] { display: none; }
.aw-xfilter-opt .aw-icon { flex-shrink: 0; opacity: .6; }
.aw-xfilter-opt:hover { background: rgba(255,255,255,.04); color: var(--text); }
.aw-xfilter-opt.active {
  background: rgba(173,254,0,.08);
  border-color: rgba(173,254,0,.2);
  color: var(--accent);
}
.aw-xfilter-opt.active .aw-icon { opacity: 1; }
.aw-xfilter-cnt {
  margin-left: auto; font-size: 11px; color: var(--text2);
  background: rgba(255,255,255,.06); border-radius: 4px;
  padding: 1px 6px; font-weight: 500;
}
.aw-xclear {
  display: block; text-align: center; margin-top: 16px;
  font-size: 12px; color: var(--text2);
  padding: 7px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: color .15s, border-color .15s;
}
.aw-xclear:hover { color: var(--text); border-color: rgba(255,255,255,.2); }

/* Main area */
.aw-xmain { flex: 1; min-width: 0; }

.aw-xtoolbar {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.aw-xfilter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  background: var(--bg2); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text2);
  cursor: pointer; transition: all .15s; font-family: inherit;
  position: relative;
}
.aw-xfilter-btn:hover { border-color: rgba(173,254,0,.3); color: var(--text); }
.aw-xfilter-btn.active {
  background: rgba(173,254,0,.08);
  border-color: rgba(173,254,0,.3);
  color: var(--accent);
}
.aw-xfilter-badge {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  position: absolute; top: 5px; right: 5px;
}
.aw-xcount { font-size: 14px; color: var(--text2); margin-left: auto; }
.aw-xcount strong { color: var(--text); }

/* Card grid */
.aw-xgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.aw-xlayout.sidebar-open .aw-xgrid {
  grid-template-columns: repeat(2, 1fr);
}
.aw-xcard {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.aw-xcard:hover {
  border-color: rgba(173,254,0,.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,.45);
}
.aw-xcard__banner {
  height: 82px; position: relative; flex-shrink: 0;
  display: flex; align-items: center; padding-left: 18px;
}
.aw-xcard__letter {
  font-size: 32px; font-weight: 900; color: rgba(0,0,0,.35);
  line-height: 1; user-select: none; letter-spacing: -.04em;
}
.aw-xcard__overlay {
  position: absolute; top: 8px; right: 8px;
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.aw-xcard__cat {
  font-size: 9px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  background: rgba(0,0,0,.35); color: rgba(255,255,255,.9);
  padding: 2px 7px; border-radius: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 110px;
}
.aw-xcard__rating {
  display: inline-flex; align-items: center; gap: 3px;
  background: rgba(0,0,0,.35); color: #adfe00;
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 3px;
}
.aw-xcard__body {
  padding: 14px 16px; flex: 1;
  display: flex; flex-direction: column; gap: 6px;
}
.aw-xcard__name {
  font-size: 14px; font-weight: 700; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.aw-xcard__meta { font-size: 12px; color: var(--text2); }
.aw-xcard__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 10px;
}
.aw-xcard__cnt { font-size: 12px; color: var(--text2); }
.aw-xcard__book {
  font-size: 12px; font-weight: 700; color: var(--accent);
  opacity: 0; transform: translateX(-4px);
  transition: opacity .15s, transform .15s;
}
.aw-xcard:hover .aw-xcard__book { opacity: 1; transform: translateX(0); }

/* Pagination */
.aw-pagination {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; justify-content: center;
}
.aw-page-btn {
  min-width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg2); border: 1px solid var(--border);
  font-size: 14px; color: var(--text2);
  transition: all .15s; padding: 0 12px;
}
.aw-page-btn:hover { border-color: rgba(173,254,0,.3); color: var(--text); }
.aw-page-btn.active {
  background: var(--accent); border-color: var(--accent);
  color: #000; font-weight: 700;
}
.aw-page-info { font-size: 13px; color: var(--text2); margin-left: 8px; }

/* Empty state */
.aw-empty-state {
  text-align: center; padding: 80px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.aw-empty-state__icon { color: var(--text2); }
.aw-empty-state h3 { font-size: 20px; font-weight: 700; }
.aw-empty-state p { color: var(--text2); }

/* ─────────────────────────────────────────
   BUSINESS PAGE
───────────────────────────────────────── */
.aw-biz-page { padding: 32px 0 80px; }
.aw-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text2); font-size: 14px;
  padding: 6px 0; margin-bottom: 24px;
  transition: color .15s;
}
.aw-back-link:hover { color: var(--accent); }

.aw-biz-hero {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  margin-bottom: 28px;
}
.aw-biz-hero__av {
  width: 88px; height: 88px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; font-weight: 800; color: #000;
  flex-shrink: 0;
}
.aw-biz-hero__info { flex: 1; }
.aw-biz-hero__tags {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.aw-biz-hero__city { font-size: 13px; color: var(--text2); }
.aw-biz-hero__info h1 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.aw-biz-hero__desc { color: var(--text2); font-size: 15px; margin-bottom: 20px; max-width: 620px; }
.aw-biz-hero__stats { display: flex; gap: 12px; flex-wrap: wrap; }
.aw-stat-pill {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 16px;
  display: flex; flex-direction: column; align-items: center;
  min-width: 80px;
}
.aw-stat-pill__val { font-size: 16px; font-weight: 700; color: var(--accent); }
.aw-stat-pill span:last-child { font-size: 12px; color: var(--text2); margin-top: 2px; }

.aw-biz-cols { display: grid; grid-template-columns: 1fr 360px; gap: 20px; align-items: start; }
.aw-biz-main {}
.aw-biz-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }

/* Services */
.aw-services { display: flex; flex-direction: column; gap: 2px; }
.aw-service-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.aw-service-row:last-child { border-bottom: none; }
.aw-service-row__left { flex: 1; }
.aw-service-row__name { font-size: 14px; font-weight: 600; }
.aw-service-row__dur { font-size: 13px; color: var(--text2); margin-top: 2px; }
.aw-service-row__price { font-size: 15px; font-weight: 700; color: var(--accent); min-width: 48px; text-align: right; }

/* Reviews */
.aw-rating-badge { font-size: 14px; font-weight: 600; color: var(--text2); }
.aw-reviews { display: flex; flex-direction: column; gap: 20px; }
.aw-review { }
.aw-review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.aw-review__av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #000; flex-shrink: 0;
}
.aw-review__meta { flex: 1; }
.aw-review__name { font-size: 14px; font-weight: 600; }
.aw-review__date { font-size: 12px; color: var(--text2); }
.aw-review__stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
.aw-review__text { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* Booking card */
.aw-booking-card {}
.aw-booking-gate { text-align: center; padding: 20px 0; }
.aw-booking-gate__icon { font-size: 32px; margin-bottom: 12px; }
.aw-booking-gate p { color: var(--text2); font-size: 14px; margin-bottom: 16px; }
.aw-booking-form { display: flex; flex-direction: column; }
.aw-booking-success { text-align: center; padding: 12px 0; }
.aw-booking-success__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: #000;
  margin: 0 auto 16px;
}
.aw-booking-success h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.aw-booking-success p { color: var(--text2); font-size: 14px; margin-bottom: 20px; }

/* ─────────────────────────────────────────
   AUTH PAGE
───────────────────────────────────────── */
.aw-auth-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center; justify-content: center;
  padding: 60px 16px;
}
.aw-auth-wrap { width: 100%; max-width: 440px; }
.aw-auth-logo {
  text-align: center; margin-bottom: 32px;
  font-size: 18px; font-weight: 700;
}
.aw-auth-logo a { display: inline-flex; align-items: center; gap: 10px; }
.aw-auth-logo em { font-style: normal; color: var(--accent); }
.aw-auth-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
}
.aw-auth-tabs {
  display: flex; gap: 2px;
  background: var(--bg3); border-radius: var(--radius-sm);
  padding: 4px; margin-bottom: 28px;
}
.aw-auth-tab {
  flex: 1; text-align: center;
  padding: 8px; border-radius: 6px;
  font-size: 14px; font-weight: 500; color: var(--text2);
  transition: all .15s;
}
.aw-auth-tab.active {
  background: var(--bg2); color: var(--text);
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.aw-auth-card h1 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.aw-auth-sub { color: var(--text2); font-size: 14px; margin-bottom: 24px; }
.aw-auth-form { display: flex; flex-direction: column; }
.aw-auth-forgot { text-align: right; margin-top: -8px; margin-bottom: 16px; }
.aw-auth-forgot a { font-size: 13px; color: var(--text2); transition: color .15s; }
.aw-auth-forgot a:hover { color: var(--accent); }
.aw-auth-switch { text-align: center; font-size: 14px; color: var(--text2); margin-top: 20px; }
.aw-auth-switch a { color: var(--accent); font-weight: 600; }
.aw-auth-stats {
  display: flex; justify-content: center; gap: 32px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.aw-auth-stat { text-align: center; }
.aw-auth-stat strong { display: block; font-size: 20px; font-weight: 800; color: var(--accent); }
.aw-auth-stat span { font-size: 12px; color: var(--text2); }

/* ─────────────────────────────────────────
   PROFILE PAGE
───────────────────────────────────────── */
.aw-profile-page { padding: 40px 0 80px; }
.aw-profile-hero {
  display: flex; align-items: center; gap: 20px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 32px;
  margin-bottom: 28px;
}
.aw-profile-hero__av {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; color: #000;
  flex-shrink: 0;
}
.aw-profile-hero__info { flex: 1; }
.aw-profile-hero__info h1 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.aw-profile-hero__email { color: var(--text2); font-size: 14px; margin-bottom: 10px; }
.aw-profile-hero__badges { display: flex; gap: 8px; }
.aw-profile-section { margin-bottom: 32px; }
.aw-profile-section h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.aw-profile-section__cta { margin-top: 16px; }
.aw-profile-empty { padding: 40px 0; }

/* Bookings list */
.aw-bookings-list,
.aw-recent-bookings { display: flex; flex-direction: column; gap: 10px; }
.aw-booking-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  transition: border-color .15s;
}
.aw-booking-item:hover { border-color: rgba(173,254,0,.2); }
.aw-booking-item--muted { opacity: .7; }
.aw-booking-item__icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #000; flex-shrink: 0;
}
.aw-booking-item__body { flex: 1; }
.aw-booking-item__biz { font-size: 15px; font-weight: 700; }
.aw-booking-item__svc { font-size: 13px; color: var(--text2); margin-top: 2px; }
.aw-booking-item__time { font-size: 13px; color: var(--text2); margin-top: 4px; }
.aw-booking-item__right { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.aw-booking-item__price { font-size: 16px; font-weight: 700; color: var(--accent); }

/* Status chips */
.aw-status {
  display: inline-block;
  padding: 3px 10px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.aw-status--confirmed { background: rgba(173,254,0,.12); color: var(--accent); }
.aw-status--completed { background: rgba(0,188,212,.1); color: var(--cyan); }
.aw-status--pending   { background: rgba(245,158,11,.1); color: #f59e0b; }
.aw-status--cancelled { background: rgba(239,68,68,.1);  color: #f87171; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.aw-footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 48px 0 28px;
  margin-top: 60px;
}
.aw-footer__top {
  display: flex; gap: 48px;
  margin-bottom: 40px;
}
.aw-footer__brand { flex: 1; max-width: 300px; }
.aw-footer__logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; margin-bottom: 12px;
}
.aw-footer__brand p { font-size: 14px; color: var(--text2); line-height: 1.6; }
.aw-footer__cols { display: flex; gap: 40px; }
.aw-footer__col { display: flex; flex-direction: column; gap: 10px; }
.aw-footer__col h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text2); margin-bottom: 4px; }
.aw-footer__col a { font-size: 14px; color: var(--text2); transition: color .15s; }
.aw-footer__col a:hover { color: var(--text); }
.aw-footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text2);
}
.aw-footer__stats { font-size: 13px; color: var(--text2); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .aw-biz-cols { grid-template-columns: 1fr; }
  .aw-biz-sidebar { position: static; }
  .aw-nav__links { display: none; }
  .aw-burger { display: flex; }
  .aw-nav__right .aw-btn--ghost { display: none; }
  .aw-xhero__nums { gap: 20px; }
  .aw-xgrid { grid-template-columns: repeat(2, 1fr); }
  .aw-xlayout.sidebar-open .aw-xgrid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .aw-biz-hero { flex-direction: column; padding: 24px; }
  .aw-biz-hero__stats { gap: 8px; }
  .aw-stat-pill { min-width: 68px; padding: 8px 12px; }
  .aw-footer__top { flex-direction: column; gap: 32px; }
  .aw-footer__cols { flex-direction: column; gap: 24px; }
  .aw-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .aw-profile-hero { flex-wrap: wrap; }
  .aw-xhero__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .aw-xhero__nums { width: 100%; justify-content: space-between; padding-bottom: 0; }
  .aw-xnum { text-align: left; }
  .aw-xgrid { grid-template-columns: 1fr; }
  .aw-xlayout.sidebar-open .aw-xgrid { grid-template-columns: 1fr; }
  .aw-xsidebar.open { width: 100%; margin-right: 0; margin-bottom: 16px; }
  .aw-xsidebar__inner { width: 100%; }
  .aw-xlayout { flex-direction: column; }
}
@media (max-width: 520px) {
  .aw-container { padding: 0 16px; }
  .aw-auth-stats { gap: 20px; }
  .aw-booking-item { padding: 14px 16px; gap: 12px; }
}
