#bellevue-booking-root {
  --shore-bg: #f5f5f5;
  --shore-card: #ffffff;
  --shore-border: #dddddd;
  --shore-text: #444444;
  --shore-muted: #808080;
  --shore-accent: #e9945d;
  --shore-hero-width: 1184px;
  min-height: 100vh;
  background: var(--shore-bg);
  color: var(--shore-text);
  font-family: Arial, Helvetica, sans-serif;
}

#bellevue-booking-root *,
#bellevue-booking-root *::before,
#bellevue-booking-root *::after {
  box-sizing: border-box;
}

#bellevue-booking-root button,
#bellevue-booking-root input,
#bellevue-booking-root select,
#bellevue-booking-root textarea {
  appearance: none;
  box-shadow: none;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

#bellevue-booking-root button {
  min-width: 0;
  margin: 0;
  outline: 0;
  transform: none;
  vertical-align: top;
}

#bellevue-booking-root button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.shorelike-booking {
  min-height: 100vh;
  background: var(--shore-bg);
}

.shorelike-hero {
  background: #fff;
}

.shorelike-hero__image {
  width: min(var(--shore-hero-width), 100%);
  height: 220px;
  margin: 0 auto;
  position: relative;
  background-size: cover;
  background-position: center 39%;
}

.shorelike-hero__title {
  position: absolute;
  left: 112px;
  bottom: 0;
  min-width: 590px;
  padding: 14px 18px 18px;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
}

.shorelike-hero__title h1 {
  margin: 0 0 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.shorelike-hero__title a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.shorelike-hero__title a::before {
  content: "●";
  margin-right: 8px;
  font-size: 13px;
}

.shorelike-topbar {
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-bottom: 1px solid var(--shore-border);
  background: #fff;
}

.shorelike-topbar__item {
  min-width: 132px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid var(--shore-border);
  border-radius: 0;
  background: #fff;
  color: var(--shore-text);
  text-decoration: underline;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.shorelike-topbar__item:last-child {
  border-right: 1px solid var(--shore-border);
  text-decoration: none;
}

.shorelike-topbar__external,
.shorelike-topbar__dot,
.shorelike-topbar__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
  line-height: 1;
}

.shorelike-topbar__external::before {
  content: "\2197";
  font-size: 18px;
  line-height: 1;
}

.shorelike-topbar__dot::before {
  content: "";
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: currentColor;
}

.shorelike-topbar__chevron::before {
  content: "\2304";
  font-size: 15px;
  line-height: 1;
  transform: translateY(-1px);
}

.shorelike-topbar__address-text {
  display: inline;
  white-space: nowrap;
}

.shorelike-layout {
  width: min(990px, calc(100vw - 32px));
  margin: 26px auto 0;
}

.shorelike-card {
  background: transparent;
}

.shorelike-steps {
  display: none;
}

.shorelike-card__grid {
  display: block;
}

.shorelike-content {
  min-width: 0;
}

.shorelike-panel {
  display: grid;
  gap: 26px;
}

.shorelike-panel__head h2,
.shorelike-success h2 {
  margin: 0;
  color: var(--shore-text);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.shorelike-panel__head p,
.shorelike-success p {
  margin: 8px 0 0;
  color: var(--shore-muted);
  font-size: 14px;
  line-height: 1.5;
}

.shorelike-notice {
  padding: 12px 14px;
  border: 1px solid #f1d6c0;
  border-radius: 3px;
  background: #fff8f2;
  color: #7c5435;
  font-size: 14px;
  line-height: 1.55;
}

.shorelike-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.shorelike-service {
  position: relative;
  width: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 48px 17px 16px;
  border: 1px solid var(--shore-border);
  border-radius: 3px;
  background: var(--shore-card);
  color: var(--shore-text);
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
}

.shorelike-service:hover,
.shorelike-service.is-selected {
  border-color: #d6d6d6;
  background: #fff;
}

.shorelike-service strong {
  display: block;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.shorelike-service small {
  display: block;
  color: var(--shore-muted);
  font-size: 13px;
  line-height: 1.35;
}

.shorelike-service__meta {
  display: block;
  position: static;
}

.shorelike-service__numbers {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--shore-accent);
}

.shorelike-service__numbers small,
.shorelike-service__numbers strong {
  margin: 0;
  color: var(--shore-accent);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

#bellevue-booking-root .shorelike-checkmark {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px !important;
  height: 26px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 26px !important;
  min-height: 26px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid #d7d7d7 !important;
  border-radius: 4px !important;
  background: linear-gradient(180deg, #f8f8f8, #eeeeee) !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.13) !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  transform: none !important;
  vertical-align: top !important;
  z-index: 1 !important;
}

#bellevue-booking-root .shorelike-checkmark__tick {
  display: block !important;
  color: #fff !important;
  font-size: 17px !important;
  line-height: 1 !important;
}

#bellevue-booking-root .shorelike-service.is-selected .shorelike-checkmark,
#bellevue-booking-root .shorelike-service[data-selected="true"] .shorelike-checkmark {
  border-color: #e9945d !important;
  background: #e9945d !important;
  box-shadow: none !important;
}

#bellevue-booking-root .shorelike-service.is-selected .shorelike-checkmark::after,
#bellevue-booking-root .shorelike-service[data-selected="true"] .shorelike-checkmark::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.shorelike-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding-bottom: 32px;
}

.shorelike-help {
  margin-right: auto;
  color: var(--shore-muted);
  font-size: 13px;
}

.shorelike-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #fff;
  color: var(--shore-text);
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}

.shorelike-button--primary {
  border-color: #e9945d !important;
  background: #e9945d !important;
  color: #fff !important;
}

.shorelike-options,
.shorelike-date-row,
.shorelike-slots,
.shorelike-form,
.shorelike-summary {
  display: grid;
  gap: 12px;
}

.shorelike-scheduling {
  display: grid;
  gap: 28px;
}

.shorelike-subsection {
  display: grid;
  gap: 16px;
}

.shorelike-subsection p {
  margin: 0;
  color: var(--shore-muted);
  font-size: 14px;
  line-height: 1.45;
}

.shorelike-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--shore-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.shorelike-section-title span,
.shorelike-checkout-nav span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--shore-border);
  border-radius: 50%;
  background: #fff;
  color: var(--shore-accent);
  font-size: 12px;
  font-weight: 400;
}

.shorelike-section-title span,
.shorelike-checkout-nav span.is-active {
  border-color: #e9945d !important;
  background: #e9945d !important;
  color: #fff !important;
}

.shorelike-checkout-nav {
  display: none;
}

.shorelike-option,
.shorelike-date,
.shorelike-slot {
  min-height: 48px;
  border: 1px solid var(--shore-border);
  border-radius: 3px;
  background: #fff;
  color: var(--shore-text);
  cursor: pointer;
}

.shorelike-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  text-align: left;
}

.shorelike-option strong,
.shorelike-option small {
  display: block;
}

.shorelike-option small {
  margin-top: 4px;
  color: var(--shore-muted);
  font-size: 13px;
  line-height: 1.35;
}

.shorelike-option.is-selected,
.shorelike-date.is-selected,
.shorelike-slot.is-selected {
  border-color: #e9945d !important;
  color: #e9945d !important;
}

.shorelike-date.is-selected small {
  color: #fff !important;
}

.shorelike-date.is-selected {
  background: #e9945d !important;
  color: #fff !important;
}

.shorelike-date.is-selected span {
  color: #fff !important;
}

.shorelike-slot.is-selected {
  border-color: #e9945d !important;
  background: #fff7f1 !important;
  color: #e9945d !important;
}

.shorelike-slot.is-selected span {
  color: #e9945d !important;
}

.shorelike-avatar {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eee;
  color: var(--shore-muted);
}

.shorelike-resource-select {
  position: relative;
  width: min(250px, 100%);
}

.shorelike-resource-select::after {
  content: "⌄";
  position: absolute;
  right: 16px;
  top: 50%;
  color: var(--shore-muted);
  pointer-events: none;
  transform: translateY(-53%);
}

.shorelike-resource-select select {
  width: 100%;
  min-height: 37px;
  padding: 0 38px 0 16px;
  border: 1px solid var(--shore-border);
  border-radius: 3px;
  background: #fff;
  color: var(--shore-muted);
  appearance: none;
  font: inherit;
  font-size: 14px;
}

.shorelike-calendar {
  border: 1px solid var(--shore-border);
  border-radius: 3px;
  background: #fff;
}

.shorelike-calendar__month {
  min-height: 74px;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  padding: 0 24px;
  color: var(--shore-text);
  font-size: 16px;
  text-align: center;
}

.shorelike-calendar__month button {
  border: 0;
  background: transparent;
  color: var(--shore-muted);
  font-size: 42px;
  font-weight: 300;
}

.shorelike-calendar__month strong {
  font-size: 17px;
  font-weight: 400;
}

.shorelike-calendar__weekdays,
.shorelike-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.shorelike-calendar__weekdays {
  padding: 0 32px 11px;
  color: var(--shore-text);
  font-size: 14px;
  text-align: center;
}

.shorelike-calendar__days {
  gap: 0;
  padding: 0 32px 31px;
}

.shorelike-date-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shorelike-date {
  width: 33px;
  min-height: 33px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
}

.shorelike-date span,
.shorelike-date small {
  display: inline;
  line-height: 1.1;
}

.shorelike-date span {
  font-size: 14px;
}

.shorelike-date small {
  display: none;
}

.shorelike-date:disabled {
  background: transparent;
  color: #c2c2c2;
  text-decoration: line-through;
  opacity: 1;
}

.shorelike-slots {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.shorelike-slots-wrap {
  margin: 0 -1px -1px;
  padding: 25px 32px 32px;
  background: #f5f5f5;
}

.shorelike-slots-wrap h3 {
  margin: 0 0 16px;
  color: var(--shore-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.shorelike-slot {
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 14px 0 20px;
  text-align: center;
}

.shorelike-slot span:first-child {
  justify-self: center;
}

.shorelike-slot span:last-child {
  color: #d5d5d5;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

.shorelike-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shorelike-form label {
  display: grid;
  gap: 7px;
}

.shorelike-form label span {
  color: var(--shore-text);
  font-size: 13px;
  font-weight: 700;
}

.shorelike-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background: #fff;
}

.shorelike-phone-field input {
  border-color: #c94f42;
}

.shorelike-phone-field small {
  color: #c94f42;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.shorelike-form__full {
  grid-column: 1 / -1;
}

.shorelike-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--shore-muted);
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.shorelike-check input[type="checkbox"] {
  position: relative !important;
  z-index: 1 !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  flex: 0 0 20px !important;
  display: inline-block !important;
  margin: 1px 0 0 !important;
  padding: 0 !important;
  border: 1px solid var(--shore-border) !important;
  border-radius: 3px !important;
  background: #fff !important;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08) !important;
  cursor: pointer !important;
  opacity: 1 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  pointer-events: auto !important;
  transform: none !important;
  vertical-align: top !important;
}

.shorelike-check input[type="checkbox"]:checked {
  border-color: #e9945d !important;
  background: #e9945d !important;
}

.shorelike-check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.shorelike-check input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(233, 148, 93, 0.35) !important;
  outline-offset: 2px !important;
}

.shorelike-text-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--shore-accent);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shorelike-text-link:focus-visible {
  outline: 2px solid rgba(233, 148, 93, 0.35);
  outline-offset: 2px;
}

.shorelike-error {
  padding: 12px 14px;
  border: 1px solid #efc5c0;
  border-radius: 3px;
  background: #fff5f4;
  color: #9c342d;
  font-size: 14px;
}

.shorelike-summary {
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--shore-border);
  background: #fff;
}

.shorelike-summary h3 {
  margin: 0;
  font-size: 18px;
}

.shorelike-summary dl,
.shorelike-summary dd {
  margin: 0;
}

.shorelike-summary div {
  padding: 10px 0;
  border-bottom: 1px solid var(--shore-border);
}

.shorelike-summary dt {
  color: var(--shore-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.shorelike-summary dd {
  margin-top: 4px;
  color: var(--shore-text);
  font-size: 14px;
}

.shorelike-success {
  padding: 24px;
  border: 1px solid var(--shore-border);
  background: #fff;
}

.shorelike-modal {
  position: fixed;
  z-index: 999999;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.shorelike-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}

.shorelike-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 36px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
}

.shorelike-modal__head,
.shorelike-modal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--shore-border);
}

.shorelike-modal__head h2 {
  margin: 0;
  color: var(--shore-text);
  font-size: 18px;
}

.shorelike-modal__close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--shore-border);
  border-radius: 999px;
  background: #fff;
  color: var(--shore-text);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.shorelike-modal__frame {
  width: 100%;
  height: min(620px, calc(100vh - 170px));
  border: 0;
  background: #fff;
}

.shorelike-modal__foot {
  border-top: 1px solid var(--shore-border);
  border-bottom: 0;
}

.shorelike-modal__foot a {
  color: var(--shore-accent);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 700px) {
  #bellevue-booking-root {
    background: #f4f4f4;
  }

  .shorelike-hero__image,
  .shorelike-hero__title {
    display: none;
  }

  .shorelike-topbar {
    height: 52px;
    justify-content: flex-start;
    overflow: hidden;
  }

  .shorelike-topbar__item {
    min-width: auto;
    height: 52px;
    padding: 0 15px;
    flex: 0 0 auto;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
  }

  .shorelike-topbar__address {
    width: 67px;
    color: transparent;
    overflow: hidden;
  }

  .shorelike-topbar__address .shorelike-topbar__external {
    color: var(--shore-text);
    font-size: 18px;
  }

  .shorelike-topbar__address-text {
    display: none;
  }

  .shorelike-topbar__language {
    width: 118px;
  }

  .shorelike-layout {
    width: 100%;
    margin: 0;
    padding: 25px 16px 0;
  }

  .shorelike-layout.is-step-2 {
    padding: 0;
  }

  .shorelike-modal {
    padding: 0;
  }

  .shorelike-modal__panel {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }

  .shorelike-modal__frame {
    flex: 1;
    height: auto;
  }

  .shorelike-modal__foot {
    align-items: stretch;
    flex-direction: column;
  }

  .shorelike-panel {
    gap: 25px;
  }

  .shorelike-scheduling {
    padding: 18px 16px 78px;
  }

  .shorelike-panel--checkout {
    gap: 0;
  }

  .shorelike-checkout-nav {
    height: 53px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-bottom: 1px solid var(--shore-border);
    background: #fff;
  }

  .shorelike-checkout-nav strong {
    margin-right: 4px;
    color: var(--shore-text);
    font-size: 14px;
    font-weight: 400;
  }

  .shorelike-checkout-nav button {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: var(--shore-muted);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
  }

  .shorelike-resource-select {
    width: 250px;
  }

  .shorelike-calendar__month {
    min-height: 74px;
    padding: 0 24px;
  }

  .shorelike-calendar__weekdays,
  .shorelike-calendar__days {
    padding-left: 32px;
    padding-right: 32px;
  }

  .shorelike-slots-wrap {
    padding: 25px 32px 32px;
  }

  .shorelike-panel__head h2 {
    font-size: 22px;
    font-weight: 400;
  }

  .shorelike-panel__head p,
  .shorelike-notice,
  .shorelike-help,
  .shorelike-steps,
  .shorelike-summary {
    display: none;
  }

  .shorelike-services {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .shorelike-service {
    min-height: 91px;
    padding: 17px 54px 17px 16px;
    border-radius: 3px;
  }

  .shorelike-checkmark {
    display: block;
    top: 17px;
    right: 16px;
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
  }

  .shorelike-service strong {
    font-size: 15px;
  }

  .shorelike-service small {
    font-size: 13px;
  }

  .shorelike-actions {
    position: sticky;
    bottom: 0;
    z-index: 5;
    margin: 4px -16px 0;
    padding: 12px 16px;
    background: rgba(244, 244, 244, 0.96);
    border-top: 1px solid var(--shore-border);
  }

  .shorelike-panel--checkout .shorelike-actions {
    margin: 0;
  }

  .shorelike-button {
    width: 100%;
  }

  .shorelike-date-row,
  .shorelike-form {
    grid-template-columns: 1fr;
  }
}
