.form-pot { display: none; visibility: hidden; position: absolute; }
.artists-load-error { font-size: 13px; color: var(--mid); }
#paymentError { margin-bottom: 12px; }

/* ─── BOOKING PAGE ─── */
    .booking-page {
      min-height: 100vh;
    }

    /* ─── HERO ─── */
    .booking-hero {
      padding: calc(var(--sv, 80px) + 24px) var(--px, 24px) 48px;
      max-width: var(--max, 1280px);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 5vw, 80px);
      align-items: end;
      border-bottom: 1px solid var(--light, #e0e0e0);
    }

    .booking-hero-label {
      display: block;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--sec-grey, #9a9a9a);
      margin-bottom: 16px;
    }

    .booking-hero-title {
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 900;
      line-height: 0.95;
      letter-spacing: -0.03em;
      color: var(--black, #000);
      margin-bottom: 24px;
    }

    .booking-hero-desc {
      font-size: 14px;
      font-weight: 300;
      line-height: 1.75;
      color: var(--mid, #636363);
      max-width: 420px;
    }

    .booking-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .booking-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      font-weight: 400;
      color: var(--mid, #636363);
    }

    .booking-hero-meta-item svg {
      flex-shrink: 0;
      color: var(--black, #000);
    }

    /* ─── MAIN LAYOUT — summary rail + wizard ─── */
    .booking-layout {
      max-width: var(--max, 1280px);
      margin: 0 auto;
      padding: 64px var(--px, 24px) 120px;
      display: grid;
      grid-template-columns: 320px 1fr;
      gap: 64px;
      align-items: start;
    }

    /* ─── SUMMARY RAIL ─── */
    .booking-summary {
      position: sticky;
      top: 100px;
    }

    .summary-stepper {
      list-style: none;
      margin: 0 0 32px;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .summary-step {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 14px;
      border-left: 2px solid var(--light, #e0e0e0);
      color: var(--sec-grey, #9a9a9a);
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .summary-step-num {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
    }

    .summary-step-name {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .summary-step.is-current {
      border-left-color: var(--black, #000);
      color: var(--black, #000);
      background: var(--off-white, #f5f5f5);
    }

    .summary-step.is-done {
      border-left-color: var(--black, #000);
      color: var(--black, #000);
      cursor: pointer;
    }

    .summary-step.is-done:hover {
      background: var(--off-white, #f5f5f5);
    }

    .summary-card {
      border: 1px solid var(--light, #e0e0e0);
    }

    .summary-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 18px;
      border-bottom: 1px solid var(--light, #e0e0e0);
    }

    .summary-row--deposit {
      border-bottom: none;
      background: var(--black, #000);
    }

    .summary-row-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sec-grey, #9a9a9a);
    }

    .summary-row--deposit .summary-row-label {
      color: rgba(255,255,255,0.6);
    }

    .summary-row-value {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--black, #000);
      text-align: right;
    }

    .summary-row-value.is-empty {
      color: var(--sec-grey, #9a9a9a);
      font-weight: 400;
    }

    .summary-artist {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .summary-artist img {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
    }

    .summary-artist-swatch {
      width: 10px;
      height: 10px;
      flex-shrink: 0;
      border-radius: 50%;
    }

    .summary-deposit {
      font-size: 15px;
      font-weight: 700;
      color: var(--white, #fff);
    }

    .summary-note {
      font-size: 11px;
      font-weight: 300;
      line-height: 1.6;
      color: var(--sec-grey, #9a9a9a);
      margin-top: 18px;
    }

    /* ─── WIZARD STEPS ─── */
    .booking-steps {
      min-width: 0;
    }

    .booking-step {
      display: none;
      animation: stepFade 0.35s ease;
    }

    .booking-step.is-active {
      display: block;
    }

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

    .booking-section-label {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--sec-grey, #9a9a9a);
      display: block;
      margin-bottom: 12px;
    }

    .booking-step-title {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: var(--black, #000);
      margin-bottom: 28px;
    }

    .booking-step-subtitle {
      font-size: 13px;
      font-weight: 300;
      color: var(--mid, #636363);
      line-height: 1.6;
      margin: -16px 0 28px;
    }

    /* Artist selector */
    .artist-selector {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 12px;
      margin-bottom: 40px;
    }

    .artist-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px 14px 14px;
      border: 1px solid var(--light, #e0e0e0);
      background: var(--white, #fff);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      font-family: var(--font, 'Poppins', sans-serif);
      text-align: left;
    }

    .artist-btn img {
      width: 44px;
      height: 44px;
      object-fit: cover;
      border-radius: 8px;
      display: block;
      flex-shrink: 0;
    }

    .artist-btn-name {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--black, #000);
    }

    .artist-btn.active {
      border-color: var(--black, #000);
      background: var(--black, #000);
    }

    .artist-btn.active .artist-btn-name {
      color: var(--white, #fff);
    }

    /* ─── CALENDAR ─── */
    .calendar {
      --artist-color: var(--black, #000);
      max-width: 480px;
      margin-bottom: 8px;
    }

    .calendar-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .calendar-month {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--black, #000);
    }

    .calendar-nav {
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--light, #e0e0e0);
      background: var(--white, #fff);
      color: var(--black, #000);
      cursor: pointer;
      transition: border-color 0.2s, opacity 0.2s;
    }

    .calendar-nav:hover:not(:disabled) { border-color: var(--black, #000); }
    .calendar-nav:disabled { opacity: 0.3; cursor: not-allowed; }

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

    .calendar-weekdays span {
      text-align: center;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sec-grey, #9a9a9a);
      padding: 4px 0;
    }

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

    .cal-cell {
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 500;
      border: 1px solid transparent;
      color: var(--light, #e0e0e0);
    }

    .cal-cell.is-blank { border: none; }

    .cal-cell.is-disabled {
      color: var(--light, #c9c9c9);
    }

    .cal-cell.is-booked {
      color: var(--sec-grey, #9a9a9a);
      text-decoration: line-through;
      background: var(--off-white, #f5f5f5);
    }

    .cal-cell.is-available {
      color: var(--black, #000);
      cursor: pointer;
      border-color: var(--light, #e0e0e0);
      position: relative;
      transition: border-color 0.15s, background 0.15s, color 0.15s;
    }

    .cal-cell.is-available::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translateX(-50%);
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--artist-color);
    }

    .cal-cell.is-available:hover {
      border-color: var(--artist-color);
      background: color-mix(in srgb, var(--artist-color) 10%, #fff);
    }

    .cal-cell.is-selected {
      background: var(--artist-color);
      border-color: var(--artist-color);
      color: var(--white, #fff);
      font-weight: 700;
    }

    .cal-cell.is-selected::after { background: var(--white, #fff); }

    .calendar-legend {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid, #636363);
    }

    .legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    .legend-dot--available { background: var(--artist-color, #000); }
    .legend-dot--booked { background: var(--sec-grey, #9a9a9a); }

    .dates-loading {
      grid-column: 1 / -1;
      padding: 40px 0;
      text-align: center;
      font-size: 12px;
      color: var(--sec-grey, #9a9a9a);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .dates-empty {
      grid-column: 1 / -1;
      padding: 40px 0;
      text-align: center;
      font-size: 13px;
      color: var(--mid, #636363);
    }

    /* ─── FORM ─── */
    .form-group {
      margin-bottom: 20px;
    }

    .form-check-label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--mid, #636363);
      cursor: pointer;
    }

    .form-check-input {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
    }

    .form-label {
      display: block;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--mid, #636363);
      margin-bottom: 8px;
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--light, #e0e0e0);
      background: var(--white, #fff);
      font-family: var(--font, 'Poppins', sans-serif);
      font-size: 13px;
      font-weight: 300;
      color: var(--black, #000);
      outline: none;
      transition: border-color 0.2s;
      border-radius: 0;
      appearance: none;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--black, #000);
    }

    .form-textarea {
      resize: vertical;
      min-height: 80px;
    }

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

    .form-error {
      font-size: 11px;
      color: #c0392b;
      margin-top: 6px;
      display: none;
    }

    .form-error.visible { display: block; }

    /* ─── STRIPE SECTION ─── */
    .payment-section {
      margin-bottom: 8px;
    }

    #payment-element {
      margin-bottom: 20px;
    }

    .deposit-summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 0;
      border-top: 1px solid var(--light, #e0e0e0);
      border-bottom: 1px solid var(--light, #e0e0e0);
      margin-bottom: 20px;
    }

    .deposit-summary-label {
      font-size: 11px;
      font-weight: 400;
      color: var(--mid, #636363);
    }

    .deposit-summary-amount {
      font-size: 16px;
      font-weight: 700;
    }

    .deposit-note {
      font-size: 11px;
      font-weight: 300;
      color: var(--sec-grey, #9a9a9a);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    /* ─── STEP ACTIONS (footer CTA row) ─── */
    .step-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 32px;
    }

    .btn-step-back {
      background: none;
      border: none;
      padding: 14px 4px;
      font-family: var(--font, 'Poppins', sans-serif);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--mid, #636363);
      cursor: pointer;
      transition: color 0.2s;
    }

    .btn-step-back:hover { color: var(--black, #000); }

    .btn-step-next,
    .btn-proceed,
    .btn-book {
      padding: 16px 40px;
      background: var(--black, #000);
      color: var(--white, #fff);
      border: none;
      font-family: var(--font, 'Poppins', sans-serif);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .btn-step-next:hover,
    .btn-proceed:hover,
    .btn-book:hover { opacity: 0.85; }

    .btn-step-next:disabled,
    .btn-proceed:disabled,
    .btn-book:disabled { opacity: 0.4; cursor: not-allowed; }

    /* ─── LOGGED-IN ARTIST NOTICE ─── */
    .booking-artist-notice {
      text-align: center;
      padding: 80px 24px;
      max-width: 520px;
      margin: 0 auto;
    }

    .booking-artist-notice-title {
      margin: 0 0 12px;
    }

    .booking-artist-notice-text {
      margin: 0 0 24px;
      color: #555;
    }

    /* ─── SUCCESS STATE ─── */
    .booking-success {
      display: none;
      padding: 64px var(--px, 24px);
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .booking-success.visible { display: block; }

    .success-icon {
      width: 56px;
      height: 56px;
      background: var(--black, #000);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .success-title {
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .success-body {
      font-size: 14px;
      font-weight: 300;
      color: var(--mid, #636363);
      line-height: 1.8;
    }

    /* ─── GUEST ARTISTS ─── */
    .booking-guest-desc {
      font-size: 12px;
      font-weight: 300;
      color: var(--mid);
      margin-bottom: 16px;
      letter-spacing: 0.02em;
    }

    .guest-artists-section { margin-bottom: 8px; }

    .guest-artists-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .guest-artist-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px;
      border: 1px solid var(--light);
      text-decoration: none;
      color: var(--black);
      transition: border-color 0.15s;
    }

    .guest-artist-card:hover {
      border-color: var(--black);
    }

    .guest-artist-photo {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      background: var(--off-white);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .guest-artist-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%);
    }

    .guest-artist-initials {
      font-size: 18px;
      font-weight: 700;
      color: var(--mid);
    }

    .guest-artist-info {
      flex: 1;
    }

    .guest-artist-name {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .guest-artist-styles {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--mid);
    }

    .guest-artist-cta {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--mid);
      flex-shrink: 0;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .booking-layout {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .booking-summary {
        position: static;
      }
      .summary-stepper {
        flex-direction: row;
        gap: 0;
        margin-bottom: 24px;
        overflow-x: auto;
      }
      .summary-step {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        border-left: none;
        border-top: 2px solid var(--light, #e0e0e0);
        padding: 12px 10px;
        min-width: 72px;
      }
      .summary-step.is-current,
      .summary-step.is-done {
        border-left: none;
        border-top-color: var(--black, #000);
      }
    }

    @media (max-width: 768px) {
      .booking-hero {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .booking-layout {
        padding-bottom: 120px;
      }
      .form-row { grid-template-columns: 1fr; }
      .artist-selector { grid-template-columns: 1fr; }

      /* Sticky bottom CTA — one step per screen */
      .step-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        margin-top: 0;
        padding: 12px var(--px, 20px);
        background: var(--white, #fff);
        border-top: 1px solid var(--light, #e0e0e0);
        box-shadow: 0 -6px 20px rgba(0,0,0,0.06);
      }
      .btn-step-next,
      .btn-proceed,
      .btn-book {
        flex: 1;
        padding: 16px;
      }
      .calendar { max-width: none; }
    }
