.day-card,
    .time-card {
      min-height: 108px;
      padding: 16px;
      border-radius: 24px;
      display: grid;
      gap: 6px;
      text-align: left;
    }

    .day-card strong,
    .time-card strong {
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .day-card span,
    .time-card span {
      color: var(--text-soft);
      font-size: 13px;
      line-height: 1.36;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 800;
    }

    .option-card.is-active,
    .month-chip.is-active,
    .day-card.is-active,
    .time-card.is-active {
      color: #fff;
      border-color: rgba(255,255,255,0.08);
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 34%),
        linear-gradient(145deg, #3f725a 0%, #234a39 56%, #10251c 100%);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        0 18px 34px rgba(19,49,38,0.18);
    }

    .option-card.is-active .option-card__hint,
    .month-chip.is-active,
    .day-card.is-active span,
    .time-card.is-active span {
      color: rgba(255,255,255,0.76);
    }

    .option-card.is-active {
      border-color: rgba(255,255,255,0.12);
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 34%),
        linear-gradient(145deg, #426f59 0%, #234434 52%, #10231b 100%);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 16px 32px rgba(10, 22, 16, 0.12),
        0 28px 56px rgba(9, 20, 15, 0.14);
    }

    .field-grid {
      display: grid;
      gap: 12px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field label {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #86978f;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 0 18px;
      color: var(--text);
      background: rgba(255,255,255,0.98);
      outline: none;
    }

    .field input {
      min-height: 60px;
    }

    .field textarea {
      min-height: 120px;
      padding-top: 16px;
      padding-bottom: 16px;
      resize: vertical;
    }

    .summary {
      display: grid;
      gap: 10px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(220, 233, 225, 0.54);
      border: 1px solid rgba(58, 112, 87, 0.12);
    }

    .summary-row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      min-width: 0;
      font-size: 14px;
      line-height: 1.45;
      color: var(--text-soft);
    }

    .summary-row span {
      flex: 0 1 38%;
      min-width: 0;
    }

    .summary-row strong {
      flex: 1 1 auto;
      min-width: 0;
      color: var(--text);
      font-size: 15px;
      text-align: right;
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .booking-consents {
      display: grid;
      gap: 12px;
      margin-top: 14px;
      padding: 18px;
      border-radius: 24px;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(19,49,38,0.08);
    }

    .booking-consents h3,
    .booking-consents p {
      margin: 0;
    }

    .booking-consents h3 {
      font-size: 18px;
      line-height: 1.2;
      color: var(--text);
    }

    .booking-consents__intro {
      color: var(--text-soft);
      font-size: 14px;
      line-height: 1.5;
    }

    .booking-consents__top {
      display: grid;
      gap: 10px;
    }

    .booking-consents__accept-all {
      justify-self: flex-start;
      min-height: 42px;
      padding: 0 16px;
      border: 1px solid rgba(19,49,38,0.1);
      border-radius: 999px;
      background: rgba(239, 245, 241, 0.96);
      color: var(--text);
      font-size: 14px;
      font-weight: 800;
      letter-spacing: -0.02em;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
    }

    .booking-consents__accept-all.is-done {
      background: rgba(45, 101, 79, 0.12);
      color: var(--green);
      border-color: rgba(45, 101, 79, 0.18);
    }

    .booking-consent-item {
      display: grid;
      grid-template-columns: 20px minmax(0, 1fr);
      align-items: flex-start;
      gap: 12px;
      color: var(--text);
      font-size: 14px;
      line-height: 1.5;
    }

    .booking-consent-item input {
      width: 20px;
      height: 20px;
      margin: 1px 0 0;
      accent-color: var(--green);
    }

    .booking-consent-item a {
      color: var(--green);
      font-weight: 800;
    }

    .booking-consents__message {
      color: #934848;
      font-size: 14px;
      line-height: 1.45;
    }

    .wizard-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .wizard-button {
      min-height: 62px;
      padding: 0 24px;
      border-radius: 22px;
      font-size: 16px;
      font-weight: 800;
      transition: transform .18s ease, opacity .18s ease, background .18s ease, color .18s ease;
    }

    .wizard-button[disabled] {
      opacity: 0.42;
      cursor: default;
      transform: none;
    }

    .wizard-button.secondary {
      color: var(--text);
      background: rgba(232, 239, 234, 0.96);
      border: 1px solid rgba(19,49,38,0.08);
    }

    .wizard-button.secondary.is-icon-only {
      color: var(--text);
      border: 1px solid rgba(255,255,255,0.52);
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(240,245,241,0.84));
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.82),
        0 10px 24px rgba(18, 38, 29, 0.08);
      backdrop-filter: blur(18px) saturate(130%);
    }

    .wizard-button.primary {
      color: #fff;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 58%, var(--green-dark) 100%);
      box-shadow: 0 18px 34px rgba(19,49,38,0.18);
    }

    .wizard-actions .wizard-button {
      flex: 1 1 220px;
    }

    .wizard-button.is-icon-only {
      flex: 0 0 46px;
      width: 46px;
      min-width: 46px;
      height: 46px;
      min-height: 46px;
      padding: 0;
      justify-content: center;
      font-size: 22px;
      line-height: 1;
    }

    .wizard.is-payment-success .wizard-hero {
      display: none;
    }

    .wizard-panel.is-success-layout {
      gap: 22px;
      padding: 26px;
      background: rgba(255,255,255,0.96);
    }

    .wizard-panel.is-success-layout .status-card {
      gap: 22px;
      padding: 28px;
      border-radius: 32px;
      border-color: rgba(58, 112, 87, 0.12);
      background: rgba(229, 246, 236, 0.68);
      box-shadow: inset 0 0 0 1px rgba(58, 112, 87, 0.08);
    }

    .wizard-panel.is-success-layout .status-card h3 {
      font-size: clamp(28px, 4.2vw, 52px);
      line-height: 0.96;
      letter-spacing: -0.06em;
    }

    .wizard-panel.is-success-layout .status-card p {
      max-width: 34rem;
      font-size: 17px;
      line-height: 1.38;
      color: #6a7f76;
    }

    .wizard-panel.is-success-layout .status-meta {
      padding: 22px 24px;
      border-radius: 28px;
      background: rgba(255,255,255,0.88);
    }

    .wizard-panel.is-success-layout .wizard-actions {
      gap: 14px;
    }

    .wizard-panel.is-success-layout .wizard-actions .wizard-button {
      min-height: 88px;
      border-radius: 30px;
      flex-basis: 100%;
      font-size: clamp(20px, 2.8vw, 28px);
    }

    .wizard-panel.is-success-layout .wizard-button.secondary {
      background: rgba(236, 242, 238, 0.96);
      border: 1px solid rgba(19,49,38,0.08);
    }

    .wizard-panel.is-success-layout .wizard-button.primary {
      box-shadow: none;
    }

    .empty-card {
      display: none;
      padding: 18px 20px;
      color: var(--text);
      background: rgba(255,255,255,0.88);
      border: 1px solid rgba(255,255,255,0.64);
    }

    .empty-card.is-visible {
      display: block;
    }

    .empty-card h3 {
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: 22px;
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .manage-card {
      display: grid;
      gap: 10px;
      margin-top: 0;
      padding: 22px 20px 20px;
      border-radius: var(--radius-xl);
      color: var(--text);
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(247,250,248,0.9));
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 26px 60px rgba(18, 38, 29, 0.12);
    }

    .manage-form {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .manage-input {
      flex: 1 1 260px;
      min-height: 62px;
      padding: 0 20px;
      border-radius: 22px;
      border: 1px solid rgba(19,49,38,0.12);
      background: rgba(246, 249, 247, 0.98);
      color: var(--text);
      font-size: 16px;
      font-weight: 700;
    }

    .manage-results {
      display: grid;
      gap: 10px;
    }

    .manage-history-entry,
    .manage-history-screen {
      display: grid;
      gap: 14px;
      margin-top: 6px;
      padding: 20px;
      border-radius: var(--radius-xl);
      color: var(--text);
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(255,255,255,0.64);
      box-shadow: var(--shadow);
    }

    .manage-history-entry {
      gap: 16px;
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,248,246,0.92));
    }

    .manage-history-screen[hidden],
    .manage-history-entry[hidden] {
      display: none !important;
    }

    .manage-history-screen__top {
      display: grid;
      gap: 14px;
    }

    .manage-history-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .manage-history-filters .month-chip {
      min-height: 56px;
      padding-left: 18px;
      padding-right: 18px;
      font-size: 16px;
    }

    .manage-section {
      display: grid;
      gap: 12px;
    }

    .manage-result {
      display: grid;
      gap: 10px;
      padding: 16px;
      border-radius: 24px;
      border: 1px solid rgba(19,49,38,0.08);
      background: rgba(245, 248, 246, 0.96);
    }

    .manage-result__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .manage-result__head > div {
      min-width: 0;
    }

    .manage-result__title {
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: 20px;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--text);
    }

    .manage-result__status {
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      text-align: center;
      white-space: normal;
      overflow-wrap: anywhere;
      color: var(--text);
      background: rgba(219, 230, 224, 0.95);
    }

    .manage-result__status.is-success {
      background: rgba(217, 239, 225, 1);
    }

    .manage-result__status.is-warning {
      background: rgba(248, 236, 198, 1);
    }

    .manage-result__status.is-danger {
      background: rgba(246, 220, 220, 1);
    }

    .cookie-banner {
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: max(14px, env(safe-area-inset-bottom));
      z-index: 30;
      display: grid;
      gap: 12px;
      padding: 16px;
      border-radius: 24px;
      color: var(--text);
      background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,248,244,0.88));
      border: 1px solid rgba(255,255,255,0.72);
      box-shadow: 0 24px 48px rgba(17,35,28,0.16);
      backdrop-filter: blur(24px);
    }

    .cookie-banner.is-hidden {
      display: none;
    }

    .cookie-banner p {
      font-size: 14px;
      line-height: 1.5;
    }

    .cookie-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .cookie-banner__button,
    .cookie-banner__link {
      min-height: 44px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
    }

    .cookie-banner__button {
      border: none;
      color: #fff;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    }

    .cookie-banner__link {
      color: var(--text);
      border: 1px solid rgba(19,49,38,0.1);
      background: rgba(255,255,255,0.78);
    }

    @media (max-width: 720px) {
      .wizard {
        gap: 12px;
      }

      .page {
        padding-left: 12px;
        padding-right: 12px;
      }

      .empty-state {
        justify-content: flex-start;
        padding: 26px 8px 20px;
        gap: 12px;
      }

      .page-back {
        height: 44px;
        min-height: 44px;
        padding: 0 14px 0 12px;
        font-size: 14px;
      }

      .page-back::before {
        width: 16px;
        height: 16px;
      }

      .empty-state h1 {
        font-size: 25px;
      }

      .empty-state p {
        margin-top: 0;
        font-size: 14px;
        line-height: 1.38;
        max-width: 310px;
      }

      .empty-state__button {
        width: 100%;
        min-height: 68px;
        margin-top: 4px;
        border-radius: 26px;
        font-size: 18px;
      }

      .booking-consents__accept-all {
        width: 100%;
        justify-self: stretch;
      }

      .wizard-hero {
        position: relative;
        padding: 18px 16px 20px;
      }

      .wizard-hero__top {
        display: block;
        min-height: 44px;
      }

      .wizard-close {
        top: 18px;
        right: 16px;
        width: 44px;
        min-width: 44px;
        height: 44px;
        font-size: 0;
      }

      .wizard-close::before {
        width: 16px;
        height: 16px;
      }

      #wizard-back-button {
        position: absolute;
        top: 18px;
        left: 16px;
      }

      .wizard-hero__title {
        gap: 4px;
        padding-top: 52px;
      }

      .wizard-eyebrow {
        font-size: 11px;
        letter-spacing: 0.1em;
      }

      .wizard-hero h2 {
        margin-top: 0;
        font-size: 24px;
        line-height: 0.94;
      }

      .wizard-hero p {
        margin-top: 14px;
        max-width: none;
        font-size: 15px;
        line-height: 1.42;
      }

      .wizard-panel {
        padding: 16px;
      }

      .wizard-button.is-icon-only {
        flex-basis: 44px;
        width: 44px;
        min-width: 44px;
        height: 44px;
        min-height: 44px;
        font-size: 20px;
      }

      .wizard-panel.is-success-layout {
        gap: 18px;
        padding: 18px;
      }

      .wizard-panel.is-success-layout .status-card {
        gap: 18px;
        padding: 20px;
        border-radius: 28px;
      }

      .wizard-panel.is-success-layout .status-card h3 {
        font-size: 24px;
      }

      .wizard-panel.is-success-layout .status-card p {
        font-size: 15px;
        line-height: 1.42;
      }

      .wizard-panel.is-success-layout .status-meta {
        padding: 16px;
        border-radius: 24px;
      }

      .wizard-panel.is-success-layout .wizard-actions {
        gap: 12px;
      }

      .wizard-panel.is-success-layout .wizard-actions .wizard-button {
        min-height: 76px;
        border-radius: 26px;
        font-size: 18px;
      }

      .manage-card,
      .manage-result,
      .manage-history-entry,
      .manage-history-screen {
        padding: 18px;
      }

      .manage-card {
        gap: 10px;
        margin-top: 0;
        padding: 20px 18px 18px;
      }

      .manage-form > * {
        width: 100%;
      }

      .summary-row {
        flex-direction: column;
        gap: 4px;
      }

      .summary-row span,
      .summary-row strong {
        flex: none;
      }

      .summary-row strong {
        text-align: left;
      }

      .wizard-actions .wizard-button:not(.is-icon-only) {
        flex-basis: 100%;
      }

      .manage-result__head {
        flex-direction: column;
        align-items: stretch;
      }

      .manage-result__status {
        align-self: flex-start;
        max-width: 100%;
      }

      .manage-history-filters {
        display: grid;
        grid-template-columns: 1fr;
      }

      .manage-history-filters .month-chip {
        width: 100%;
      }

      .panel-head h3 {
        font-size: 24px;
      }

      .option-grid,
      .month-grid,
      .day-grid,
      .time-grid {
        grid-template-columns: 1fr;
      }

      .option-card {
        min-height: 132px;
        padding: 16px;
      }
    }
