/* ============================================================
   BEEGOLD · BOOKING
   ============================================================ */

.booking-body {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(201, 168, 106, 0.08), transparent 60%),
    var(--c-ink);
  min-height: 100vh;
}

/* ---------- BOOKING NAV ---------- */
.bnav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(10, 7, 5, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-line);
  padding: 16px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
}
.bnav__brand { display: flex; align-items: center; gap: 14px; }
.bnav__logo {
  width: 56px; height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(230, 201, 137, 0.5));
}
.bnav__name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bnav__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  transition: color 0.3s;
}
.bnav__back svg { width: 14px; height: 14px; }
.bnav__back:hover { color: var(--c-gold-bright); }

/* ---------- NAV: right-side cluster + Google profile chip ---------- */
.bnav__right {
  display: flex; align-items: center; gap: 14px;
}
.bnav__user {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  background: rgba(20, 16, 11, 0.6);
  transition: border-color 0.3s, transform 0.3s;
  max-width: 180px;
}
.bnav__user.is-hidden { display: none; }
.bnav__user:hover { border-color: var(--c-gold); transform: translateY(-1px); }
.bnav__avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--f-body);
  letter-spacing: 0;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.18);
}
.bnav__userName {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-cream);
  letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .bnav__userName { display: none; }   /* mobile: show only the avatar bubble */
  .bnav__user { padding: 4px; }
  .bnav__avatar { width: 32px; height: 32px; }
}

/* ---------- NAV: dropdown menu under the avatar chip ---------- */
.bnav__user-wrap { position: relative; }
.bnav__user { cursor: pointer; border: 1px solid var(--c-line); }
.bnav__menu {
  position: absolute;
  top: calc(100% + 10px); right: 0;
  min-width: 250px;
  background: #120309;
  border: 1px solid var(--c-gold-deep);
  border-radius: 14px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.7);
  z-index: 200;
  overflow: hidden;
  animation: bnavMenuIn 0.22s cubic-bezier(0.22,1,0.36,1);
}
.bnav__menu.is-hidden { display: none; }
@keyframes bnavMenuIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bnav__menu-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--c-line);
}
.bnav__menu-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px;
  flex-shrink: 0;
}
.bnav__menu-id { display: flex; flex-direction: column; min-width: 0; }
.bnav__menu-name {
  font-family: var(--f-body); font-size: 14px; font-weight: 600;
  color: var(--c-cream); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bnav__menu-email {
  font-family: var(--f-body); font-size: 12px;
  color: var(--c-cream-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bnav__menu-item {
  width: 100%;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  background: transparent;
  border: none;
  color: var(--c-cream);
  font-family: var(--f-body); font-size: 14px; font-weight: 500;
  text-align: left; cursor: pointer;
  transition: background 0.2s;
}
.bnav__menu-item:hover { background: rgba(201, 168, 106, 0.07); color: var(--c-gold-bright); }
.bnav__menu-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- WELCOME-BACK CARD ---------- */
.bcard--welcome.is-hidden { display: none; }
.bcard--signin.is-hidden { display: none; }
.account-pill {
  width: 100%;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(201,168,106,0.08), rgba(201,168,106,0.02));
  border: 1px solid var(--c-gold-deep);
  border-radius: 14px;
  color: var(--c-cream);
  font-family: var(--f-body);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxe);
  text-align: left;
}
.account-pill:hover {
  border-color: var(--c-gold-bright);
  background: linear-gradient(135deg, rgba(201,168,106,0.14), rgba(201,168,106,0.04));
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -16px rgba(201,168,106,0.45);
}
.account-pill__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 19px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(201, 168, 106, 0.25);
}
.account-pill__col { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.account-pill__name {
  font-size: 15px; font-weight: 600; color: var(--c-cream);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.account-pill__email {
  font-size: 12px; color: var(--c-cream-dim);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.account-pill__arrow {
  flex-shrink: 0;
  color: var(--c-gold-bright);
}
.account-pill__arrow svg { width: 18px; height: 18px; }

.bcard__switch {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px;
  color: var(--c-cream-dim);
  font-family: var(--f-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(201, 168, 106, 0.3);
}
.bcard__switch:hover { color: var(--c-gold-bright); text-decoration-color: var(--c-gold-bright); }

/* ---------- PROGRESS ---------- */
.bprogress {
  padding: 32px var(--pad-x) 16px;
  position: sticky; top: 69px;
  background: rgba(10, 7, 5, 0.92);
  backdrop-filter: blur(16px);
  z-index: 49;
}
.bprogress.is-hidden { display: none; }
.bprogress__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex; align-items: center;
  gap: 12px;
}
.bprogress__step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0;
  opacity: 0.4;
  transition: opacity 0.5s var(--ease-luxe);
}
.bprogress__step.is-active, .bprogress__step.is-done { opacity: 1; }
.bprogress__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 14px;
  border: 1px solid var(--c-line);
  background: var(--c-ink-2);
  color: var(--c-cream-dim);
  transition: all 0.5s var(--ease-luxe);
}
.bprogress__step.is-active .bprogress__num {
  background: var(--grad-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
  box-shadow: 0 0 16px rgba(201, 168, 106, 0.5);
}
.bprogress__step.is-done .bprogress__num {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
}
.bprogress__label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}
.bprogress__line {
  flex: 1;
  height: 1px;
  background: var(--c-line);
  position: relative;
  overflow: hidden;
}
.bprogress__line::after {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 0; height: 100%;
  background: var(--grad-gold);
  transition: width 0.7s var(--ease-luxe);
}
.bprogress__line.is-filled::after { width: 100%; }

/* ---------- STAGE ---------- */
.bstage {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px var(--pad-x) 80px;
  min-height: calc(100vh - 200px);
  position: relative;
}
.bstep {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  animation: stepIn 0.7s var(--ease-out-expo) forwards;
}
.bstep.is-active { display: block; }
@keyframes stepIn {
  to { opacity: 1; transform: translateY(0); }
}

.bstep__head {
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.bstep__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--c-cream);
  margin-top: 16px;
  margin-bottom: 16px;
}
.bstep__title em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bstep__lede {
  font-size: 15px;
  color: var(--c-cream-dim);
  line-height: 1.6;
}

/* ---------- STEP 1 · SIGN IN ---------- */
#step1 .bstep__head { display: none; }
.bcard {
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.06) 0%, rgba(201, 168, 106, 0) 50%),
    rgba(20, 16, 11, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  padding: 56px 44px;
  max-width: 460px;
  margin: 40px auto 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bcard::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.bcard--signin { padding-top: 56px; }
.bcard__logo-wrap {
  position: relative;
  width: 180px; height: 180px;
  margin: 0 auto 30px;
  display: flex; align-items: center; justify-content: center;
}
.bcard__logo-glow {
  position: absolute; inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 201, 137, 0.42), transparent 60%);
  filter: blur(28px);
  animation: haloPulse 3s var(--ease-luxe) infinite;
}
.bcard__logo {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(230, 201, 137, 0.6));
  position: relative;
  animation: signInLogoIn 1.1s var(--ease-luxe);
}
@keyframes signInLogoIn {
  from { opacity: 0; transform: scale(0.85) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.bcard__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-cream);
  margin-bottom: 12px;
}
.bcard__title em {
  font-style: italic;
  font-size: 18px;
  color: var(--c-gold);
  display: block;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--f-body);
  font-weight: 300;
  margin-bottom: 8px;
}
.bcard__lede {
  font-size: 14px;
  color: var(--c-cream-dim);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 320px;
  margin-left: auto; margin-right: auto;
}

.gbtn {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px;
  padding: 16px 28px;
  background: var(--c-cream);
  color: #1f1f1f;
  border-radius: 100px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.4s var(--ease-luxe);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.gbtn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 106, 0.3),
              0 4px 16px rgba(0, 0, 0, 0.3);
}
.gbtn__icon {
  display: inline-flex;
  width: 20px; height: 20px;
}
.gbtn__icon svg { width: 100%; height: 100%; }

.bcard__fineprint {
  font-size: 11px;
  color: var(--c-cream-dim);
  margin-top: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.bcard__divider {
  position: relative;
  text-align: center;
  margin: 32px 0 24px;
}
.bcard__divider::before {
  content: "";
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
}
.bcard__divider span {
  position: relative;
  padding: 0 16px;
  background: var(--c-ink-2);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}
.bcard__guest {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  transition: color 0.3s;
}
.bcard__guest:hover { color: var(--c-gold-bright); }

/* ---------- STEP 2 · DETAILS FORM ---------- */
.bform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.bfield { display: flex; flex-direction: column; gap: 8px; position: relative; }
.bfield--full { grid-column: 1 / -1; }

.bfield label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 400;
}
.bfield input,
.bfield textarea,
.bfield select {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  color: var(--c-cream);
  background: rgba(20, 16, 11, 0.5);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 14px 18px;
  transition: all 0.4s var(--ease-luxe);
  outline: none;
  width: 100%;
}
.bfield input::placeholder,
.bfield textarea::placeholder {
  color: rgba(200, 184, 158, 0.4);
  font-style: italic;
}
.bfield input:focus,
.bfield textarea:focus,
.bfield select:focus {
  border-color: var(--c-gold);
  background: rgba(20, 16, 11, 0.8);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.1);
}
.bfield textarea { resize: vertical; min-height: 100px; font-family: var(--f-body); }
.bfield input[type="date"] {
  color-scheme: dark;
}

.bselect { position: relative; }
.bselect select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}
.bselect svg {
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--c-gold);
  pointer-events: none;
}

.bform__actions {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ---------- STEP 3 · SERVICES (mobile-first: never defaults to desktop) ---------- */
.bservices {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* phones: 2 columns, always */
  gap: 12px;
  margin-bottom: 40px;
}
/* widen only as the screen genuinely gets bigger */
@media (min-width: 700px) {
  .bservices { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 980px) {
  .bservices { grid-template-columns: repeat(3, 1fr); }
}
.bservice {
  position: relative;
  text-align: left;
  padding: 20px 18px;
  background: rgba(20, 16, 11, 0.5);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s var(--ease-luxe);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 160px;
}
.bservice__icon {
  width: 32px; height: 32px;
  margin-bottom: 8px;
  color: var(--c-gold);
  opacity: 0.6;
  transition: opacity 0.5s, transform 0.5s var(--ease-luxe);
}
.bservice__icon svg { width: 100%; height: 100%; }
.bservice:hover .bservice__icon { opacity: 1; transform: rotate(-3deg); }
.bservice.is-selected .bservice__icon { opacity: 1; color: var(--c-gold-bright); }
.bservice::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-luxe);
  pointer-events: none;
}
.bservice:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.bservice:hover::before { opacity: 1; }
.bservice.is-selected {
  border-color: var(--c-gold);
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(201, 168, 106, 0) 60%),
    rgba(20, 16, 11, 0.8);
  box-shadow: 0 8px 32px rgba(201, 168, 106, 0.2);
}

.bservice__num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 13px;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.bservice__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 24px;
  color: var(--c-cream);
  margin-bottom: 6px;
}
.bservice__desc {
  font-size: 13px;
  color: var(--c-cream-dim);
  line-height: 1.5;
  margin-bottom: auto;
  padding-bottom: 16px;
}
.bservice__meta {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: auto;
}
.bservice__price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.bservice__hours {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}
.bservice.is-selected .bservice__hours { color: var(--c-gold-bright); }

.bservice__check {
  position: absolute;
  top: 18px; right: 18px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s var(--ease-luxe);
}
.bservice__check svg { width: 14px; height: 14px; }
.bservice.is-selected .bservice__check { opacity: 1; transform: scale(1); }

/* ---------- STEP 4 · REVIEW ---------- */
.breview {
  max-width: 640px;
  margin: 0 auto 40px;
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.04), transparent),
    rgba(20, 16, 11, 0.5);
  border: 1px solid var(--c-line);
  border-radius: 18px;
  padding: 36px 40px;
  backdrop-filter: blur(20px);
}
.breview__group {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px;
  padding: 14px 0;
}
.breview__group--big { padding: 18px 0; }
.breview__rule {
  height: 1px;
  background: var(--c-line);
  margin: 8px 0;
}
.breview__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  flex-shrink: 0;
}
.breview__value {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-cream);
  text-align: right;
  font-weight: 300;
}
.breview__value--big {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--c-gold-bright);
  font-style: italic;
}

/* ---------- STEP 5 · SUCCESS ---------- */
.bsuccess {
  max-width: 540px;
  margin: 60px auto 0;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.bsuccess__check {
  position: relative;
  width: 120px; height: 120px;
  margin-bottom: 16px;
}
.bsuccess__glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.4), transparent 60%);
  filter: blur(20px);
  opacity: 0;
  animation: glowIn 1.2s var(--ease-luxe) 0.4s forwards;
}
@keyframes glowIn {
  to { opacity: 1; }
}
.bsuccess__check svg {
  position: relative;
  width: 100%; height: 100%;
  z-index: 2;
}
.bsuccess__circle {
  stroke: var(--c-gold);
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  animation: circleDraw 1s var(--ease-luxe) 0.1s forwards;
  filter: drop-shadow(0 0 8px rgba(201, 168, 106, 0.7));
}
.bsuccess__tick {
  stroke: var(--c-gold-bright);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: tickDraw 0.6s var(--ease-luxe) 0.9s forwards;
  filter: drop-shadow(0 0 6px rgba(230, 201, 137, 0.8));
}
@keyframes circleDraw { to { stroke-dashoffset: 0; } }
@keyframes tickDraw { to { stroke-dashoffset: 0; } }

.bsuccess__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}
.bsuccess__title em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bsuccess__msg {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-cream);
  line-height: 1.5;
  font-style: italic;
}
.bsuccess__sub {
  font-size: 14px;
  color: var(--c-cream-dim);
  line-height: 1.6;
  max-width: 400px;
}

.bsuccess__ref {
  margin-top: 8px;
  padding: 14px 24px;
  border: 1px solid var(--c-line);
  border-radius: 100px;
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(201, 168, 106, 0.05);
}
.bsuccess__ref-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
}
.bsuccess__ref-id {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--c-gold-bright);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.bsuccess__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 16px;
  justify-content: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .bprogress { padding: 20px var(--pad-x) 12px; top: 65px; }
  .bprogress__num { width: 30px; height: 30px; font-size: 13px; }
  .bprogress__label { display: none; }

  .bstage { padding: 24px var(--pad-x) 60px; }
  .bstep__head { margin-bottom: 32px; }

  .bcard { padding: 40px 24px; }
  .bcard__title { font-size: 26px; }
  .bcard__title em { font-size: 14px; }

  .bform { grid-template-columns: 1fr; gap: 18px; }
  .bform__actions { flex-direction: column-reverse; }
  .bform__actions .btn { width: 100%; }

  .bservices { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bservice { padding: 16px 14px; min-height: 0; }
  .bservice__name { font-size: 15px; line-height: 1.2; }
  .bservice__num { font-size: 11px; margin-bottom: 6px; }
  .bservice__icon { width: 24px; height: 24px; margin-bottom: 4px; }
  .bservice__price { font-size: 16px; }
  .bservice__hours { font-size: 9px; letter-spacing: 0.18em; }
  .bservice__check { top: 10px; right: 10px; width: 22px; height: 22px; }
  .bservice__check svg { width: 11px; height: 11px; }

  .breview { padding: 24px 22px; }
  .breview__group { flex-direction: column; align-items: flex-start; gap: 4px; padding: 12px 0; }
  .breview__value { text-align: left; }
  .breview__value--big { font-size: 20px; }

  .bsuccess__check { width: 100px; height: 100px; }
  .bsuccess__actions { flex-direction: column; width: 100%; }
  .bsuccess__actions .btn { width: 100%; }
}

/* ============================================================
   BEEGOLD · TERMS GATE (Step 0)
   ============================================================ */
.terms-gate {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 0 60px;
}
.terms-gate__head {
  text-align: center;
  margin-bottom: 32px;
}
.terms-gate__logo {
  width: 130px; height: 130px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 0 22px rgba(230, 201, 137, 0.5));
  animation: signInLogoIn 1.1s var(--ease-luxe);
}
.terms-gate__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--c-cream);
  margin: 16px 0 14px;
}
.terms-gate__title em {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.terms-gate__lede {
  color: var(--c-cream-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* Scrollable terms box */
.terms-scroll {
  position: relative;
  max-height: 50vh;
  min-height: 320px;
  overflow-y: auto;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: rgba(20, 16, 11, 0.5);
  padding: 28px 30px;
  margin-bottom: 18px;
  scroll-behavior: smooth;
}
.terms-scroll::-webkit-scrollbar { width: 6px; }
.terms-scroll::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); border-radius: 3px; }
.terms-scroll::-webkit-scrollbar-thumb { background: rgba(201, 168, 106, 0.4); border-radius: 3px; }
.terms-scroll::-webkit-scrollbar-thumb:hover { background: rgba(201, 168, 106, 0.7); }
.terms-scroll__inner h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 22px;
  color: var(--c-gold-bright);
  margin: 28px 0 12px;
  font-weight: 400;
}
.terms-scroll__inner h2:first-child { margin-top: 0; }
.terms-scroll__inner p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-cream);
  margin-bottom: 14px;
}
.terms-scroll__inner strong { color: var(--c-gold-bright); font-weight: 500; }
.terms-final {
  margin-top: 28px !important;
  padding: 18px;
  border: 1px solid rgba(201, 168, 106, 0.3);
  border-radius: 4px;
  background: rgba(201, 168, 106, 0.05);
  text-align: center;
}
.terms-final strong {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* Scroll progress meter */
.terms-progress {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.terms-progress__bar {
  width: 100%;
  height: 3px;
  background: rgba(201, 168, 106, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.terms-progress__fill {
  width: 0%;
  height: 100%;
  background: var(--grad-gold);
  transition: width 0.25s ease-out;
}
.terms-progress__hint {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  transition: color 0.4s;
}

/* Accept checkbox */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: rgba(20, 16, 11, 0.4);
  margin-bottom: 28px;
  cursor: not-allowed;
  transition: all 0.4s var(--ease-luxe);
  opacity: 0.55;
}
.terms-check.is-enabled {
  cursor: pointer;
  opacity: 1;
  border-color: rgba(201, 168, 106, 0.3);
}
.terms-check.is-checked {
  border-color: var(--c-gold);
  background:
    linear-gradient(135deg, rgba(201, 168, 106, 0.1), transparent),
    rgba(20, 16, 11, 0.5);
}
.terms-check input { position: absolute; opacity: 0; pointer-events: none; }
.terms-check__box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1.5px solid rgba(201, 168, 106, 0.45);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-luxe);
  margin-top: 1px;
}
.terms-check__box svg {
  width: 14px; height: 14px;
  color: var(--c-ink);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.3s, transform 0.3s var(--ease-luxe);
}
.terms-check.is-checked .terms-check__box {
  background: var(--grad-gold);
  border-color: var(--c-gold-bright);
}
.terms-check.is-checked .terms-check__box svg { opacity: 1; transform: scale(1); }
.terms-check__label {
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-cream);
}

/* Mobile adjustments for terms gate */
@media (max-width: 600px) {
  .terms-gate { padding: 12px 0 40px; }
  .terms-scroll { padding: 20px 18px; max-height: 56vh; }
  .terms-scroll__inner h2 { font-size: 19px; }
  .terms-scroll__inner p { font-size: 13.5px; }
  .terms-check { padding: 14px 16px; gap: 12px; }
  .terms-check__label { font-size: 13px; }
  .terms-gate__logo { width: 110px; height: 110px; }
}


/* ============================================================
   STEP 3 · PHONE — single-field form
   ============================================================ */
.bform--single {
  max-width: 500px;
  margin: 0 auto;
}
.bfield__hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--c-cream-dim);
  font-style: italic;
}


/* ============================================================
   STEP 4 · DATE & TIME — open calendar + slot picker (Booksy-style)
   ============================================================ */
.bdt {
  max-width: 820px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Calendar card */
.bdt__cal {
  background: rgba(20, 16, 11, 0.6);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 22px 22px 26px;
}
.bdt__cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.bdt__cal-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--c-cream);
  letter-spacing: 0.01em;
}
.bdt__nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-cream);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxe);
}
.bdt__nav svg { width: 16px; height: 16px; }
.bdt__nav:hover:not(:disabled) {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: rgba(201,168,106,0.06);
}
.bdt__nav:disabled { opacity: 0.3; cursor: not-allowed; }

.bdt__cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}
.bdt__cal-weekdays span {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  text-align: center;
  padding: 6px 0;
}

.bdt__cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bdt__day {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 8px;
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease-luxe);
  display: flex; align-items: center; justify-content: center;
}
.bdt__day--blank { cursor: default; }
.bdt__day:not(.bdt__day--blank):hover:not(:disabled) {
  border-color: var(--c-gold);
  background: rgba(201,168,106,0.08);
}
.bdt__day.is-today {
  border-color: rgba(201,168,106,0.45);
  color: var(--c-gold-bright);
}
.bdt__day.is-past,
.bdt__day.is-closed {
  color: rgba(245, 237, 225, 0.18);
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(245, 237, 225, 0.15);
}
.bdt__day.is-past:hover,
.bdt__day.is-closed:hover { border-color: transparent; background: transparent; }
.bdt__day.is-selected {
  background: var(--grad-gold);
  color: var(--c-ink);
  border-color: var(--c-gold-bright);
  font-weight: 600;
  box-shadow: 0 6px 18px -4px rgba(230, 201, 137, 0.5);
}

/* Time slots panel */
.bdt__times {
  background: rgba(20, 16, 11, 0.6);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 22px;
  min-height: 280px;
}
.bdt__times-head {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}
.bdt__times-label {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.bdt__times-date {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--c-cream);
  font-style: italic;
}
.bdt__slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.bdt__slot {
  padding: 12px 8px;
  border: 1px solid var(--c-line);
  background: transparent;
  border-radius: 8px;
  color: var(--c-cream);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxe);
}
.bdt__slot:hover {
  border-color: var(--c-gold);
  background: rgba(201,168,106,0.08);
  color: var(--c-gold-bright);
}
.bdt__slot.is-selected {
  background: var(--grad-gold);
  color: var(--c-ink);
  border-color: var(--c-gold-bright);
  font-weight: 600;
  box-shadow: 0 6px 18px -4px rgba(230,201,137,0.5);
}
.bdt__empty {
  grid-column: 1 / -1;
  color: var(--c-cream-dim);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 30px 10px;
}

@media (max-width: 760px) {
  .bdt {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .bdt__cal { padding: 18px 16px 22px; }
  .bdt__cal-title { font-size: 17px; }
  .bdt__day { font-size: 13px; border-radius: 6px; }
  .bdt__times { padding: 18px 16px; min-height: auto; }
  .bdt__slots { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .bdt__slot { padding: 10px 6px; font-size: 12px; }
}
@media (max-width: 420px) {
  .bdt__slots { grid-template-columns: repeat(2, 1fr); }
  .bdt__cal-weekdays span { font-size: 9px; letter-spacing: 0.12em; padding: 4px 0; }
  .bdt__day { font-size: 12px; }
}

/* ============================================================
   PAYMENT INFO STEP (step 5)
   ============================================================ */
.pay-warn {
  display: flex; gap: 14px;
  border-left: 3px solid var(--c-gold);
  background: linear-gradient(135deg, rgba(201,168,106,0.10), rgba(201,168,106,0.02));
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 22px;
}
.pay-warn__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.pay-warn__icon svg { width: 18px; height: 18px; }
.pay-warn__title {
  font-family: var(--f-body);
  font-size: 15px; font-weight: 700;
  color: var(--c-gold-bright);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.pay-warn__text {
  font-family: var(--f-body);
  font-size: 14px; line-height: 1.6;
  color: var(--c-cream-dim);
  margin: 0;
}

.pay-deposit {
  text-align: left;
  background: var(--c-ink2);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 22px;
}
.pay-deposit__amount {
  font-family: var(--f-display);
  font-size: 56px; font-weight: 500;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}
.pay-deposit__label {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-cream-dim);
  font-weight: 600;
}
.pay-deposit__text {
  margin: 14px 0 0;
  color: var(--c-cream-dim);
  font-size: 14px; line-height: 1.65;
}

.pay-methods {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 30px;
}
.pay-method {
  background: var(--c-ink2);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 16px 18px;
}
.pay-method__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 12px;
}
.pay-method__icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.pay-method__icon svg { width: 22px; height: 22px; }
.pay-method__icon--zelle { background: rgba(108, 196, 88, 0.15); color: #6cc458; }
.pay-method__icon--cash  { background: rgba(108, 196, 88, 0.15); color: #6cc458; }
.pay-method__icon--apple { background: rgba(245, 237, 225, 0.10); color: var(--c-cream); }

.pay-method__id { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pay-method__name {
  font-family: var(--f-body);
  font-size: 15px; font-weight: 600;
  color: var(--c-cream);
}
.pay-method__value {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500;
  color: var(--c-gold-bright);
  letter-spacing: 0.01em;
}

.pay-copy {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--c-gold-deep);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--c-gold-bright);
  font-family: var(--f-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.pay-copy:hover, .pay-copy:active {
  background: rgba(201, 168, 106, 0.10);
  border-color: var(--c-gold);
}
.pay-copy svg { width: 14px; height: 14px; }
.pay-copy.is-copied {
  background: var(--grad-gold);
  color: var(--c-ink);
  border-color: var(--c-gold-bright);
}

/* ---------- "Open 24/7" badge on the Date & Time step ---------- */
.bdt__badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-ink, #000000);
  background: linear-gradient(135deg, #8e6f3c, #c9a86a 40%, #e6c989 60%, #c9a86a);
  border-radius: 100px;
  vertical-align: middle;
}

/* ============================================================
   RABUS SKIN · BOOKING — metallic pink primary, gold hover
   ============================================================ */
.booking-body .btn--primary, .booking-body .btn--gold {
  background: linear-gradient(135deg, #8e1152 0%, #d92b85 22%, #ff8ec4 50%, #d92b85 78%, #8e1152 100%);
  background-size: 200% 200%;
  color: #fff;
  border: 1px solid rgba(255, 158, 202, 0.55);
  box-shadow: 0 10px 36px rgba(240, 79, 156, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.booking-body .btn--primary:hover, .booking-body .btn--gold:hover {
  border-color: #e6c989;
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(240, 79, 156, 0.5), 0 0 0 1px rgba(230, 201, 137, 0.35);
}
.booking-body .loader__fill {
  background: linear-gradient(135deg, #8e1152, #d92b85, #ff8ec4, #d92b85, #8e1152);
}
.booking-body ::selection { background: #f04f9c; color: #fff; }


/* ============================================================
   STEP 0 · TERMS & CONDITIONS GATE — Rabus luxury skin
   ============================================================ */
.tac{max-width:660px;margin:0 auto;padding:26px 4px 60px;display:flex;flex-direction:column;align-items:center;text-align:center}
.tac__eyebrow{font-size:11px;letter-spacing:.32em;text-transform:uppercase;color:var(--c-pink, #f04f9c);margin-top:18px}
.tac__title{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(34px,8vw,52px);line-height:1.08;margin:10px 0 8px;color:var(--c-cream,#f6ecef)}
.tac__title em{font-style:italic;background:linear-gradient(135deg,#8e6f3c,#c9a86a 30%,#e6c989 50%,#c9a86a 70%,#8e6f3c);-webkit-background-clip:text;background-clip:text;color:transparent}
.tac__lede{max-width:470px;color:var(--c-cream-dim,#c8b0ba);font-size:15px;line-height:1.65;margin-bottom:22px}

.tac__box{width:100%;height:46vh;min-height:300px;max-height:480px;overflow-y:auto;text-align:left;background:linear-gradient(165deg,rgba(28,7,16,.82),rgba(0,0,0,.94));border:1px solid rgba(201,168,106,.32);border-radius:16px;padding:26px 24px;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);scroll-behavior:smooth}
.tac__box::-webkit-scrollbar{width:5px}
.tac__box::-webkit-scrollbar-track{background:rgba(255,255,255,.04);border-radius:99px}
.tac__box::-webkit-scrollbar-thumb{background:linear-gradient(180deg,#b3186a,#f04f9c);border-radius:99px}
.tac__box h3{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:600;font-size:21px;color:#e6c989;margin:26px 0 10px}
.tac__box h3:first-child{margin-top:0}
.tac__box p{font-size:14.5px;line-height:1.75;color:var(--c-cream,#f6ecef);margin-bottom:12px}
.tac__box strong{color:#ffc0dd;font-weight:500}
.tac__end{text-align:center;color:rgba(201,168,106,.65);font-style:italic;margin-top:26px}

.tac__bar{width:100%;height:2.4px;background:rgba(240,79,156,.14);border-radius:99px;margin-top:16px;overflow:hidden}
.tac__fill{width:0%;height:100%;background:linear-gradient(90deg,#b3186a,#f04f9c,#ff8ec4);box-shadow:0 0 12px rgba(240,79,156,.8);border-radius:99px;transition:width .15s linear}
.tac__hint{font-size:10.5px;letter-spacing:.26em;text-transform:uppercase;color:var(--c-cream-dim,#c8b0ba);margin:12px 0 20px;transition:color .4s ease}
.tac--ready .tac__hint{color:#e6c989}

.tac__check{display:flex;align-items:center;gap:14px;width:100%;text-align:left;background:linear-gradient(165deg,rgba(28,7,16,.75),rgba(0,0,0,.9));border:1px solid rgba(201,168,106,.28);border-radius:14px;padding:16px 18px;cursor:pointer;opacity:.45;pointer-events:none;transition:opacity .4s ease,border-color .3s ease}
.tac--ready .tac__check{opacity:1;pointer-events:auto}
.tac__check:hover{border-color:rgba(240,79,156,.5)}
.tac__check input{position:absolute;opacity:0;pointer-events:none}
.tac__checkbox{flex:none;width:24px;height:24px;border-radius:7px;border:1.6px solid rgba(240,79,156,.65);display:flex;align-items:center;justify-content:center;color:#fff;transition:all .25s ease}
.tac__checkbox svg{width:14px;height:14px;opacity:0;transform:scale(.5);transition:all .25s ease}
.tac__check input:checked + .tac__checkbox{background:linear-gradient(135deg,#b3186a,#f04f9c);border-color:#ff8ec4;box-shadow:0 0 18px rgba(240,79,156,.55)}
.tac__check input:checked + .tac__checkbox svg{opacity:1;transform:scale(1)}
.tac__checktext{font-size:13.5px;line-height:1.5;color:var(--c-cream,#f6ecef)}

.tac__continue{margin-top:20px;width:100%;max-width:340px;justify-content:center}
.tac__continue:disabled{opacity:.38;pointer-events:none;filter:saturate(.5)}
@media (max-width:480px){ .tac__box{padding:20px 16px;height:44vh} }

/* ============================================================
   RABUS PINK PASS · BOOKING FLOW
   Pink leads the interactive/active states, gold stays the
   supporting accent — consistent with the hero and site skin.
   ============================================================ */

/* --- Step progress dots --- */
.booking-body .bprogress__step.is-active .bprogress__num {
  background: linear-gradient(135deg, #f04f9c, #ff8ec4);
  color: #fff;
  border-color: #ff8ec4;
  box-shadow: 0 0 18px rgba(240, 79, 156, 0.55);
}
.booking-body .bprogress__step.is-done .bprogress__num {
  background: rgba(240, 79, 156, 0.9);
  color: #fff;
  border-color: #f04f9c;
}
.booking-body .bprogress__step.is-active .bprogress__label { color: #ffc0dd; }

/* --- Step headings --- */
.booking-body .bstep__eyebrow,
.booking-body .tac__eyebrow { color: #f04f9c; }
.booking-body .bstep__title em {
  background: linear-gradient(135deg, #ff8ec4, #f04f9c 45%, #ffc0dd 70%, #f04f9c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --- Service cards: pink selection --- */
.booking-body .bservice:hover {
  border-color: rgba(240, 79, 156, 0.45);
  box-shadow: 0 10px 30px rgba(240, 79, 156, 0.14);
}
.booking-body .bservice.is-selected {
  border-color: #f04f9c;
  box-shadow: 0 0 0 1px rgba(240, 79, 156, 0.5), 0 12px 34px rgba(240, 79, 156, 0.22);
}
.booking-body .bservice.is-selected .bservice__icon,
.booking-body .bservice.is-selected .bservice__hours { color: #ff8ec4; }
.booking-body .bservice.is-selected .bservice__check {
  background: linear-gradient(135deg, #f04f9c, #ff8ec4);
  border-color: #ff8ec4; color: #fff;
}
.booking-body .bservice__price { color: #ffc0dd; }

/* --- Calendar --- */
.booking-body .bdt__day.is-selected {
  background: linear-gradient(135deg, #b3186a, #f04f9c 55%, #ff8ec4);
  color: #fff;
  border-color: #ff8ec4;
  box-shadow: 0 6px 20px -4px rgba(240, 79, 156, 0.6);
}
.booking-body .bdt__day:not(.bdt__day--blank):hover:not(:disabled) {
  border-color: rgba(240, 79, 156, 0.55);
}
.booking-body .bdt__day.is-today { border-color: rgba(240, 79, 156, 0.7); color: #ffc0dd; }
.booking-body .bdt__nav:hover:not(:disabled) { border-color: #f04f9c; color: #ff8ec4; }
.booking-body .bdt__cal-title { color: var(--c-cream); }
.booking-body .bdt__badge {
  background: rgba(240, 79, 156, 0.14);
  border: 1px solid rgba(240, 79, 156, 0.4);
  color: #ffc0dd;
}

/* --- Time slots --- */
.booking-body .bdt__slot:hover { border-color: rgba(240, 79, 156, 0.5); color: #ffc0dd; }
.booking-body .bdt__slot.is-selected {
  background: linear-gradient(135deg, #b3186a, #f04f9c 55%, #ff8ec4);
  color: #fff;
  border-color: #ff8ec4;
  box-shadow: 0 6px 20px -4px rgba(240, 79, 156, 0.55);
}
.booking-body .bdt__times-label { color: var(--c-cream); }

/* --- Form fields: pink focus --- */
.booking-body .bfield input:focus,
.booking-body .bfield textarea:focus,
.booking-body .bfield select:focus {
  border-color: #f04f9c;
  box-shadow: 0 0 0 3px rgba(240, 79, 156, 0.16);
  outline: none;
}
.booking-body .bfield label { color: #ffc0dd; }

/* --- Account pill (signed-in chip) --- */
.booking-body .account-pill__avatar {
  background: linear-gradient(135deg, #b3186a, #f04f9c, #ff8ec4);
  color: #fff;
}
.booking-body .account-pill:hover { border-color: rgba(240, 79, 156, 0.5); }

/* --- Google button accent --- */
.booking-body .gbtn:hover {
  border-color: rgba(240, 79, 156, 0.55);
  box-shadow: 0 8px 26px rgba(240, 79, 156, 0.16);
}

/* --- Review / summary rows --- */
.booking-body .bsum__row strong,
.booking-body .bsum__value { color: var(--c-cream); }
.booking-body .bsum__label { color: #ffc0dd; }
.booking-body .bsum__total {
  border-color: rgba(240, 79, 156, 0.35);
}
.booking-body .bsum__total .bsum__value { color: #ff8ec4; }

/* --- Success screen --- */
.booking-body .bdone__icon,
.booking-body .bsuccess__icon {
  background: linear-gradient(135deg, #b3186a, #f04f9c, #ff8ec4);
  color: #fff;
  box-shadow: 0 0 40px rgba(240, 79, 156, 0.4);
}
.booking-body .bref, .booking-body .bdone__ref {
  border-color: rgba(240, 79, 156, 0.4);
  color: #ff8ec4;
}

/* --- Terms gate scrollbar + progress already pink; unify headings --- */
.booking-body .tac__box h3 { color: #ffc0dd; }

/* ============================================================
   WELCOME BACK — Google identity avatar
   Real Google profile photo when available, otherwise the
   account's first letter. Never a blank/pink circle.
   ============================================================ */
.booking-body .account-pill__avatar {
  background-color: #241c26;
  background-image: none;
  background-repeat: no-repeat;
  color: #e6c989;
  border: 1px solid rgba(201, 168, 106, 0.55);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display, 'Cormorant Garamond', serif);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  overflow: hidden;
  flex: none;
}
.booking-body .account-pill__avatar.has-photo {
  background-color: transparent;
  color: transparent;
  border-color: rgba(201, 168, 106, 0.55);
}

.booking-body .account-pill__hint {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-cream-dim, #c8b0ba);
  margin: 4px 0 12px;
}
.booking-body .account-pill__g { width: 15px; height: 15px; flex: none; }

/* ============================================================
   ADULT / KIDS CATEGORY STEP + KIDS WEAVE TOGGLE
   ============================================================ */
.booking-body .bcat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 6px 0 8px;
}
@media (max-width: 380px) { .booking-body .bcat { grid-template-columns: 1fr; } }

.booking-body .bcat__card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px; padding: 26px 16px 22px;
  background: linear-gradient(165deg, rgba(28,7,16,.72), rgba(0,0,0,.9));
  border: 1px solid rgba(201,168,106,.28); border-radius: 16px;
  cursor: pointer; transition: border-color .3s ease, box-shadow .3s ease, transform .25s ease;
}
.booking-body .bcat__card:hover {
  border-color: rgba(240,79,156,.5);
  box-shadow: 0 10px 30px rgba(240,79,156,.14); transform: translateY(-2px);
}
.booking-body .bcat__card.is-selected {
  border-color: #f04f9c;
  box-shadow: 0 0 0 1px rgba(240,79,156,.55), 0 12px 34px rgba(240,79,156,.22);
}
.booking-body .bcat__icon {
  width: 54px; height: 54px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
  color: #e6c989; border: 1px solid rgba(201,168,106,.4);
  background: radial-gradient(circle at 50% 35%, rgba(240,79,156,.18), transparent 70%);
}
.booking-body .bcat__card.is-selected .bcat__icon { color: #ff8ec4; border-color: rgba(240,79,156,.6); }
.booking-body .bcat__icon svg { width: 26px; height: 26px; }
.booking-body .bcat__label {
  font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 22px; color: var(--c-cream, #f6ecef);
}
.booking-body .bcat__sub { font-size: 12px; color: var(--c-cream-dim, #c8b0ba); }
.booking-body .bcat__check {
  position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #f04f9c, #ff8ec4); color: #fff;
  opacity: 0; transform: scale(.5); transition: all .25s ease;
}
.booking-body .bcat__check svg { width: 13px; height: 13px; }
.booking-body .bcat__card.is-selected .bcat__check { opacity: 1; transform: scale(1); }

/* Kids weave toggle */
.booking-body .bweave {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  background: rgba(20,16,11,.6); border: 1px solid rgba(201,168,106,.28);
  border-radius: 999px; padding: 5px; margin: 0 0 18px;
}
.booking-body .bweave.is-hidden { display: none; }
.booking-body .bweave__opt {
  padding: 11px 10px; border-radius: 999px; border: none; background: transparent;
  color: var(--c-cream-dim, #c8b0ba); font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 500; letter-spacing: .04em; cursor: pointer;
  transition: all .3s ease;
}
.booking-body .bweave__opt.is-active {
  background: linear-gradient(135deg, #b3186a, #f04f9c 60%, #ff8ec4); color: #fff;
  box-shadow: 0 4px 16px rgba(240,79,156,.4);
}

/* Kids "call for pricing" note */
.booking-body .bkids-note {
  text-align: center; font-size: 13px; color: var(--c-cream-dim, #c8b0ba);
  margin: 16px 4px 4px; line-height: 1.6;
}
.booking-body .bkids-note.is-hidden { display: none; }
.booking-body .bkids-note a { color: #ff8ec4; text-decoration: underline; text-underline-offset: 2px; }
