  .slider-style-1__item__img img {
    max-height: 88px;
  }

  body.ivx-booking-modal-open {
    overflow: hidden;
  }

  .ivx-booking-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 99999;
  }

  .ivx-booking-modal.is-open {
    display: block;
  }

  .ivx-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 41, .34);
    backdrop-filter: blur(2px);
  }

  .ivx-booking-modal__dialog {
    position: relative;
    width: min(780px, calc(100% - 24px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    margin: 20px auto;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #d9edf1;
    box-shadow: 0 18px 42px rgba(0, 74, 96, .16);
    padding: 24px;
    font-family: inherit;
  }

  .ivx-booking-modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #6b7280;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .ivx-booking-modal__steps {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .ivx-booking-modal__step {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #00bad4;
    color: #007f92;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    background: #fff;
  }

  .ivx-booking-modal__step.is-active,
  .ivx-booking-modal__step.is-done {
    background: #00bad4;
    border-color: #00bad4;
    color: #fff;
  }

  .ivx-booking-modal__head {
    text-align: center;
    padding: 12px 44px 0;
  }

  .ivx-booking-modal__title {
    margin: 0;
    color: #16324f;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
  }

  .ivx-booking-modal__sub {
    margin: 8px 0 0;
    color: #6b7280;
    font-size: 13px;
  }

  .ivx-booking-modal__body {
    margin-top: 18px;
  }

  .ivx-booking-modal__panel {
    background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
    border: 1px solid #d9edf1;
    border-radius: 14px;
    padding: 18px;
  }

  .ivx-booking-modal__info-list {
    display: grid;
    gap: 10px;
  }

  .ivx-booking-modal__info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d9edf1;
  }

  .ivx-booking-modal__info-item--date {
    align-items: center;
  }

  .ivx-booking-modal__label,
  .ivx-booking-modal__field span {
    display: block;
    color: #16324f;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 14px;
  }

  .ivx-booking-modal__value {
    display: block;
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: right;
  }


  .ivx-booking-modal__value.is-skeleton {
    position: relative;
    min-width: 180px;
    min-height: 18px;
    color: transparent;
  }

  .ivx-booking-modal__value.is-skeleton::after {
    content: '';
    display: block;
    width: min(220px, 100%);
    height: 18px;
    margin-left: auto;
    border-radius: 999px;
    background: linear-gradient(90deg, #e8f4f7 25%, #f5fbfd 50%, #e8f4f7 75%);
    background-size: 200% 100%;
    animation: ivxBookingSkeleton 1.2s ease-in-out infinite;
  }

  @keyframes ivxBookingSkeleton {
    0% {
      background-position: 200% 0;
    }

    100% {
      background-position: -200% 0;
    }
  }

  .ivx-booking-modal__date-picker {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 170px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
  }

  .ivx-booking-modal__date-picker input,
  .ivx-booking-modal__field input,
  .ivx-booking-modal__field select {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid #cfe3e7;
    background: #fff;
    box-shadow: none;
    padding: 0 14px;
    color: #1f2937;
    font-size: 14px;
  }

  .ivx-booking-modal__date-picker input:focus,
  .ivx-booking-modal__field input:focus,
  .ivx-booking-modal__field select:focus {
    outline: none;
    border-color: #00bad4;
    box-shadow: 0 0 0 3px rgba(0, 186, 212, .12);
  }

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

  .ivx-booking-modal__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  #ui-datepicker-div {
    z-index: 100001 !important;
  }

  body.ivx-datepicker-active #ui-datepicker-div {
    display: block !important;
    z-index: 100001 !important;
  }

  #ui-datepicker-div.ivx-simple-datepicker {
    width: min(286px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    padding: 8px 10px 10px;
    border: 1px solid #d9dfe7;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
    font-family: Arial, sans-serif;
    box-sizing: border-box;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111827;
    font-weight: 600;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-prev,
  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-next {
    position: static;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    color: #374151;
    cursor: pointer;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-prev span,
  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-next span {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    text-indent: 0;
    overflow: visible;
    background: none;
    font-size: 18px;
    line-height: 1;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-month,
  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-year {
    font-weight: 700;
  }

  #ui-datepicker-div.ivx-simple-datepicker table {
    width: 100%;
    margin: 8px 0 0;
    font-size: 13px;
    table-layout: fixed;
  }

  #ui-datepicker-div.ivx-simple-datepicker th {
    padding: 4px 0 6px;
    color: #111827;
    font-weight: 700;
    width: 14.2857%;
  }

  #ui-datepicker-div.ivx-simple-datepicker td {
    padding: 1px;
    width: 14.2857%;
  }

  #ui-datepicker-div.ivx-simple-datepicker td span,
  #ui-datepicker-div.ivx-simple-datepicker td a {
    width: 100%;
    height: 32px;
    line-height: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #111827;
    text-align: center;
  }

  #ui-datepicker-div.ivx-simple-datepicker td a:hover {
    background: #eef2ff;
    color: #111827;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-state-active,
  #ui-datepicker-div.ivx-simple-datepicker .ui-widget-content .ui-state-active {
    background: #1976f3;
    color: #fff;
    font-weight: 700;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-state-highlight,
  #ui-datepicker-div.ivx-simple-datepicker .ui-widget-content .ui-state-highlight {
    background: #eff6ff;
    color: #1976f3;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-other-month span,
  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-other-month a,
  #ui-datepicker-div.ivx-simple-datepicker .ui-state-disabled {
    color: #9ca3af;
    opacity: 1;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-buttonpane {
    margin: 8px 0 0;
    padding: 6px 0 0;
    border: 0;
    background: transparent;
  }

  #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-buttonpane button {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1976f3;
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
  }

  .ivx-booking-modal__time {
    width: 100%;
    border: 1px solid #d9edf1;
    border-radius: 12px;
    background: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }

  .ivx-booking-modal__time.is-active {
    background: rgba(0, 186, 212, .08);
    border-color: #00bad4;
    box-shadow: inset 0 0 0 1px rgba(0, 186, 212, .08);
  }

  .ivx-booking-modal__time-main {
    color: #16324f;
    font-size: 18px;
    font-weight: 700;
  }

  .ivx-booking-modal__time-meta {
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
  }

  .ivx-booking-modal__selection-note {
    margin-top: 14px;
    text-align: center;
    color: #16324f;
    font-size: 14px;
    font-weight: 700;
  }

  .ivx-booking-modal__summary-card,
  .ivx-booking-modal__total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    background: transparent;
    border: 0;
  }

  .ivx-booking-modal__summary-type {
    color: #16324f;
    font-size: 16px;
    font-weight: 700;
  }

  .ivx-booking-modal__summary-price,
  .ivx-booking-modal__total-row strong {
    color: #ff8d02;
    font-size: 18px;
    font-weight: 700;
  }

  .ivx-booking-modal__total-row strong {
    min-width: 140px;
    text-align: right;
  }

  .ivx-booking-modal__counter {
    position: relative;
    width: 108px;
    min-width: 108px;
    height: 28px;
    margin-left: auto;
    color: #16324f;
  }

  .ivx-booking-modal__counter button {
    position: absolute;
    top: 0;
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
    border-radius: 50%;
    border: 1px solid #00bad4;
    background: #fff;
    color: #00bad4;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    box-sizing: border-box;
    appearance: none;
  }

  .ivx-booking-modal__counter button[data-qty="decrease"] {
    left: 0;
  }

  .ivx-booking-modal__counter button[data-qty="increase"] {
    right: 0;
  }

  .ivx-booking-modal__counter strong {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    margin-left: 0;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-8px);
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-variant-numeric: tabular-nums;
  }

  .ivx-booking-modal__form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
  }

  .ivx-booking-modal__field {
    display: block;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
  }

  .ivx-booking-modal__field--accent,
  .ivx-booking-modal__field--soft {
    background: transparent;
    border-color: transparent;
  }

  .ivx-booking-modal__footer {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .ivx-booking-modal__btn {
    min-width: 120px;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
  }

  .ivx-booking-modal__btn--ghost {
    background: #fff;
    border-color: #cfe3e7;
    color: #16324f;
  }

  .ivx-booking-modal__btn--primary {
    margin-left: auto;
    background: #ff8d02;
    border-color: #ff8d02;
    color: #fff;
  }

  .ivx-booking-modal__message {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .ivx-booking-modal__message.is-error {
    background: #fff1f0;
    border: 1px solid #ffccc7;
    color: #cf1322;
  }

  .ivx-booking-modal__message.is-success {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    color: #389e0d;
  }

  @media (max-width: 767px) {
    .ivx-booking-modal__dialog {
      width: calc(100% - 12px);
      margin: 6px auto;
      padding: 20px 14px 16px;
      border-radius: 16px;
    }

    .ivx-booking-modal__head {
      padding: 10px 26px 0;
    }

    .ivx-booking-modal__title {
      font-size: 20px;
    }

    .ivx-booking-modal__info-item,
    .ivx-booking-modal__summary-card,
    .ivx-booking-modal__total-row,
    .ivx-booking-modal__time,
    .ivx-booking-modal__footer {
      flex-direction: column;
      align-items: stretch;
    }

    .ivx-booking-modal__panel {
      padding: 14px;
    }

    .ivx-booking-modal__info-item {
      gap: 12px;
      padding: 14px;
    }

    .ivx-booking-modal__value {
      text-align: left;
      width: 100%;
      word-break: break-word;
    }

    .ivx-booking-modal__date-picker {
      width: 100%;
      min-width: 0;
      align-items: stretch;
      text-align: left;
    }

    .ivx-booking-modal__date-picker input {
      width: 100%;
    }

    .ivx-booking-modal__value.is-skeleton::after {
      margin-left: 0;
    }

    .ivx-booking-modal__form-grid {
      grid-template-columns: 1fr;
    }

    #ui-datepicker-div.ivx-simple-datepicker {
      width: calc(100vw - 24px) !important;
      max-width: calc(100vw - 24px) !important;
      box-sizing: border-box;
      left: 12px !important;
      right: auto !important;
      transform: none !important;
    }

    #ui-datepicker-div.ivx-simple-datepicker .ui-datepicker-group {
      width: 100% !important;
      float: none !important;
    }

    #ui-datepicker-div.ivx-simple-datepicker table {
      width: 100% !important;
      table-layout: fixed;
      display: block;
    }

    #ui-datepicker-div.ivx-simple-datepicker thead,
    #ui-datepicker-div.ivx-simple-datepicker tbody,
    #ui-datepicker-div.ivx-simple-datepicker tr {
      display: table;
      width: 100%;
      table-layout: fixed;
    }

    #ui-datepicker-div.ivx-simple-datepicker th,
    #ui-datepicker-div.ivx-simple-datepicker td {
      width: 14.2857% !important;
    }

    #ui-datepicker-div.ivx-simple-datepicker td span,
    #ui-datepicker-div.ivx-simple-datepicker td a {
      height: 36px;
      line-height: 36px;
    }

    .ivx-booking-modal__btn,
    .ivx-booking-modal__btn--primary {
      width: 100%;
      margin-left: 0;
    }

    .ivx-booking-modal__counter {
      margin-left: auto;
    }
  }