  .trainly-booking-summary {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 12px 0;
  }

  .trainly-booking {
    position: relative;
  }

  .trainly-booking-upcoming {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    box-sizing: border-box;
  }

  .trainly-booking-upcoming p {
    margin: 0;
  }

  .trainly-booking-upcoming .button {
    width: auto;
    align-self: center;
    border-radius: 4px;
    background: #4b78d7;
    border-color: #4b78d7;
    color: #fff;
    font-weight: 550;
    box-shadow: none;
  }

  .trainly-booking-upcoming__id {
    margin-top: -10px;
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
  }

  .trainly-booking-price-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
    text-align: left;
  }

  .trainly-booking-price-row__icon {
    color: #4b78d7;
    display: inline-flex;
  }

  .trainly-booking-price-row__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .trainly-booking-price-row__title {
    margin-top: -4px;
    font-weight: 500;
    display: block;
  }

  .trainly-booking-price-row__note {
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    display: block;
  }

  .trainly-booking-photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
  }

  .trainly-booking-mobile-hero {
    display: none;
  }

  .trainly-booking-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #0f172a;
    font-weight: 600;
  }

  .trainly-booking-overlay.is-visible {
    display: flex;
  }

  .trainly-booking-overlay__spinner {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }

  .trainly-booking-overlay__spinner span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #4b78d7;
    opacity: 0.7;
    animation: trainly-bounce 0.6s infinite alternate;
  }

  .trainly-booking-overlay__spinner span:nth-child(2) {
    animation-delay: 0.15s;
  }

  .trainly-booking-overlay__spinner span:nth-child(3) {
    animation-delay: 0.3s;
  }

  .trainly-booking-overlay__label {
    font-size: 14px;
  }

  .trainly-booking-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 12px;
    right: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    z-index: 10000;
  }

  .trainly-booking-date-picker {
    display: grid;
    gap: 10px;
    margin: 12px 0 6px;
  }

  .trainly-booking-date-title {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #0f172a;
  }

  .trainly-booking-month-row {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 8px;
  }

  .trainly-booking-month-label {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    text-transform: capitalize;
  }

  .trainly-booking-month-btn {
    border: 1px solid #dcdfe5;
    border-radius: 8px;
    background: #fff;
    color: #111827;
    font-size: 16px;
    line-height: 1;
    padding: 8px 6px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }

  .trainly-booking-month-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .trainly-booking-week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
  }

  .trainly-booking-week-grid.is-transitioning {
    position: relative;
  }

  .trainly-booking-week-grid.is-transitioning.slide-left {
    animation: trainly-week-slide-left 0.2s ease;
  }

  .trainly-booking-week-grid.is-transitioning.slide-right {
    animation: trainly-week-slide-right 0.2s ease;
  }

  .trainly-weekday {
    display: grid;
    gap: 4px;
    padding: 10px 6px;
    border: 1px solid #dcdfe5;
    border-radius: 10px;
    background: #fff;
    color: #0f172a;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  }

  .trainly-weekday.is-selected {
    background: #4b78d7;
    border-color: #4b78d7;
    color: #fff;
    box-shadow: 0 6px 16px rgba(75, 120, 215, 0.18);
  }

  .trainly-weekday.is-today:not(.is-selected) {
    border-color: #4b78d7;
    box-shadow: 0 0 0 2px rgba(75, 120, 215, 0.16);
  }

  .trainly-weekday.is-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: #dcdfe5;
    background: #fff;
    color: #0f172a;
  }

  .trainly-weekday.trainly-weekday--no-times {
    cursor: pointer;
  }

  .trainly-weekday.is-loading {
    position: relative;
    overflow: hidden;
    color: #0f172a;
    border-color: #dcdfe5;
    background: #fff;
    cursor: default;
    pointer-events: none;
  }

  .trainly-weekday.is-loading::after {
    content: none;
  }

  .trainly-weekday__letter {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .trainly-weekday__date {
    font-size: 16px;
    font-weight: 700;
  }

  .trainly-confirm-time--mobile {
    display: none;
  }

  .trainly-booking-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .trainly-booking-topbar {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 52px;
  }

  .trainly-booking-main {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .trainly-booking-sidebar {
    display: none;
  }

  .trainly-booking-sidebar-card {
    position: static;
    top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e6e8f0;
    border-radius: 4px;
    background: #fff;
    height: 100%;
    max-height: 100%;
    overflow: auto;
  }

  .trainly-booking-sidebar-top {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .trainly-booking-sidebar-photo img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
  }

  .trainly-booking-sidebar-name {
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0f172a;
  }

  .trainly-booking-sidebar-meta {
    font-size: 14px;
    color: #4b5563;
    margin-top: 2px;
  }

  .trainly-booking-sidebar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e6e8f0;
  }

  .trainly-booking-sidebar-row__label {
    color: #4b5563;
    font-weight: 600;
  }

  .trainly-booking-sidebar-row__value {
    color: #0f172a;
    font-weight: 700;
  }

  .trainly-booking-sidebar-note {
    font-size: 14px;
    color: #8a5800;
    background: #fff8e5;
    border: 1px solid #f1d48f;
    border-radius: 10px;
    padding: 10px 12px;
  }

  .trainly-booking-sidebar-price {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    color: #4b5563;
  }

  .trainly-booking-sidebar-selected {
    display: grid;
    gap: 10px;
    flex: 1 1 auto;
  }

  .trainly-booking-sidebar-selected__info {
    display: grid;
    gap: 10px;
  }

  .trainly-booking-sidebar-selected.is-empty {
    display: none;
  }

  .trainly-booking-sidebar-selected__row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
  }

  .trainly-booking-sidebar-selected__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b78d7;
  }

  .trainly-booking-sidebar-selected__icon svg {
    width: 20px;
    height: 20px;
  }

  .trainly-booking-sidebar-selected__value {
    flex: 1 1 auto;
    line-height: 1.4;
  }

  .trainly-change-time {
    margin-top: 4px;
  }

  .trainly-change-time__link {
    color: #4b78d7;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
  }

  .trainly-booking-sidebar-cta-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
  }

  .trainly-booking-sidebar-divider {
    width: 100%;
    height: 1px;
    background: #e6e8f0;
  }

  .trainly-booking-sidebar-login-note {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
  }

  .trainly-booking-sidebar-login {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 14px;
    font-weight: 550;
    border-radius: 4px;
    box-shadow: none;
  }

  .trainly-booking-sidebar-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .trainly-booking-sidebar-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
  }

  .trainly-booking-sidebar-total__label {
    color: #4b5563;
  }

  .trainly-booking-sidebar-total__value {
    font-weight: 700;
  }

  .trainly-booking-sidebar-cta {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-weight: 550;
    border-radius: 4px;
    background: #4b78d7;
    border-color: #4b78d7;
    box-shadow: none;
  }

  .trainly-booking-sidebar-cta:hover {
    text-decoration: underline;
  }

  .trainly-booking-sidebar-cta[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
  }

  .trainly-booking-confirm {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .trainly-booking-confirm__summary {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .trainly-booking-summary--confirm {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .trainly-booking-summary__details {
    flex: 1 1 auto;
    text-align: center;
  }

  .trainly-booking-confirm__time-card {
    margin: 16px 0;
    padding: 12px 14px;
    border: 1px solid #e5e7ef;
    border-radius: 6px;
    background: #f8fafc;
    text-align: center;
    max-width: 420px;
    width: 100%;
  }

  .trainly-booking-confirm__time-row {
    font-weight: 500;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }

  .trainly-booking-confirm__location-row {
    margin-top: 6px;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }

  .trainly-booking-confirm__login {
    margin: 18px 0;
    text-align: center;
  }

  .trainly-booking-payment-card {
    border: 1px solid #e5e7ef;
    border-radius: 6px;
    background: #fff;
    padding: 14px 16px;
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    text-align: left;
    margin: 0 auto;
  }

  .trainly-booking-payment-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
  }

  .trainly-booking-payment-note {
    display: none;
    width: 100%;
    max-width: 420px;
    text-align: left;
    margin: 0 auto;
    font-size: 14px;
    color: #4b5563;
  }

  .trainly-booking-payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6e8f0;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
  }

  .trainly-booking-payment-option__radio {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #4b78d7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .trainly-booking-payment-option__radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4b78d7;
  }

  .trainly-booking-policies {
    border: 1px solid #e5e7ef;
    border-radius: 6px;
    background: #fff;
    width: 100%;
    max-width: 420px;
    text-align: left;
    margin: 0 auto;
    overflow: hidden;
  }

  .trainly-booking-policies__summary {
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    list-style: none;
  }

  .trainly-booking-policies__summary::-webkit-details-marker {
    display: none;
  }

  .trainly-booking-policies__summary::marker {
    content: '';
  }

  .trainly-booking-policies__summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .trainly-booking-policies[open] .trainly-booking-policies__summary::after {
    transform: rotate(-135deg);
  }

  .trainly-booking-policies__summary:focus-visible {
    outline: 2px solid #4b78d7;
    outline-offset: 2px;
  }

  .trainly-booking-policies__content {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid #e6e8f0;
  }

  .trainly-booking-policy__title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
  }

  .trainly-booking-policy__text {
    margin-top: 4px;
    font-size: 14px;
    color: #4b5563;
  }

  .trainly-booking-close__text {
    display: none;
    font-size: 15px;
    font-weight: 600;
  }

  /* Desktop-only chrome */
  .trainly-booking-topbar {
    display: block;
  }

  .trainly-booking-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    height: 100%;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
  }

  .trainly-booking-topbar__title {
    display: none;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
  }

  .trainly-booking-topbar__title.is-visible {
    display: block;
    pointer-events: auto;
    animation: trainly-topbar-title-fade 0.18s ease forwards;
  }

  .trainly-time-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-top: 10px;
    align-content: start;
    justify-items: stretch;
    align-self: start;
    width: 100%;
  }

  .trainly-time-grid .trainly-booking-next-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 6px 14px;
    border: 1px solid #4b78d7;
    border-radius: 4px;
    background: #4b78d7;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
  }

  .trainly-time-grid .trainly-booking-next-btn:hover,
  .trainly-time-grid .trainly-booking-next-btn:focus-visible {
    background: #355fb1;
    border-color: #355fb1;
  }

  .trainly-time-slot-row {
    display: flex;
    gap: 0;
    width: 100%;
    align-items: stretch;
    justify-content: flex-start;
  }

  .trainly-time-slot-row.is-selected {
    gap: 8px;
  }

  .trainly-time-slot {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    border: 1px solid #dcdfe5;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    width: 100%;
    cursor: pointer;
    flex: 1 1 100%;
    max-width: 100%;
    min-height: 52px;
  }

  .trainly-time-slot.is-selected {
    border-color: #4b78d7;
    background: #f5f7ff;
    box-shadow: 0 6px 14px rgba(75, 120, 215, 0.16);
    flex-direction: row;
    align-items: stretch;
    transform: none;
    gap: 0;
  }

  .trainly-time-slot-row.is-selected .trainly-time-slot {
    flex: 1 1 0;
    max-width: none;
    align-self: flex-start;
  }

  .trainly-time-slot.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
  }

  .trainly-time-slot__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    margin: 0;
    justify-content: center;
    text-align: center;
    transition: justify-content 0.15s ease, text-align 0.15s ease, transform 0.15s ease;
    width: 100%;
    flex: 1 1 0;
  }

  .trainly-time-slot__label input {
    display: none;
  }

  .trainly-time-slot__time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .trainly-time-slot__cta {
    justify-self: stretch;
    width: 0;
    max-width: 0;
    flex: 0 0 0;
    min-width: 0;
    min-height: 0;
    opacity: 0;
    transform: translateX(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, max-width 0.18s ease, flex-basis 0.18s ease;
    white-space: nowrap;
    padding: 0;
    border: 0;
    border-radius: 4px;
    font-size: 14px;
    align-self: flex-end;
  }

  .trainly-time-slot-row.is-selected .trainly-time-slot__cta {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    max-width: none;
    width: auto;
    flex: 1 1 0;
    padding: 8px 10px;
    border: 1px solid #4b78d7;
    background: #4b78d7;
    color: #fff;
    min-height: 52px;
  }

  .trainly-time-slot-row.is-selected .trainly-time-slot__label {
    justify-content: center;
    text-align: center;
    flex: 1 1 0;
    max-width: none;
  }

  .trainly-booking-has-js [data-trainly-time-submit] {
    display: none !important;
  }

  .trainly-time-grid.is-loading {
    position: relative;
  }

  .trainly-loader-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
  }

  .trainly-loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4b78d7;
    opacity: 0.7;
    animation: trainly-bounce 0.6s infinite alternate;
  }

  .trainly-loader-dots span:nth-child(2) {
    animation-delay: 0.15s;
  }

  .trainly-loader-dots span:nth-child(3) {
    animation-delay: 0.3s;
  }

  .trainly-weekday.will-fade {
    animation: trainly-fade-disable 0.25s ease forwards;
  }

  @keyframes trainly-bounce {
    from { transform: translateY(0); opacity: 0.4; }
    to   { transform: translateY(-4px); opacity: 1; }
  }

  @keyframes trainly-topbar-title-fade {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes trainly-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  @keyframes trainly-week-slide-left {
    0% { transform: translateX(12px); opacity: 0.6; }
    100% { transform: translateX(0); opacity: 1; }
  }

  @keyframes trainly-week-slide-right {
    0% { transform: translateX(-12px); opacity: 0.6; }
    100% { transform: translateX(0); opacity: 1; }
  }

  @keyframes trainly-fade-disable {
    0% { opacity: 1; }
    100% { opacity: 0.45; }
  }

  @keyframes trainly-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @media (min-width: 1025px) {
    .trainly-booking-upcoming__line {
      display: block;
    }

    .trainly-booking-shell--completed .trainly-booking-topbar {
      display: none;
    }

    .trainly-booking-shell--completed .trainly-booking-sidebar {
      display: none;
    }

    .trainly-booking-shell--completed .trainly-booking-layout {
      justify-content: center;
      gap: 0;
    }

    .trainly-booking-shell--completed .trainly-booking-main {
      max-width: none;
      flex: 1 1 100%;
    }

    .trainly-booking-shell--completed .trainly-booking {
      padding: 0;
    }

    body.trainly-booking-page {
      background: #fff;
      overflow: hidden;
    }

    body.trainly-booking-page header,
    body.trainly-booking-page footer,
    body.trainly-booking-page .site-header,
    body.trainly-booking-page .site-footer {
      display: none !important;
    }

    .trainly-booking-shell {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 16px;
      position: fixed;
      inset: 0;
      z-index: 9990;
      overflow-y: auto;
      background: #fff;
    }

    .trainly-booking-topbar {
      display: flex;
      align-items: center;
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      min-height: 52px;
      box-sizing: border-box;
      padding: 12px 0;
      background: #fff;
      border-bottom: 1px solid #e6e8f0;
      z-index: 10001;
    }

    .trainly-booking-layout {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 120px;
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      box-sizing: border-box;
      padding: 0;
      flex: 0 0 auto;
      min-height: auto;
    }

    .trainly-booking-main {
      max-width: 1000px;
      flex: 0 1 62%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    /* Desktop: hide title and summary block */
    .trainly-booking h2,
    .trainly-booking-summary {
      display: none;
    }

    .trainly-booking {
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      padding: 0 20px 24px 0;
      display: flex;
      flex-direction: column;
      flex: 1 1 auto;
      min-height: 0;
    }

    .trainly-booking.trainly-booking-upcoming {
      padding: 24px 16px;
      min-height: 70vh;
      height: 70vh;
    }

    .trainly-booking-sidebar {
      display: block;
      flex: 0 1 38%;
      min-width: 260px;
      position: sticky;
      top: 72px;
      align-self: flex-start;
      height: calc(100vh - 96px);
      padding-bottom: 12px;
      overflow: visible;
    }

    .trainly-booking-close {
      position: static;
      top: auto;
      left: auto;
      right: auto;
      width: auto;
      padding: 0;
      margin: 0 0 0 auto;
      background: transparent;
      border: none;
      font-weight: 500;
      font-size: 0;
      align-self: center;
    }

    .trainly-booking-close::before {
      content: '←';
      font-size: 16px;
      font-weight: 500;
      margin-right: 6px;
    }

    .trainly-booking-close__text {
      display: inline;
      font-weight: 500;
    }

    .trainly-booking-sidebar-card {
      position: static;
      top: auto;
      width: 100%;
      box-sizing: border-box;
      min-height: 100%;
      max-height: 100%;
    }

    .trainly-time-slot__cta {
      display: none !important;
    }

    .trainly-booking-topbar__title {
      display: none;
      opacity: 0;
      pointer-events: none;
    }

    .trainly-booking-topbar__title.is-visible {
      display: block;
      pointer-events: auto;
      animation: trainly-topbar-title-fade 0.18s ease forwards;
    }

    .trainly-booking-date-title {
      display: none;
    }

    .trainly-booking-date-form {
      position: sticky;
      top: 52px;
      background: #fff;
      z-index: 10;
      padding: 12px 0 8px;
      margin: 0 !important;
    }

    .trainly-booking-time-wrapper {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .trainly-booking-time-form {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .trainly-time-grid {
      min-height: 320px;
      padding-bottom: 12px;
    }

    .trainly-booking-sidebar-selected--confirm {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding-bottom: 50px;
    }

    .trainly-booking-sidebar-selected--confirm .trainly-booking-sidebar-selected__info {
      display: grid;
      gap: 10px;
      flex: 1 1 auto;
    }

    .trainly-booking-sidebar-selected--confirm .trainly-booking-sidebar-selected__row {
      gap: 12px;
      font-size: 13px;
      font-weight: 600;
      color: #0f172a;
    }

    .trainly-booking-sidebar-selected--confirm .trainly-booking-sidebar-selected__icon {
      width: 20px;
      height: 20px;
    }

    .trainly-booking-sidebar-selected--confirm .trainly-booking-sidebar-selected__icon svg {
      width: 18px;
      height: 18px;
    }

    .trainly-booking-sidebar-selected--confirm .trainly-change-time {
      margin-top: -6px;
      align-self: flex-start;
      margin-left: auto;
    }

    .trainly-booking-sidebar-selected--confirm .trainly-change-time__link {
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      line-height: 1.2;
    }

    .trainly-booking-sidebar-selected--confirm .trainly-change-time__link:hover {
      text-decoration: none;
    }

    .trainly-booking-confirm {
      align-items: flex-start;
      text-align: left;
    }

    .trainly-booking-confirm__summary {
      display: none;
    }

    .trainly-booking-confirm__cta {
      display: none;
    }

    .trainly-booking-confirm__login {
      display: none;
    }

    .trainly-booking-payment-card,
    .trainly-booking-payment-note,
    .trainly-booking-policies {
      max-width: none;
      margin: 0;
    }

    .trainly-booking-payment-note {
      display: block;
    }
  }

  @media (max-width: 1024px) {
    .trainly-booking-shell--completed .trainly-booking-close {
      display: none;
    }

    .trainly-confirm-time--desktop {
      display: none;
    }
    .trainly-confirm-time--mobile {
      display: inline;
    }
    .trainly-booking-confirm {
      align-items: stretch;
      text-align: left;
    }
    .trainly-booking-confirm__summary {
      align-items: flex-start;
      margin-bottom: -12px;
    }
    .trainly-booking-summary--confirm {
      justify-content: flex-start;
      text-align: left;
      align-items: flex-start;
    }
    .trainly-booking-summary__details {
      text-align: left;
    }
    .trainly-booking-confirm__time-card {
      max-width: none;
      text-align: left;
      margin-left: 0;
      margin-right: 0;
      background: #fff;
    }
    .trainly-booking-confirm__time-row,
    .trainly-booking-confirm__location-row {
      justify-content: flex-start;
    }
    .trainly-booking-confirm__login {
      text-align: center;
    }
    .trainly-booking-confirm__login .button {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .trainly-booking-confirm__cta {
      width: 100%;
    }
    .trainly-booking-confirm__cta .button {
      width: 100%;
    }
    .trainly-booking-payment-note {
      display: block;
    }
  }

  @media (max-width: 768px) {
    .trainly-booking.trainly-booking-upcoming {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px 16px;
      min-height: 100vh;
    }

    body.trainly-booking-page {
      background: #fff;
      overflow: hidden;
    }

    body.trainly-booking-page header,
    body.trainly-booking-page footer,
    body.trainly-booking-page .site-header,
    body.trainly-booking-page .site-footer {
      display: none !important;
    }

    .trainly-booking {
      position: fixed;
      inset: 0;
      z-index: 9990;
      display: block;
      overflow-y: auto;
      padding: 18px 16px 24px;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      border-radius: 0;
    }

    .trainly-booking--choose {
      display: flex;
      flex-direction: column;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .trainly-booking--choose .trainly-booking-time-wrapper {
      display: flex;
      flex-direction: column;
      flex: 1 1 0;
      min-height: 0;
      overflow-x: hidden;
      overflow-y: auto;
    }

    .trainly-booking--choose .trainly-booking-time-form {
      display: flex;
      flex-direction: column;
      flex: 1 1 0;
      min-height: 0;
    }

    .trainly-booking--choose .trainly-time-grid {
      flex: 1 1 0;
      width: 100%;
      align-self: stretch;
    }

    .trainly-booking-close {
      top: 12px;
      right: 12px;
      padding: 6px 10px;
      font-size: 16px;
    }

    .trainly-booking-close:focus-visible {
      outline: 2px solid #4b78d7;
      outline-offset: 2px;
    }

    .trainly-booking-mobile-hero {
      display: grid;
      gap: 6px;
      margin: 0 0 18px;
      text-align: center;
      justify-items: center;
    }

    .trainly-booking-mobile-title {
      font-size: 14px;
      font-weight: 600;
      color: #4b78d7;
      letter-spacing: 0.01em;
      text-transform: uppercase;
    }

    .trainly-booking-mobile-coach {
      font-size: 22px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1.3;
    }

    .trainly-booking-mobile-meta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #1f2937;
      font-size: 14px;
      font-weight: 500;
      justify-content: center;
    }

    .trainly-booking-mobile-meta__icon {
      width: 24px;
      height: 24px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #4b78d7;
    }

    .trainly-booking-mobile-meta__icon svg {
      width: 20px;
      height: 20px;
    }

    .trainly-booking-mobile-meta__text {
      line-height: 1.2;
    }

    .trainly-booking h2,
    .trainly-booking-summary {
      display: none;
    }
  }
