*{box-sizing:border-box}
:root{
  --bg:#fbf8f7;
  --paper:#ffffff;
  --paper-2:#fffdfd;
  --ink:#3f5656;
  --ink-soft:#667b7b;
  --muted:#8b9999;
  --line:#ead8de;
  --brand:#70b6b8;
  --brand-strong:#5aa9ab;
  --brand-deep:#4b9295;
  --brand-soft:#e7f6f6;
  --blush:#f8dce3;
  --blush-soft:#fff7f8;
  --blush-deep:#e9bdc8;
  --accent:#70b6b8;
  --shadow:0 18px 44px rgba(116,82,92,.10);
}
html,body{
  margin:0;
  min-height:100%;
  background:
    radial-gradient(circle at 12% 0%, rgba(248,220,227,.42) 0, rgba(248,220,227,0) 28%),
    radial-gradient(circle at 88% 0%, rgba(112,182,184,.10) 0, rgba(112,182,184,0) 24%),
    linear-gradient(180deg,#fffdfd 0%,#fbf8f7 52%,#ffffff 100%);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,"Segoe UI",sans-serif;
}
body{padding-bottom:88px}
.page{padding:18px 14px 22px}
.container{max-width:1120px;margin:0 auto}


.ob-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0 18px;
  flex-wrap:wrap;
}
.ob-header-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.icon-link{
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.site-return-btn{
  white-space:nowrap;
}
.icon-btn,.ghost-btn{
  border:1px solid var(--line);
  background:var(--paper);
  color:var(--ink);
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.icon-btn{
  width:42px;
  height:42px;
  padding:0;
  font-size:21px;
  line-height:1;
}
.ghost-btn{
  padding:11px 18px;
  color:#3f4948;
  background:#ffffff;
  border:1px solid #e2e7e5;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.icon-btn:hover,.ghost-btn:hover{
  border-color:#cfd7d5;
  background:#f7f7f5;
  transform:translateY(-1px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-mark,.summary-mark{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:var(--brand-deep);
  font-weight:800;
  overflow:hidden;
  border:1px solid var(--line);
  flex:0 0 auto;
}
.brand-logo{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
  background:#fff;
}
.brand-copy{min-width:0}
.brand-name{
  font-family:Georgia,"Times New Roman",serif;
  font-size:26px;
  font-weight:500;
  line-height:1;
  letter-spacing:.03em;
  color:#000000;
}
.brand-steps{
  margin-top:5px;
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.16em;
  white-space:nowrap;
}

.layout{display:block}
.content{min-width:0}

.categories-shell{
  background:transparent;
  margin-bottom:14px;
}
.categories-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.categories-title{
  font-size:11px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}
.categories-controls{display:none;gap:8px}
.scroll-btn{
  width:32px;
  height:32px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--brand-deep);
  font-size:18px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 2px 8px rgba(0,0,0,.03);
}

.category-tabs{
  display:flex;
  flex-wrap:wrap;
  overflow:visible;
  gap:10px;
  padding-bottom:2px;
  align-items:stretch;
}
.category-tabs::-webkit-scrollbar{display:none}
.category-tab{
  flex:0 1 auto;
  min-width:max-content;
  border:1px solid #dbe2e0;
  border-radius:999px;
  padding:10px 16px;
  background:var(--paper-2);
  color:var(--ink-soft);
  cursor:pointer;
  text-align:center;
  transition:all .16s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}
.category-tab:hover{
  transform:translateY(-1px);
  border-color:#cad4d2;
}
.category-tab.active{
  background:var(--brand);
  border-color:var(--brand);
  color:#fff;
  box-shadow:0 10px 20px rgba(149,166,162,.24);
}
.category-tab-name{
  font-size:13px;
  font-weight:700;
  line-height:1.12;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
  text-overflow:ellipsis;
}
.category-tab-sub{display:none}

@media (max-width:560px){
  .category-tabs{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:5px;
    max-height:83px; /* 2 compact rows visible, remaining categories scroll */
    overflow-y:auto;
    overflow-x:hidden;
    padding-right:2px;
    padding-bottom:1px;
    scrollbar-width:thin;
  }
  .category-tab{
    flex:none;
    width:100%;
    min-width:0;
    min-height:38px;
    padding:5px 4px;
    border-radius:12px;
  }
  .category-tab-name{
    font-size:9.8px;
    line-height:1.05;
    white-space:normal;
    word-break:normal;
  }
  .category-tab.category-secondary{
    opacity:.78;
    background:rgba(255,255,255,.76);
  }
  .category-tab.category-secondary.active{
    opacity:1;
  }
}

@media (max-width:390px){
  .category-tabs{
    grid-template-columns:repeat(3,minmax(0,1fr));
    max-height:83px;
  }
  .category-tab{
    min-height:38px;
    padding:5px 4px;
  }
  .category-tab-name{
    font-size:9.6px;
  }
}
.search-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.search-input{
  flex:1;
  min-width:0;
  border:1px solid var(--line);
  background:#fff;
  border-radius:16px;
  padding:15px 16px;
  font-size:15px;
  outline:none;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.search-input:focus{
  border-color:#bfcbca;
  box-shadow:0 0 0 3px rgba(149,166,162,.14);
}
.service-count{
  min-width:40px;
  text-align:right;
  color:var(--muted);
  font-size:12px;
}

.active-category{
  font-size:14px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--brand-deep);
}
.service-list{
  display:grid;
  gap:12px;
}
.service-card{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  padding:16px 18px;
  background:rgba(255,255,255,.98);
  border:1px solid #dfe5e3;
  border-radius:18px;
  box-shadow:0 6px 16px rgba(63,73,72,.04);
  cursor:pointer;
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.service-card:hover{
  transform:translateY(-1px);
  border-color:#c9d3d1;
  box-shadow:0 12px 24px rgba(63,73,72,.08);
}
.service-main{
  min-width:0;
  flex:1;
}
.service-name{
  font-size:18px;
  font-weight:700;
  line-height:1.24;
  margin-bottom:6px;
  color:#3f4948;
}
.service-meta{
  font-size:12px;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.service-price{
  font-size:19px;
  font-weight:800;
  color:var(--brand-deep);
}
.service-desc{
  font-size:12px;
  color:#7c8785;
  line-height:1.5;
  margin-top:6px;
  display:block;
  overflow:visible;
  white-space:normal;
}
.add-btn{
  width:40px;
  height:40px;
  flex:0 0 40px;
  margin-top:2px;
  border-radius:12px;
  border:none;
  background:var(--brand);
  color:#fff;
  font-size:22px;
  line-height:1;
  font-weight:700;
  cursor:pointer;
  flex:0 0 auto;
  transition:transform .16s ease, opacity .16s ease, background .16s ease;
  box-shadow:0 10px 22px rgba(149,166,162,.22);
}
.add-btn:hover{transform:scale(1.04)}
.add-btn.added{background:var(--brand-deep)}

.state-card{
  border:1px dashed #d6dedd;
  background:#fbfcfb;
  color:#6f7a78;
  border-radius:16px;
  padding:16px;
  font-size:14px;
}

.summary-panel{display:none}
.summary-card{
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfb 100%);
  border:1px solid #dfe5e3;
  border-radius:24px;
  padding:20px;
  box-shadow:var(--shadow);
  position:sticky;
  top:18px;
}
.summary-business{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:16px;
}
.summary-name{
  font-size:18px;
  font-weight:700;
  color:#3f4948;
}
.summary-address{
  font-size:12px;
  color:var(--muted);
  margin-top:3px;
}
.summary-empty{
  font-size:14px;
  color:var(--muted);
  padding:10px 0 18px;
}
.summary-items{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}
.summary-item{
  border:1px solid #dfe5e3;
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.summary-item-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
}
.summary-item-name{
  font-size:14px;
  font-weight:700;
  line-height:1.3;
}
.summary-item-meta{
  font-size:12px;
  color:var(--muted);
  margin-top:5px;
}
.remove-btn{
  border:1px solid #dbe2e0;
  background:var(--paper-2);
  color:var(--ink);
  border-radius:10px;
  padding:8px 10px;
  font-weight:700;
  cursor:pointer;
}
.summary-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:14px;
  border-top:1px solid var(--line);
  font-size:19px;
  color:#3f4948;
}
.continue-btn{
  border:none;
  background:var(--brand);
  color:#fff;
  border-radius:999px;
  padding:13px 18px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 22px rgba(149,166,162,.25);
}
.continue-btn:hover:not([disabled]){background:var(--brand-deep)}
.continue-btn[disabled]{
  opacity:.55;
  cursor:not-allowed;
  box-shadow:none;
}
.desktop-continue{
  width:100%;
  margin-top:16px;
}

.mobile-bar{
  position:fixed;
  left:0;right:0;bottom:0;
  padding:8px 10px calc(8px + env(safe-area-inset-bottom));
  background:linear-gradient(180deg,rgba(245,245,242,0) 0%,rgba(245,245,242,.96) 40%,rgba(245,245,242,1) 100%);
}
.mobile-bar-inner{
  max-width:1120px;
  margin:0 auto;
  background:#fff;
  border:1px solid #dfe5e3;
  border-radius:18px;
  padding:12px 14px;
  box-shadow:0 12px 24px rgba(63,73,72,.10);
  display:flex;
  align-items:center;
  gap:12px;
}
.mobile-copy{flex:1;min-width:0}
.mobile-count{
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:3px;
}
.mobile-total{
  font-size:17px;
  font-weight:800;
  color:#3f4948;
}

.hidden{display:none !important}

@media (max-width:979px){
  .page{padding:14px 12px 18px}
  .brand-name{font-size:22px}
  .brand-steps{font-size:10px}
  .service-card{padding:14px 15px}
  .service-name{font-size:16px}
  .ob-header{align-items:flex-start}
  .header-actions{width:100%;justify-content:flex-start}
  .site-return-btn{order:1}
}

@media (min-width:980px){
  body{padding-bottom:32px}
  .page{padding:22px 18px 28px}
  .layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 350px;
    gap:28px;
    align-items:start;
  }
  .summary-panel{display:block}
  .mobile-bar{display:none}
}

.step-heading-wrap{margin-bottom:18px}
.step-back-btn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
  border-radius:999px;
  padding:10px 14px;
  font-weight:700;
  cursor:pointer;
  margin-bottom:14px;
}
.step-back-btn:hover{border-color:#cfd7d5;background:#f7f7f5}
.step-eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.step-title{
  margin:0 0 8px;
  font-size:42px;
  line-height:1.04;
  color:#111;
  letter-spacing:-.03em;
}
.step-copy{
  margin:0;
  font-size:15px;
  color:#667271;
  line-height:1.55;
  max-width:700px;
}
.staff-list{display:grid;gap:14px}
.staff-card{
  width:100%;
  border:1px solid #dfe5e3;
  background:rgba(255,255,255,.98);
  border-radius:22px;
  box-shadow:0 6px 16px rgba(63,73,72,.04);
  padding:18px;
  display:flex;
  align-items:center;
  gap:16px;
  text-align:left;
  cursor:pointer;
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease, background .14s ease;
}
.staff-card:hover{
  transform:translateY(-1px);
  border-color:#c9d3d1;
  box-shadow:0 12px 24px rgba(63,73,72,.08);
}
.staff-card.selected{
  border-color:var(--brand);
  background:linear-gradient(180deg,#ffffff 0%, #f6f9f8 100%);
  box-shadow:0 14px 28px rgba(149,166,162,.18);
}
.staff-avatar-wrap{
  width:72px;height:72px;border-radius:50%;flex:0 0 auto;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  background:var(--brand-soft);border:1px solid #dbe2e0;
}
.staff-avatar-img{width:100%;height:100%;object-fit:cover;display:block}
.staff-avatar-fallback{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:100%;font-weight:800;font-size:24px;color:var(--brand-deep);
}
.staff-card-main{min-width:0;flex:1;display:grid;gap:6px}
.staff-card-name-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.staff-card-name{font-size:22px;font-weight:700;line-height:1.2;color:#111}
.staff-card-subtitle{font-size:14px;color:#6d7876;line-height:1.45}
.staff-card-action{
  border:1px solid #dbe2e0;background:#fff;border-radius:999px;padding:11px 16px;min-width:102px;
  display:inline-flex;align-items:center;justify-content:center;font-weight:700;color:#222;flex:0 0 auto;
}
.staff-card.selected .staff-card-action{background:var(--brand);border-color:var(--brand);color:#fff}
.staff-pill{
  font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:var(--brand-deep);background:var(--brand-soft);padding:6px 10px;border-radius:999px;
}
.summary-staff{
  margin-top:-2px;
  margin-bottom:18px;
  border:1px solid #dfe5e3;
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.summary-staff-label{font-size:11px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:6px}
.summary-staff-name{font-size:15px;font-weight:700;color:#111}
.mobile-staff{margin-top:4px;font-size:12px;color:var(--muted)}

@media (max-width:979px){
  .step-title{font-size:34px}
  .staff-card{padding:15px 14px;border-radius:18px;gap:12px}
  .staff-avatar-wrap{width:58px;height:58px}
  .staff-card-name{font-size:18px}
  .staff-card-action{min-width:88px;padding:10px 12px}
}



.availability-shell{
  display:grid;
  grid-template-columns:240px minmax(0,1fr);
  gap:18px;
  align-items:start;
}
.availability-days-panel,
.availability-times-panel{
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfb 100%);
  border:1px solid #dfe5e3;
  border-radius:24px;
  padding:16px;
  box-shadow:0 6px 16px rgba(63,73,72,.04);
}
.availability-tools{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;
}
.availability-tools-title{
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
}
.availability-tools-actions{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.calendar-nav-btn,
.calendar-picker-btn{
  border:1px solid #dbe2e0;
  background:#fff;
  color:#222;
  border-radius:12px;
  min-height:38px;
  padding:0 12px;
  font-weight:700;
  cursor:pointer;
}
.calendar-nav-btn{
  width:38px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}
.calendar-picker-btn:hover,
.calendar-nav-btn:hover{
  background:#f7f7f5;
  border-color:#cfd7d5;
}
.hidden-date-input{
  position:absolute;
  pointer-events:none;
  opacity:0;
  width:1px;
  height:1px;
}
.availability-month-label{
  font-size:14px;
  font-weight:700;
  color:#6b7674;
  margin-bottom:12px;
}
.availability-days{
  display:grid;
  gap:10px;
}
.availability-day-card{
  width:100%;
  border:1px solid #dfe5e3;
  background:#fff;
  border-radius:18px;
  padding:14px 14px 13px;
  text-align:left;
  cursor:pointer;
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.availability-day-card:hover{
  transform:translateY(-1px);
  border-color:#c9d3d1;
  box-shadow:0 10px 20px rgba(63,73,72,.06);
}
.availability-day-card.selected{
  border-color:#9eb0ac;
  background:linear-gradient(180deg,#f7faf9 0%,#eef4f2 100%);
  box-shadow:0 10px 20px rgba(149,166,162,.16);
}
.availability-day-top{
  display:flex;
  align-items:baseline;
  gap:8px;
  margin-bottom:4px;
}
.availability-day-dow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6f7b79;
}
.availability-day-date{
  font-size:20px;
  font-weight:800;
  color:#111;
}
.availability-day-month{
  display:block;
  font-size:13px;
  color:#6f7b79;
  margin-bottom:8px;
}
.availability-day-count{
  display:block;
  font-size:12px;
  color:var(--brand-deep);
}
.availability-times-head{
  margin-bottom:14px;
}
.availability-times-title{
  font-size:18px;
  font-weight:800;
  color:#111;
  margin-bottom:4px;
}
.availability-times-subtitle{
  font-size:13px;
  color:#6d7876;
}
.availability-groups{
  display:grid;
  gap:16px;
}
.time-group-title{
  margin:0 0 10px;
  font-size:18px;
  font-weight:800;
  color:#111;
}
.time-slot-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.time-slot-btn{
  border:1px solid #dfe5e3;
  background:#fff;
  color:#111;
  border-radius:16px;
  min-height:56px;
  padding:12px 14px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease, background .14s ease;
}
.time-slot-btn:hover{
  transform:translateY(-1px);
  border-color:#c9d3d1;
  box-shadow:0 8px 18px rgba(63,73,72,.08);
}
.time-slot-btn.selected{
  border-color:var(--brand);
  background:linear-gradient(180deg,#ffffff 0%, #f1f6f4 100%);
  box-shadow:0 10px 20px rgba(149,166,162,.16);
  color:#111;
}
.summary-time,
.summary-staff{
  margin-top:-2px;
  margin-bottom:18px;
  border:1px solid #dfe5e3;
  border-radius:16px;
  padding:12px;
  background:#fff;
}
.summary-selection-label{
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:6px;
}
.summary-selection-name{
  font-size:15px;
  font-weight:700;
  color:#111;
  line-height:1.35;
}

@media (max-width:979px){
  .availability-shell{
    grid-template-columns:1fr;
    gap:12px;
  }
  .availability-days-panel,
  .availability-times-panel{
    border-radius:18px;
    padding:14px;
  }
  .availability-days{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px;
  }
  .availability-day-card{
    position:relative;
    min-height:82px;
    padding:10px 8px 9px;
    text-align:center;
    border-radius:16px;
  }
  .availability-day-top{
    justify-content:center;
    gap:5px;
    margin-bottom:1px;
  }
  .availability-day-dow{font-size:10px}
  .availability-day-date{font-size:20px}
  .availability-day-month{
    font-size:11px;
    margin-bottom:5px;
  }
  .availability-day-count{
    font-size:11px;
    line-height:1.15;
  }
  .availability-day-card.selected{
    border-width:3px;
    border-color:var(--brand-deep);
    box-shadow:0 0 0 3px rgba(112,182,184,.22), 0 10px 20px rgba(75,146,149,.16);
    transform:translateY(-1px);
  }
  .availability-day-card.selected::after{
    content:"✓";
    position:absolute;
    top:-7px;
    right:-7px;
    width:22px;
    height:22px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--brand-deep);
    color:#fff;
    font-size:13px;
    font-weight:900;
    box-shadow:0 4px 10px rgba(75,146,149,.22);
  }
  .availability-times-head{margin-bottom:10px}
  .time-slot-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:380px){
  .availability-days{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}


.confirm-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:18px;
  align-items:start;
}
.confirm-card{
  background:linear-gradient(180deg,#ffffff 0%,#fbfcfb 100%);
  border:1px solid #dfe5e3;
  border-radius:24px;
  padding:20px;
  box-shadow:0 6px 16px rgba(63,73,72,.04);
}
.confirm-card-title{
  margin:0 0 16px;
  font-size:20px;
  font-weight:800;
  color:#111;
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.field{
  display:grid;
  gap:8px;
}
.field span{
  font-size:13px;
  font-weight:700;
  color:#55615f;
}
.field input,.field textarea{
  width:100%;
  border:1px solid #dfe5e3;
  background:#fff;
  border-radius:16px;
  padding:14px 15px;
  font-size:15px;
  color:#111;
  outline:none;
}
.field input:focus,.field textarea:focus{
  border-color:#bfcbca;
  box-shadow:0 0 0 3px rgba(149,166,162,.14);
}
.field-full{grid-column:1 / -1}
.deposit-summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid #ecefef;
  font-size:15px;
}
.deposit-summary-row strong{
  font-size:18px;
  color:#111;
}
.deposit-help{
  margin-top:14px;
  font-size:13px;
  line-height:1.55;
  color:#667271;
}
.pay-btn{
  width:100%;
  margin-top:16px;
  border:none;
  border-radius:999px;
  padding:15px 18px;
  font-weight:800;
  font-size:15px;
  background:#111;
  color:#fff;
  cursor:pointer;
}
.pay-btn[disabled]{opacity:.65;cursor:not-allowed}
.confirm-error{
  margin-top:14px;
  border-radius:14px;
  padding:12px 14px;
  font-size:14px;
}
.confirm-error.is-error{
  background:#fff1f1;
  border:1px solid #f0caca;
  color:#8b1f1f;
}
.confirm-error.is-success{
  background:#eff8f1;
  border:1px solid #cfe7d4;
  color:#1f6b31;
}
@media (max-width:979px){
  .confirm-shell{grid-template-columns:1fr}
  .form-grid{grid-template-columns:1fr}
}

.service-assignment-list{display:grid;gap:14px}
.service-assignment-card{display:grid;grid-template-columns:56px 1fr;gap:14px;align-items:flex-start;padding:16px 18px;border:1px solid #dfe5e3;border-radius:18px;background:#fff}
.service-assignment-order{display:flex;align-items:center;justify-content:center;border-radius:12px;background:var(--paper-2);border:1px solid #dbe2e0;padding:12px 8px;font-weight:800;color:#6a7573}
.service-assignment-name{font-size:20px;font-weight:700;color:#111;line-height:1.3}
.service-assignment-controls{display:grid;gap:8px;margin-top:8px}
.service-staff-select{width:100%;max-width:360px;padding:12px 14px;border-radius:12px;border:1px solid #dbe2e0;background:#fff;font:inherit}
.service-assignment-help{font-size:13px;color:#6d7876;line-height:1.4}
@media (max-width: 720px){
  .service-assignment-card{grid-template-columns:1fr}
  .service-assignment-order{justify-self:start;min-width:56px}
  .service-assignment-name{font-size:18px}
}

.availability-day-card.available{
  background:linear-gradient(180deg,#f3fbf6 0%,#e9f7ef 100%);
  border-color:#cfe7d6;
}
.availability-day-card.available:hover{
  border-color:#bddcc7;
  box-shadow:0 10px 20px rgba(98,158,119,.10);
}

.availability-day-card.closed{
  background:linear-gradient(180deg,#fff2f2 0%,#ffe1e1 100%);
  border-color:#e3a6ad;
}
.availability-day-card.closed:hover{
  border-color:#cf7b85;
  box-shadow:0 10px 20px rgba(176,42,55,.12);
}
.availability-day-card.closed .availability-day-count{
  color:#9f1f2d;
  font-weight:800;
}

.availability-day-card.unavailable{
  background:linear-gradient(180deg,#fff7f7 0%,#fdeaea 100%);
  border-color:#f1d0d4;
}
.availability-day-card.unavailable:hover{
  border-color:#e8bfc5;
  box-shadow:0 10px 20px rgba(176,42,55,.08);
}
.availability-day-card.unavailable .availability-day-count{
  color:#b02a37;
  font-weight:700;
}
.availability-day-card.available .availability-day-count{
  color:#567a62;
  font-weight:700;
}
.availability-day-card.selected{
  border-width:2px;
}


.guest-checkout-note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background:#f7f7f5;
  border:1px solid #e2e7e5;
  color:#5e6766;
  font-size:14px;
  line-height:1.45;
}
.policy-card{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  background:#fafaf8;
  border:1px solid #e2e7e5;
}
.policy-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.policy-card-title{
  font-size:14px;
  font-weight:800;
  color:#3f4948;
}
.policy-toggle-btn{
  border:1px solid #d8dfdd;
  background:#fff;
  color:#3f4948;
  border-radius:999px;
  padding:9px 14px;
  font-weight:700;
  cursor:pointer;
}
.policy-toggle-btn:hover{
  background:#f7f7f5;
}
.policy-copy{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  background:#fff;
  border:1px solid #ecefed;
  color:#5e6766;
  font-size:14px;
  line-height:1.55;
}
.policy-agree{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:12px;
  color:#3f4948;
  font-size:14px;
  line-height:1.5;
}
.policy-agree input{
  margin-top:3px;
  width:18px;
  height:18px;
  accent-color:#708582;
  flex:0 0 auto;
}

/* Ember Hair Co. visual alignment overrides */
.ob-header{
  background:linear-gradient(90deg,#fde2e8 0%,#fff1f4 58%,#fffafa 100%);
  border:1px solid rgba(243,197,207,.86);
  border-radius:26px;
  padding:18px 20px;
  margin-bottom:20px;
  box-shadow:0 16px 38px rgba(116,82,92,.07);
}
.icon-btn,.ghost-btn,.scroll-btn,.step-back-btn,.calendar-nav-btn,.calendar-picker-btn,.policy-toggle-btn,.remove-btn{
  border-color:rgba(112,182,184,.28);
  color:var(--brand-deep);
}
.icon-btn,.ghost-btn{
  background:rgba(255,255,255,.88);
}
.icon-btn:hover,.ghost-btn:hover,.scroll-btn:hover,.step-back-btn:hover,.calendar-picker-btn:hover,.calendar-nav-btn:hover,.policy-toggle-btn:hover{
  background:#fffafb;
  border-color:rgba(112,182,184,.46);
}
.brand-mark,.summary-mark{
  border-color:rgba(233,189,200,.78);
  background:#fff;
  box-shadow:0 8px 18px rgba(112,182,184,.10);
}
.brand-name{
  color:#243f40;
  font-weight:500;
  letter-spacing:.01em;
}
.brand-steps,.categories-title,.step-eyebrow,.availability-tools-title,.summary-selection-label,.summary-staff-label,.mobile-count{
  color:var(--brand-deep);
}
.category-tab{
  background:#ffffff;
  border-color:rgba(112,182,184,.24);
  color:#4c8587;
}
.category-tab:hover{
  background:#fffafb;
  border-color:rgba(112,182,184,.42);
}
.category-tab.active{
  background:linear-gradient(180deg,#80c3c4 0%,#68afb1 100%);
  border-color:#68afb1;
  color:#fff;
  box-shadow:0 12px 24px rgba(112,182,184,.28);
}
.search-input,.field input,.field textarea,.service-staff-select{
  border-color:rgba(241,203,211,.78);
  background:#ffffff;
}
.search-input:focus,.field input:focus,.field textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(112,182,184,.16);
}
.active-category,.service-price,.availability-day-count{
  color:var(--brand-deep);
}
.service-card,.staff-card,.availability-days-panel,.availability-times-panel,.confirm-card,.summary-card,.mobile-bar-inner,.summary-item,.service-assignment-card{
  border-color:rgba(241,203,211,.72);
  background:#ffffff;
  box-shadow:0 12px 28px rgba(116,82,92,.055);
}
.service-card:hover,.staff-card:hover,.availability-day-card:hover,.time-slot-btn:hover{
  border-color:rgba(112,182,184,.42);
  box-shadow:0 16px 34px rgba(116,82,92,.11);
}
.service-name,.staff-card-name,.availability-day-date,.availability-times-title,.time-group-title,.confirm-card-title,.summary-name,.summary-total-row,.mobile-total,.service-assignment-name,.step-title{
  color:#244344;
}
.step-title{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:500;
  letter-spacing:-.015em;
}
.service-desc,.step-copy,.availability-times-subtitle,.staff-card-subtitle,.deposit-help,.guest-checkout-note,.policy-copy{
  color:#6f7e7e;
}
.add-btn,.continue-btn,.staff-card.selected .staff-card-action,.pay-btn{
  background:linear-gradient(180deg,#7dc0c1 0%,#65abad 100%);
  color:#fff;
  box-shadow:0 12px 24px rgba(112,182,184,.27);
}
.add-btn:hover,.continue-btn:hover:not([disabled]),.pay-btn:hover:not([disabled]){
  background:linear-gradient(180deg,#6fb7b9 0%,#579fa1 100%);
}
.add-btn.added{
  background:linear-gradient(180deg,#e8b8c4 0%,#d99aaa 100%);
}
.summary-total-row{
  border-top-color:rgba(241,203,211,.78);
}
.mobile-bar{
  background:linear-gradient(180deg,rgba(251,248,247,0) 0%,rgba(251,248,247,.96) 45%,rgba(251,248,247,1) 100%);
}
.state-card,.guest-checkout-note,.policy-card{
  background:#fffafb;
  border-color:rgba(241,203,211,.72);
}
.policy-agree input{
  accent-color:var(--brand);
}
.availability-day-card,.time-slot-btn{
  border-color:rgba(241,203,211,.72);
  background:#fff;
}
.availability-day-card.selected,.time-slot-btn.selected,.staff-card.selected{
  border-color:var(--brand);
  background:linear-gradient(180deg,#ffffff 0%,#eefafa 100%);
  box-shadow:0 14px 30px rgba(112,182,184,.18);
}
.availability-day-card.available{
  background:linear-gradient(180deg,#f2fbfb 0%,#e5f7f7 100%);
  border-color:rgba(112,182,184,.40);
}
.service-count{
  color:#82a7a7;
}
@media (min-width:980px){
  .page{padding-top:34px}
}
@media (max-width:979px){
  .ob-header{border-radius:22px;padding:15px 14px}
}


/* v22 mobile refinements: minimal header and category-row actions */
@media (max-width:560px){
  .top-site-link-wrap{
    margin:-2px 2px 5px;
    justify-content:flex-end;
  }

  .top-site-link{
    font-size:11px;
    line-height:1;
    text-decoration:underline;
    text-underline-offset:2px;
  }

  .ob-header{
    padding:9px 12px;
    border-radius:18px;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
  }

  .ob-header-left{
    gap:9px;
    min-width:0;
    align-items:center;
  }

  .icon-btn{
    width:32px;
    height:32px;
    min-width:32px;
    font-size:17px;
  }

  .brand{
    gap:8px;
    min-width:0;
  }

  .brand-mark{
    width:32px;
    height:32px;
    min-width:32px;
  }

  .brand-name{
    font-size:17px;
    line-height:1.08;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .brand-steps{
    font-size:8.5px;
    letter-spacing:.12em;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .categories-head{
    margin-bottom:5px;
  }

  .category-clear-btn{
    min-height:26px;
    padding:4px 10px;
    font-size:11px;
  }

  .category-tabs{
    position:relative;
    border-bottom:1px solid rgba(112,182,184,.18);
    box-shadow:inset 0 -15px 13px -18px rgba(36,63,64,.75);
  }

  .category-more-btn{
    margin:5px 0 0;
    padding:3px 9px;
    border:1px solid rgba(112,182,184,.32);
    border-radius:999px;
    background:rgba(255,250,251,.97);
    color:var(--brand-deep);
    font-size:8.5px;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
    box-shadow:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .category-more-btn.hidden{
    display:none;
  }
}

/* v22: move website link above header and place Clear beside Categories */
.top-site-link-wrap{
  display:flex;
  justify-content:flex-end;
  margin:0 0 8px;
}
.top-site-link{
  color:var(--brand-deep);
  font-size:13px;
  font-weight:700;
  text-decoration:none;
}
.top-site-link:hover{
  text-decoration:underline;
  text-underline-offset:2px;
}
.categories-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.categories-head-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.category-clear-btn{
  border:1px solid rgba(112,182,184,.30);
  background:#fff;
  color:var(--brand-deep);
  border-radius:999px;
  padding:6px 12px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}
.category-clear-btn:hover{
  border-color:rgba(112,182,184,.52);
  background:#fffafb;
}


/* v23: remove "more categories" button and use a clearer visible scrollbar instead */
.category-more-btn{
  display:none !important;
}

@media (max-width:560px){
  .category-tabs{
    overflow-y:scroll;
    scrollbar-width:auto;
    scrollbar-color:var(--brand-deep) rgba(112,182,184,.16);
    scrollbar-gutter:stable;
    padding-right:6px;
  }

  .category-tabs::-webkit-scrollbar{
    display:block;
    width:10px;
  }

  .category-tabs::-webkit-scrollbar-track{
    background:rgba(112,182,184,.14);
    border-radius:999px;
  }

  .category-tabs::-webkit-scrollbar-thumb{
    background:var(--brand-deep);
    border-radius:999px;
    border:2px solid rgba(255,255,255,.8);
  }

  .category-tabs::-webkit-scrollbar-thumb:hover{
    background:var(--ink);
  }
}

@media (max-width:390px){
  .category-tabs{
    overflow-y:scroll;
    scrollbar-width:auto;
    padding-right:6px;
  }

  .category-tabs::-webkit-scrollbar{
    width:10px;
  }
}


/* v24: make the category vertical scrollbar much more obvious */
@media (max-width:560px){
  .category-tabs{
    padding-right:12px;
    border-right:2px solid rgba(112,182,184,.30);
    box-shadow:
      inset -12px 0 0 rgba(112,182,184,.12),
      inset 0 -15px 13px -18px rgba(36,63,64,.75);
  }

  .category-tabs::-webkit-scrollbar{
    width:14px;
  }

  .category-tabs::-webkit-scrollbar-track{
    background:rgba(112,182,184,.24);
    border-radius:999px;
    border:1px solid rgba(112,182,184,.18);
  }

  .category-tabs::-webkit-scrollbar-thumb{
    background:#4f8f93;
    border-radius:999px;
    border:2px solid rgba(255,255,255,.9);
  }

  .category-tabs::-webkit-scrollbar-thumb:hover{
    background:#3f7b80;
  }
}

@media (max-width:390px){
  .category-tabs{
    padding-right:12px;
    border-right:2px solid rgba(112,182,184,.30);
    box-shadow:
      inset -12px 0 0 rgba(112,182,184,.12),
      inset 0 -15px 13px -18px rgba(36,63,64,.75);
  }

  .category-tabs::-webkit-scrollbar{
    width:14px;
  }
}


/* v25: show confirm-form validation beside the field that needs fixing */
.field-error{
  display:block;
  margin-top:6px;
  color:#a31515;
  font-size:12px;
  font-weight:700;
  line-height:1.3;
}
.field-error.hidden{
  display:none;
}
.field.has-error input,
.field.has-error textarea{
  border-color:#df9a9a !important;
  box-shadow:0 0 0 4px rgba(198,47,47,.10) !important;
}
@media (max-width:560px){
  .field-error{
    font-size:11.5px;
    margin-top:5px;
  }
}


/* Ember Hair Co. v389: warmer boutique salon finish */
:root{
  --bg:#fbf6f1;
  --paper:#ffffff;
  --paper-2:#fffaf5;
  --ink:#2f2621;
  --ink-soft:#6b5b52;
  --muted:#9a877d;
  --line:#ead8cc;
  --brand:#b8754b;
  --brand-strong:#a6623f;
  --brand-deep:#6e3f27;
  --brand-soft:#f6e6d9;
  --blush:#f1d9c8;
  --blush-soft:#fff8f3;
  --blush-deep:#d9b091;
  --accent:#b8754b;
  --shadow:0 20px 48px rgba(89,53,31,.12);
}
html,body{
  background:
    radial-gradient(circle at 8% -4%, rgba(184,117,75,.20) 0, rgba(184,117,75,0) 28%),
    radial-gradient(circle at 95% 3%, rgba(241,217,200,.72) 0, rgba(241,217,200,0) 25%),
    linear-gradient(180deg,#fffaf5 0%,#fbf6f1 54%,#ffffff 100%);
  color:var(--ink);
}
.ob-header{
  background:linear-gradient(115deg,#fff7ef 0%,#f4dfcf 56%,#fffaf5 100%);
  border-color:rgba(184,117,75,.22);
  box-shadow:0 18px 42px rgba(89,53,31,.10);
}
.brand-mark,.summary-mark{
  border-radius:20px;
  border-color:rgba(184,117,75,.28);
  box-shadow:0 10px 24px rgba(89,53,31,.10);
}
.brand-name,.step-title{
  color:#2a201b;
}
.brand-name{
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:.015em;
}
.hero-card{
  margin:0 0 18px;
  padding:28px 30px;
  border:1px solid rgba(184,117,75,.22);
  border-radius:30px;
  background:
    linear-gradient(135deg,rgba(255,255,255,.92) 0%,rgba(255,247,239,.94) 58%,rgba(246,230,217,.86) 100%);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card::after{
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  right:-90px;
  top:-105px;
  border-radius:50%;
  background:rgba(184,117,75,.13);
}
.hero-eyebrow{
  font-size:11px;
  font-weight:900;
  letter-spacing:.20em;
  text-transform:uppercase;
  color:var(--brand-deep);
  margin-bottom:10px;
}
.hero-card h1{
  margin:0 0 10px;
  max-width:680px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:48px;
  line-height:1.02;
  font-weight:500;
  color:#2a201b;
  letter-spacing:-.02em;
}
.hero-card p{
  margin:0;
  max-width:640px;
  color:#6b5b52;
  font-size:16px;
  line-height:1.58;
}
.hero-note{
  display:inline-flex;
  margin-top:18px;
  padding:9px 14px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid rgba(184,117,75,.24);
  color:var(--brand-deep);
  font-size:13px;
  font-weight:800;
}
.category-tab,
.icon-btn,.ghost-btn,.scroll-btn,.step-back-btn,.calendar-nav-btn,.calendar-picker-btn,.policy-toggle-btn,.remove-btn,.category-clear-btn{
  border-color:rgba(184,117,75,.24);
  color:var(--brand-deep);
}
.category-tab.active,
.add-btn,.continue-btn,.staff-card.selected .staff-card-action,.pay-btn{
  background:linear-gradient(180deg,#bd7b50 0%,#9f5f3d 100%);
  border-color:#9f5f3d;
  color:#fff;
  box-shadow:0 14px 28px rgba(159,95,61,.24);
}
.add-btn:hover,.continue-btn:hover:not([disabled]),.pay-btn:hover:not([disabled]){
  background:linear-gradient(180deg,#ad6d47 0%,#8f5235 100%);
}
.add-btn.added{
  background:linear-gradient(180deg,#4f3a2e 0%,#33251f 100%);
}
.service-card,.staff-card,.availability-days-panel,.availability-times-panel,.confirm-card,.summary-card,.mobile-bar-inner,.summary-item,.service-assignment-card{
  border-color:rgba(184,117,75,.20);
  box-shadow:0 14px 30px rgba(89,53,31,.07);
}
.service-card:hover,.staff-card:hover,.availability-day-card:hover,.time-slot-btn:hover{
  border-color:rgba(184,117,75,.36);
  box-shadow:0 18px 38px rgba(89,53,31,.12);
}
.service-name,.staff-card-name,.availability-day-date,.availability-times-title,.time-group-title,.confirm-card-title,.summary-name,.summary-total-row,.mobile-total,.service-assignment-name{
  color:#2f2621;
}
.service-price,.active-category,.brand-steps,.categories-title,.step-eyebrow,.availability-tools-title,.summary-selection-label,.summary-staff-label,.mobile-count,.top-site-link{
  color:var(--brand-deep);
}
.search-input,.field input,.field textarea,.service-staff-select{
  border-color:rgba(184,117,75,.22);
}
.search-input:focus,.field input:focus,.field textarea:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(184,117,75,.14);
}
.staff-avatar-wrap{
  background:#fff5ed;
  border-color:rgba(184,117,75,.25);
}
.staff-avatar-fallback,.staff-pill{
  color:var(--brand-deep);
}
.staff-pill{
  background:#fff1e7;
}
.availability-day-card.available{
  background:linear-gradient(180deg,#fff8f0 0%,#f7eadf 100%);
  border-color:rgba(184,117,75,.32);
}
.availability-day-card.available .availability-day-count{
  color:#7c482e;
}
.availability-day-card.selected,.time-slot-btn.selected,.staff-card.selected{
  border-color:var(--brand);
  background:linear-gradient(180deg,#ffffff 0%,#fff1e7 100%);
  box-shadow:0 14px 30px rgba(184,117,75,.18);
}
.policy-agree input{accent-color:var(--brand)}
.mobile-bar{
  background:linear-gradient(180deg,rgba(251,246,241,0) 0%,rgba(251,246,241,.96) 45%,rgba(251,246,241,1) 100%);
}
@media (max-width:560px){
  .hero-card{padding:22px 18px;border-radius:24px;margin-bottom:14px}
  .hero-card h1{font-size:34px}
  .hero-card p{font-size:14px}
  .brand-mark{border-radius:14px}
  .category-tabs{border-right-color:rgba(184,117,75,.30);box-shadow:inset -12px 0 0 rgba(184,117,75,.10), inset 0 -15px 13px -18px rgba(47,38,33,.55)}
  .category-tabs::-webkit-scrollbar-track{background:rgba(184,117,75,.18)}
  .category-tabs::-webkit-scrollbar-thumb{background:#8f5235}
}

/* Ember Hair Co. v38902: mini-site front page with booking built in */
:root{
  --bg:#fff8f1;
  --paper:#ffffff;
  --paper-2:#fffaf5;
  --ink:#2b211c;
  --ink-soft:#6d5a50;
  --muted:#9c887c;
  --line:#ead7c8;
  --brand:#ff7a1a;
  --brand-strong:#d96a24;
  --brand-deep:#723716;
  --brand-soft:#fff0e3;
  --blush:#f4dccb;
  --blush-soft:#fff7ef;
  --blush-deep:#d5a886;
  --accent:#ff7a1a;
  --shadow:0 22px 50px rgba(92,49,22,.12);
}
html,body{
  background:
    radial-gradient(circle at 10% -6%, rgba(255,122,26,.12) 0, rgba(255,122,26,0) 30%),
    radial-gradient(circle at 92% 8%, rgba(244,220,203,.72) 0, rgba(244,220,203,0) 28%),
    linear-gradient(180deg,#fffaf5 0%,#fff8f1 58%,#ffffff 100%);
}
.container{max-width:1180px}
.mini-site-header{
  position:sticky;
  top:12px;
  z-index:20;
  padding:16px 20px;
  margin-bottom:20px;
  border-radius:28px;
  border:1px solid rgba(255,122,26,.16);
  background:rgba(255,250,245,.92);
  backdrop-filter:blur(16px);
  box-shadow:0 16px 38px rgba(92,49,22,.10);
}
.mini-nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.mini-nav a{
  text-decoration:none;
  color:var(--brand-deep);
  font-size:13px;
  font-weight:800;
  padding:10px 13px;
  border-radius:999px;
}
.mini-nav a:hover{background:#fff0e3}
.mini-nav .nav-book{
  background:linear-gradient(180deg,#ff8a2e 0%,#d9651f 100%);
  color:#fff;
  box-shadow:0 12px 22px rgba(217,101,31,.22);
}
.brand-mark,.summary-mark{
  border-radius:50%;
  border-color:rgba(255,122,26,.20);
}
.brand-name{
  font-size:27px;
  color:#2b211c;
}
.brand-steps{color:#7a3714}
.mini-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:24px;
  align-items:stretch;
  margin-bottom:26px;
}
.mini-hero-copy,
.mini-hero-card,
.mini-section,
.booking-section{
  border:1px solid rgba(255,122,26,.16);
  background:rgba(255,255,255,.86);
  box-shadow:var(--shadow);
}
.mini-hero-copy{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:44px 46px;
  background:
    radial-gradient(circle at 96% 6%, rgba(255,122,26,.16) 0, rgba(255,122,26,0) 24%),
    linear-gradient(135deg,#ffffff 0%,#fff7ef 60%,#fff0e3 100%);
}
.mini-hero-copy::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  right:-125px;
  bottom:-150px;
  border-radius:50%;
  background:rgba(255,122,26,.10);
}
.mini-eyebrow{
  color:#7a3714;
  font-size:11px;
  font-weight:950;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.mini-hero h1,
.mini-section h2,
.booking-section-head h2{
  font-family:Georgia,"Times New Roman",serif;
  color:#261b16;
  font-weight:500;
  letter-spacing:-.025em;
}
.mini-hero h1{
  margin:0 0 14px;
  max-width:760px;
  font-size:58px;
  line-height:.98;
}
.mini-hero p,
.mini-section-head p,
.booking-section-head p{
  color:#6d5a50;
  line-height:1.6;
  font-size:16px;
}
.mini-hero p{max-width:670px;margin:0}
.mini-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.mini-primary-btn,.mini-secondary-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 20px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
}
.mini-primary-btn{
  background:linear-gradient(180deg,#ff8a2e 0%,#d9651f 100%);
  color:#fff;
  box-shadow:0 14px 28px rgba(217,101,31,.22);
}
.mini-secondary-btn{
  background:#fff;
  color:#7a3714;
  border:1px solid rgba(255,122,26,.22);
}
.mini-note{
  display:inline-flex;
  margin-top:18px;
  padding:8px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(255,122,26,.18);
  color:#7a3714;
  font-size:13px;
  font-weight:800;
}
.mini-hero-card{
  border-radius:34px;
  padding:30px;
  background:linear-gradient(180deg,#ffffff 0%,#fff7ef 100%);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}
.mini-logo-wrap{
  width:92px;
  height:92px;
  border-radius:50%;
  border:1px solid rgba(255,122,26,.18);
  background:#fff;
  box-shadow:0 15px 28px rgba(92,49,22,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#ff7a1a;
  font-weight:950;
  letter-spacing:.08em;
}
.mini-hero-logo{width:100%;height:100%;object-fit:contain;background:#fff}
.mini-hero-card h2{margin:20px 0 8px;color:#261b16;font-size:24px}
.mini-hero-card p{margin:0 0 14px;color:#6d5a50;line-height:1.5}
.mini-hero-card a{color:#7a3714;font-weight:900;text-decoration:none}
.mini-section{
  border-radius:30px;
  padding:30px;
  margin-bottom:24px;
  background:rgba(255,255,255,.82);
}
.mini-section-head{max-width:720px;margin-bottom:18px}
.mini-section h2,.booking-section-head h2{font-size:36px;line-height:1.05;margin:0 0 8px}
.mini-section-head p,.booking-section-head p{margin:0}
.mini-card-grid,.mini-team-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.mini-info-card,.mini-team-card{
  border:1px solid rgba(255,122,26,.14);
  background:linear-gradient(180deg,#ffffff 0%,#fffaf5 100%);
  border-radius:24px;
  padding:22px;
}
.mini-info-card h3,.mini-team-card h3{margin:0 0 8px;color:#261b16;font-size:20px}
.mini-info-card p,.mini-team-card p{margin:0;color:#6d5a50;line-height:1.55;font-size:14px}
.team-initials{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#fff0e3;
  color:#7a3714;
  border:1px solid rgba(255,122,26,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  margin-bottom:14px;
}
.mini-team-card a{
  display:inline-flex;
  margin-top:14px;
  color:#7a3714;
  font-weight:900;
  text-decoration:none;
}
.booking-section{
  border-radius:34px;
  padding:28px;
  margin-bottom:24px;
  background:rgba(255,255,255,.78);
}
.booking-section-head{max-width:780px;margin:0 0 20px}
.compact-booking-intro{
  padding:24px 26px;
  border-radius:26px;
  background:linear-gradient(135deg,#ffffff 0%,#fff7ef 100%);
}
.compact-booking-intro h1{font-size:38px}
.category-tab.active,
.add-btn,.continue-btn,.staff-card.selected .staff-card-action,.pay-btn,
.mini-primary-btn,.mini-nav .nav-book{
  background:linear-gradient(180deg,#ff8a2e 0%,#d9651f 100%);
  border-color:#d9651f;
}
.add-btn:hover,.continue-btn:hover:not([disabled]),.pay-btn:hover:not([disabled]),.mini-primary-btn:hover{
  background:linear-gradient(180deg,#f07d24 0%,#bf5518 100%);
}
.summary-card{background:linear-gradient(180deg,#ffffff 0%,#fff7ef 100%)}
@media (max-width:979px){
  .mini-site-header{position:relative;top:auto}
  .mini-hero{grid-template-columns:1fr}
  .mini-hero-card{display:none}
  .mini-card-grid,.mini-team-grid{grid-template-columns:1fr}
  .booking-section{padding:18px;border-radius:26px}
}
@media (max-width:620px){
  .page{padding:10px 10px 20px}
  .mini-site-header{padding:13px 14px;border-radius:22px;margin-bottom:14px}
  .ob-header-left{width:100%}
  .mini-nav{width:100%;justify-content:flex-start;gap:4px;margin-top:6px}
  .mini-nav a{font-size:12px;padding:8px 10px}
  .brand-name{font-size:23px}
  .brand-steps{font-size:9px;letter-spacing:.12em}
  .mini-hero-copy{padding:30px 22px;border-radius:28px}
  .mini-hero h1{font-size:40px;line-height:1.02}
  .mini-hero p,.mini-section-head p,.booking-section-head p{font-size:14px}
  .mini-section{padding:22px 18px;border-radius:24px}
  .mini-section h2,.booking-section-head h2{font-size:31px}
  .compact-booking-intro h1{font-size:32px}
}

/* Ember mini-site location and hours */
.mini-location-section {
  scroll-margin-top: 24px;
}

.mini-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 18px;
}

.mini-location-card {
  background: rgba(255, 250, 246, .96);
  border: 1px solid rgba(136, 75, 39, .12);
  border-radius: 26px;
  box-shadow: 0 20px 45px rgba(83, 45, 27, .08);
  padding: 28px;
}

.mini-location-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #20120d;
}

.mini-location-card p {
  margin: 0 0 18px;
  color: #6d5144;
  line-height: 1.6;
}

.mini-contact-links,
.mini-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.mini-contact-links a,
.mini-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  color: #7a3515;
  background: #fff;
  border: 1px solid rgba(185, 106, 60, .18);
}

.mini-contact-links a:hover,
.mini-social-links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(185, 106, 60, .12);
}

.mini-hours-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.mini-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(136, 75, 39, .12);
  color: #6d5144;
}

.mini-hours-row:last-child {
  border-bottom: 0;
}

.mini-hours-row span {
  font-weight: 800;
  color: #2c1910;
}

.mini-hours-row strong {
  font-weight: 900;
  color: #9a4c25;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .mini-location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .mini-location-card {
    padding: 22px;
    border-radius: 22px;
  }

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

/* Ember v3: keep sticky header from covering anchor sections */
#about,
#services,
#team,
#location-hours,
#book-online {
  scroll-margin-top: 118px;
}

@media (max-width: 979px) {
  #about,
  #services,
  #team,
  #location-hours,
  #book-online {
    scroll-margin-top: 24px;
  }
}


/* Ember v4: proper mini-site pages */
.brand-link { text-decoration: none; color: inherit; }
.mini-nav a.active { color: #ff7417; }
.mini-nav a.active:not(.nav-book) { background: rgba(255, 116, 23, .08); border-radius: 999px; }
.site-page .container { padding-bottom: 80px; }
.page-intro-section { padding: 46px 48px; }
.page-intro-section h1 { margin: 0 0 14px; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(38px, 5vw, 68px); line-height: .94; letter-spacing: -2.4px; color: #24130d; max-width: 820px; }
.page-intro-section p { max-width: 780px; color: #6d5144; font-size: 17px; line-height: 1.7; }
.mini-link-card { text-decoration: none; color: inherit; transition: transform .18s ease, box-shadow .18s ease; }
.mini-link-card:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(185, 106, 60, .12); }
.services-page-grid, .team-page-grid { margin-top: 0; }
.page-cta-row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.site-page-book .booking-section { margin-top: 22px; }
.site-page-book .mobile-bar { display: block; }
@media (max-width: 979px) {
  .page-intro-section { padding: 32px 24px; }
  .page-intro-section h1 { font-size: clamp(34px, 10vw, 52px); }
  .mini-site-header { position: relative; top: auto; }
}


.team-profile-card {
  align-items: flex-start;
}
.team-photo {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(117, 61, 28, .16);
  margin-bottom: 14px;
}
.team-role {
  margin-bottom: 10px;
  color: var(--muted);
  font-style: italic;
}
.team-bio {
  margin-top: 6px;
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.62;
}


/* Ember v7: cleaner location contact table */
.mini-contact-card h3,
.mini-hours-card h3 {
  margin-bottom: 18px;
}

.mini-contact-table {
  display: grid;
  gap: 12px;
}

.mini-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(185, 106, 60, .14);
  border-radius: 18px;
  background: #fff;
}

.mini-contact-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.mini-contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 116, 23, .1);
  color: #c65f1d;
  font-size: 20px;
  font-weight: 800;
}

.mini-contact-icon-social {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  line-height: 1;
}

.mini-contact-copy {
  min-width: 0;
}

.mini-contact-label {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9b7d6d;
}

.mini-contact-copy strong {
  display: block;
  color: #2c1910;
  font-size: 15px;
  line-height: 1.45;
  word-break: break-word;
}

.mini-contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 800;
  font-size: 13px;
  color: #7a3515;
  background: #fff7f0;
  border: 1px solid rgba(185, 106, 60, .22);
}

.mini-contact-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(185, 106, 60, .12);
}

@media (max-width: 680px) {
  .mini-contact-row {
    flex-direction: column;
    align-items: stretch;
  }

  .mini-contact-action {
    width: 100%;
  }
}


/* Ember v8: simpler image-first home page */
.mini-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 22px;
  margin-bottom: 22px;
  align-items: stretch;
}

.mini-home-hero-image {
  min-height: 430px;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 54px rgba(83, 45, 27, .10);
}

.mini-home-hero-panel {
  background: rgba(255, 250, 246, .98);
  border: 1px solid rgba(136, 75, 39, .12);
  border-radius: 34px;
  padding: 36px 34px;
  box-shadow: 0 24px 54px rgba(83, 45, 27, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-home-hero-panel h1 {
  margin: 0 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: .98;
  letter-spacing: -1.6px;
  color: #24130d;
}

.mini-home-hero-panel p {
  margin: 0 0 22px;
  color: #6d5144;
  font-size: 17px;
  line-height: 1.65;
}

.mini-home-links-section {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mini-home-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 979px) {
  .mini-home-hero {
    grid-template-columns: 1fr;
  }

  .mini-home-hero-image {
    min-height: 320px;
  }

  .mini-home-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .mini-home-hero-panel {
    padding: 28px 22px;
    border-radius: 26px;
  }

  .mini-home-hero-image {
    min-height: 240px;
    border-radius: 26px;
  }

  .mini-home-hero-panel h1 {
    font-size: clamp(30px, 9vw, 40px);
  }
}

/* Ember v10: company setup wording on simplified home page */
.mini-home-about {
  margin-bottom: 22px;
  padding: 30px 34px;
}

.mini-home-about-copy h2 {
  margin-bottom: 12px;
}

.mini-home-about-copy p {
  max-width: 850px;
  margin-bottom: 10px;
}

@media (max-width: 620px) {
  .mini-home-about {
    padding: 24px 20px;
  }
}


/* Ember v12: make location eyebrow stronger and hero heading quieter */
.mini-home-hero-panel .mini-eyebrow {
  font-size: 14px;
  letter-spacing: .18em;
  color: #9b4f22;
  margin-bottom: 14px;
}

.mini-home-hero-panel h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.02;
  letter-spacing: -1.2px;
}

@media (max-width: 620px) {
  .mini-home-hero-panel .mini-eyebrow {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .mini-home-hero-panel h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
}

/* Ember online booking fixes: active book button text + customer auth modal */
.mini-nav a.nav-book,
.mini-nav a.nav-book.active,
.mini-nav .nav-book.active {
  color: #fff !important;
}
.header-login-btn{
  border:1px solid rgba(255,122,26,.22);
  background:#fffaf5;
  color:var(--brand-deep);
  font-size:13px;
  font-weight:800;
  padding:10px 13px;
  border-radius:999px;
  cursor:pointer;
}
.header-login-btn:hover{background:#fff0e3}
.auth-modal-open{overflow:hidden}
.auth-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:22px}
.auth-modal.hidden{display:none}
.auth-modal-backdrop{position:absolute;inset:0;background:rgba(36,19,13,.46);backdrop-filter:blur(5px)}
.auth-modal-panel{position:relative;width:min(520px,96vw);max-height:92vh;overflow:auto;background:#fff;border-radius:26px;border:1px solid rgba(255,122,26,.18);box-shadow:0 30px 80px rgba(36,19,13,.24);padding:26px}
.auth-modal-close{position:absolute;right:18px;top:16px;width:38px;height:38px;border:0;border-radius:50%;background:#fff3e8;color:var(--brand-deep);font-size:24px;line-height:1;cursor:pointer}
.auth-modal-head{padding-right:44px;margin-bottom:16px}
.auth-copy{margin:4px 0 0;color:var(--muted);line-height:1.5}
.auth-tabs{display:flex;gap:8px;padding:5px;background:#fff5ec;border-radius:999px;margin:0 0 18px}
.auth-tab{flex:1;border:0;border-radius:999px;background:transparent;padding:11px 14px;font-weight:900;color:var(--brand-deep);cursor:pointer}
.auth-tab.is-active,.auth-submit-btn{background:linear-gradient(180deg,#ff8a2e 0%,#d9651f 100%);color:#fff;box-shadow:0 10px 20px rgba(217,101,31,.18)}
.auth-form-grid{margin-bottom:12px}
.auth-submit-btn{width:100%;border:0;border-radius:999px;padding:13px 18px;font-weight:900;cursor:pointer}
.auth-submit-btn:disabled{opacity:.65;cursor:wait}
.auth-forgot-row{text-align:right;margin:-4px 0 12px}
.auth-forgot-btn,.auth-back-login{border:0;background:transparent;color:#d9651f;font-weight:800;cursor:pointer}
.auth-back-login{display:block;margin:12px auto 0}
@media (max-width:979px){
  .header-login-btn{font-size:12px;padding:8px 10px}
  .auth-modal{align-items:flex-end;padding:10px}
  .auth-modal-panel{border-radius:22px;padding:22px}
}


/* Ember mini-site auth/nav polish v2 */
.mini-nav .nav-book,
.mini-nav .nav-book:visited,
.mini-nav .nav-book.active,
.mini-nav a.nav-book,
.mini-nav a.nav-book:visited,
.mini-nav a.nav-book.active {
  color:#fff !important;
}
.mini-nav .mini-auth-btn{
  appearance:none;
  border:1px solid rgba(122,55,20,.18);
  background:#fffaf5;
  color:var(--brand-deep);
  font-size:13px;
  font-weight:800;
  line-height:1;
  padding:10px 13px;
  border-radius:999px;
  cursor:pointer;
  font-family:inherit;
  box-shadow:none;
}
.mini-nav .mini-auth-btn:hover{
  background:#fff0e3;
}
.mini-nav .mini-auth-btn.is-logged-in{
  background:rgba(255,116,23,.10);
  border-color:rgba(255,116,23,.28);
}
@media(max-width:760px){
  .mini-nav .mini-auth-btn{font-size:12px;padding:8px 10px;}
}

/* Logged-in customer booking helpers */
.customer-portal-panel{
  max-width:1120px;
  margin:0 auto 18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:18px;
}
.customer-portal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.customer-portal-eyebrow{
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:4px;
}
.customer-portal-head h3{
  margin:0;
  font-size:22px;
  color:var(--ink);
}
.customer-portal-logout{
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink-soft);
  border-radius:999px;
  padding:9px 14px;
  cursor:pointer;
  font-weight:700;
}
.customer-portal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.customer-portal-card{
  background:var(--blush-soft);
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
}
.customer-portal-card-title{
  font-size:13px;
  font-weight:800;
  color:var(--ink);
  margin-bottom:10px;
}
.customer-booking-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.customer-booking-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:#fff;
  border:1px solid #f0dfe4;
  border-radius:16px;
  padding:12px;
}
.customer-booking-main{
  min-width:0;
}
.customer-booking-date{
  font-weight:800;
  color:var(--ink);
  font-size:14px;
}
.customer-booking-services{
  margin-top:4px;
  color:var(--ink-soft);
  font-size:13px;
  line-height:1.35;
}
.customer-booking-meta,.customer-booking-status,.customer-booking-muted{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
}
.customer-rebook-btn{
  border:0;
  background:var(--brand);
  color:#fff;
  border-radius:999px;
  padding:9px 14px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}
.customer-rebook-btn:hover{
  background:var(--brand-strong);
}

@media (max-width:760px){
  .customer-portal-panel{padding:14px;border-radius:20px}
  .customer-portal-grid{grid-template-columns:1fr}
  .customer-booking-card{align-items:flex-start;flex-direction:column}
  .customer-rebook-btn{width:100%}
}
