:root {
  --hp-font: Inter, "Tilda Sans", TildaSans, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --hp-bg: #ffffff;
  --hp-page: rgba(12, 12, 12, 0.48);
  --hp-text: #171717;
  --hp-muted: rgba(23, 23, 23, 0.58);
  --hp-line: rgba(0, 0, 0, 0.1);
  --hp-soft: #f7f4ef;
  --hp-warm: #c98538;
  --hp-warm-dark: #9d5f1e;
  --hp-danger: #b42318;
  --hp-success: #1f7a4d;
  --hp-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

html.hp-booking-lock,
html.hp-booking-lock body {
  overflow: hidden;
}

.hp-booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  background: var(--hp-page);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.hp-booking-overlay.is-open {
  display: grid;
  place-items: stretch;
}

.hp-booking-shell {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--hp-bg);
  border: 0;
  border-radius: 0;
  box-shadow: var(--hp-shadow);
  overflow: hidden;
  font-family: var(--hp-font);
  color: var(--hp-text);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hp-booking-overlay.is-open .hp-booking-shell {
  transform: translateY(0);
  opacity: 1;
}

.hp-booking-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px 9px;
  border-bottom: 1px solid var(--hp-line);
}

.hp-booking-brandline {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 10px;
  background: #fff;
  min-width: 0;
}

.hp-brand-main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.hp-widget-version {
  color: var(--hp-muted);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.hp-brand-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.hp-booking-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.hp-progress-line {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
}

.hp-progress-line span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 25%;
  border-radius: inherit;
  background: var(--hp-warm);
  transition: width 180ms ease;
}

.hp-booking-logo {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.hp-city-control,
.hp-city-chip {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  background: #fff;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1;
}

.hp-city-control {
  padding: 0 7px 0 9px;
}

.hp-city-chip {
  padding: 0 10px;
}

.hp-city-control span {
  color: var(--hp-muted);
}

.hp-city-control select {
  max-width: 118px;
  border: 0;
  background: transparent;
  color: var(--hp-ink);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  outline: 0;
}

.hp-booking-step {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--hp-muted);
  font: inherit;
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  cursor: default;
}

.hp-booking-step:not(:empty) {
  cursor: pointer;
}

.hp-city-hint {
  position: relative;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(201, 133, 56, 0.22);
  border-radius: 999px;
  background: #fffaf3;
  color: var(--hp-warm-dark);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(157, 95, 30, 0.07);
  transform-origin: 100% 50%;
  animation: hp-city-hint-in 240ms cubic-bezier(0.2, 0.9, 0.2, 1.1) both;
}

.hp-city-hint.is-leaving {
  animation: hp-city-hint-out 180ms ease-in both;
}

.hp-city-hint::before {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid rgba(201, 133, 56, 0.22);
  border-top: 1px solid rgba(201, 133, 56, 0.22);
  background: #fffaf3;
  transform: translateY(-50%) rotate(45deg);
}

.hp-city-hint span {
  color: #cf4b68;
}

@keyframes hp-city-hint-in {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hp-city-hint-out {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
}

.hp-club-badge {
  display: inline-flex;
  max-width: 100%;
  gap: 5px;
  align-items: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff6e9;
  color: #75420f;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.hp-booking-close,
.hp-booking-back {
  width: 36px;
  height: 36px;
  border: 1px solid var(--hp-line);
  border-radius: 50%;
  background: #fff;
  color: var(--hp-text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.hp-booking-back {
  font-size: 26px;
}

.hp-booking-back:disabled {
  cursor: default;
  opacity: 0.24;
}

.hp-booking-body {
  min-height: 0;
  overflow: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 10px 16px 20px;
}

.hp-booking-body::-webkit-scrollbar {
  display: none;
}

.hp-screen-title {
  margin: 0 0 7px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 700;
}

.hp-screen-copy {
  margin: 0 0 16px;
  color: var(--hp-muted);
  font-size: 14px;
  line-height: 1.45;
}

.hp-stack {
  display: grid;
  gap: 10px;
}

.hp-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.hp-card {
  width: 100%;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-align: left;
  font: inherit;
}

button.hp-card {
  cursor: pointer;
}

.hp-card:hover {
  border-color: rgba(201, 133, 56, 0.48);
}

.hp-card.featured {
  background: #fffaf3;
  border-color: rgba(201, 133, 56, 0.36);
}

.hp-card-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 650;
}

.hp-card-meta,
.hp-small {
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-card-arrow {
  color: var(--hp-warm-dark);
  font-size: 15px;
  line-height: 1;
  font-weight: 650;
}

.hp-price {
  font-weight: 700;
  white-space: nowrap;
}

.hp-price-promo {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 8px;
  text-align: right;
}

.hp-price-old {
  color: var(--hp-muted);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.hp-price-club {
  color: #18723f;
}

.hp-price-club .hp-price-note {
  flex-basis: 100%;
  color: #18723f;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.1;
}

.hp-offer-stack {
  gap: 12px;
}

.hp-service-card {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.hp-service-card.featured {
  margin-top: 14px;
  padding: 18px 12px 14px;
  border-color: rgba(201, 133, 56, 0.58);
  background: #fffaf3;
}

.hp-service-card.skeleton {
  pointer-events: none;
  cursor: default;
}

.hp-skeleton-badge,
.hp-skeleton-line,
.hp-skeleton-image {
  border-radius: 999px;
  background: linear-gradient(90deg, #f3f3f3 0%, #fafafa 45%, #f3f3f3 90%);
  background-size: 220% 100%;
  animation: hp-skeleton 900ms ease-in-out infinite;
}

.hp-skeleton-badge {
  position: absolute;
  top: -13px;
  left: 14px;
  width: 138px;
  height: 24px;
}

.hp-skeleton-line {
  height: 14px;
  margin: 10px 0;
}

.hp-skeleton-line.wide {
  width: 82%;
  height: 18px;
}

.hp-skeleton-line.short {
  width: 48%;
}

.hp-skeleton-image {
  width: 96px;
  height: 104px;
  border-radius: 8px;
}

.hp-service-badge {
  position: absolute;
  top: -13px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: #f7e6d0;
  color: #75420f;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.hp-service-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 10px;
  align-items: center;
}

.hp-service-main img {
  width: 90px;
  height: 104px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--hp-soft);
}

.hp-service-features {
  display: grid;
  gap: 8px;
  margin: 14px 0 12px;
  color: rgba(23, 23, 23, 0.68);
  font-size: 13px;
  line-height: 1.3;
}

.hp-service-features span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 10px 1px 0;
  border-radius: 50%;
  border: 1.5px solid var(--hp-warm);
}

.hp-offer-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 10px;
  padding: 4px 2px;
  color: rgba(23, 23, 23, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.hp-offer-note span:first-child {
  color: #cf4c61;
  font-size: 17px;
  line-height: 1;
}

.hp-location-card {
  grid-template-columns: 84px 1fr;
  align-items: start;
}

.hp-location-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hp-location-filters::-webkit-scrollbar {
  display: none;
}

.hp-location-filters button {
  flex: 0 0 auto;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: rgba(23, 23, 23, 0.72);
  font: inherit;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.hp-location-filters button.active {
  border-color: rgba(157, 95, 30, 0.72);
  background: #fff6e9;
  color: var(--hp-warm-dark);
  font-weight: 650;
  box-shadow: inset 0 0 0 1px rgba(157, 95, 30, 0.18);
}

.hp-flow-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  justify-content: space-between;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-flow-line span {
  color: rgba(23, 23, 23, 0.72);
  font-weight: 600;
}

.hp-flow-line button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--hp-warm-dark);
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.hp-location-image {
  width: 84px;
  height: 84px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d8b27a, #7f8fa3);
  object-fit: cover;
}

.hp-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}

.hp-location-tags em {
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--hp-soft);
  color: rgba(23, 23, 23, 0.64);
  font-size: 11px;
  font-style: normal;
  line-height: 1;
}

.hp-weather {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: #80603b;
  font-size: 12px;
  line-height: 1.35;
}

.hp-weather-card {
  width: 178px;
  min-width: 178px;
  max-width: 178px;
  min-height: 46px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  justify-self: start;
  padding: 7px 10px;
  border: 1px solid rgba(201, 133, 56, 0.2);
  border-radius: 8px;
  background: #fffaf3;
  color: rgba(23, 23, 23, 0.72);
  font-size: 12px;
  line-height: 1.25;
}

.hp-weather-symbol {
  width: 18px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  filter: saturate(1.35);
}

.hp-weather-card.sunny .hp-weather-symbol {
  color: #f5a623;
}

.hp-weather-card.cloudy .hp-weather-symbol {
  color: #5f8fb8;
}

.hp-weather-card.rainy .hp-weather-symbol {
  color: #4f86c6;
}

.hp-weather-card strong {
  display: block;
  min-height: 15px;
  color: var(--hp-text);
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-weather-card em {
  display: block;
  min-height: 14px;
  margin-top: 2px;
  color: var(--hp-muted);
  font-size: 11px;
  font-style: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp-weather.large {
  font-size: 13px;
  font-weight: 650;
}

.hp-picker {
  display: grid;
  gap: 20px;
}

.hp-picker-section {
  display: grid;
  gap: 10px;
}

.hp-section-head {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.hp-section-title {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.hp-location-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(118px, 1fr);
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hp-location-strip::-webkit-scrollbar {
  display: none;
}

.hp-location-strip.can-scroll-right {
  -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), rgba(0, 0, 0, 0.18));
  mask-image: linear-gradient(90deg, #000 calc(100% - 28px), rgba(0, 0, 0, 0.18));
}

.hp-location-strip.can-scroll-left {
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18), #000 28px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.18), #000 28px);
}

.hp-location-strip.can-scroll-left.can-scroll-right {
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18),
    #000 28px,
    #000 calc(100% - 28px),
    rgba(0, 0, 0, 0.18)
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.18),
    #000 28px,
    #000 calc(100% - 28px),
    rgba(0, 0, 0, 0.18)
  );
}

.hp-location-tile {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-rows: 76px auto;
  gap: 7px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  padding: 6px;
  background: #fff;
  color: var(--hp-text);
  text-align: left;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  scroll-snap-align: start;
}

.hp-location-tile img {
  width: 100%;
  height: 76px;
  border-radius: 6px;
  object-fit: cover;
}

.hp-location-tile.active {
  border-color: var(--hp-warm);
  box-shadow: 0 10px 30px rgba(201, 133, 56, 0.16);
}

.hp-location-tile.active::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #171717;
  color: #fff;
  font-size: 12px;
}

.hp-mini-link {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--hp-warm-dark);
  padding: 0;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}

.hp-calendar-toggle {
  justify-self: start;
  display: inline-flex;
  min-height: 30px;
  gap: 5px;
  align-items: center;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  padding: 0 10px;
  background: #fff;
  color: rgba(23, 23, 23, 0.68);
  font: inherit;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
}

.hp-calendar-toggle span {
  color: var(--hp-warm-dark);
  font-size: 13px;
  line-height: 1;
}

.hp-calendar-toggle.active {
  border-color: rgba(201, 133, 56, 0.38);
  background: #fffaf3;
  color: var(--hp-warm-dark);
}

.hp-date-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.hp-mini-card {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(201, 133, 56, 0.46);
  border-radius: 8px;
  padding: 13px 34px 13px 13px;
  background: #fffaf3;
  color: var(--hp-text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.hp-mini-card::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--hp-warm-dark);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.hp-mini-card strong {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 750;
}

.hp-mini-card span {
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-date-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hp-date-row::-webkit-scrollbar {
  display: none;
}

.hp-date-filters {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.hp-date-filters button {
  flex: 0 0 auto;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: rgba(23, 23, 23, 0.72);
  font: inherit;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.hp-date-filters button.active {
  border-color: rgba(201, 133, 56, 0.55);
  background: #fffaf3;
  color: var(--hp-warm-dark);
  font-weight: 650;
}

.hp-date-pill {
  min-width: 84px;
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 3px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  padding: 8px 7px;
  background: #fff;
  color: var(--hp-text);
  font: inherit;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.hp-date-pill span {
  color: var(--hp-muted);
  font-size: 11px;
}

.hp-date-pill em {
  color: var(--hp-success);
  font-size: 10px;
  font-style: normal;
}

.hp-date-pill.active {
  border-color: var(--hp-warm);
  background: #fffaf3;
}

.hp-date-pill.skeleton,
.hp-time-pill.skeleton {
  pointer-events: none;
  border-color: rgba(0, 0, 0, 0.07);
  background: linear-gradient(90deg, #f3f3f3 0%, #fafafa 45%, #f3f3f3 90%);
  background-size: 220% 100%;
  animation: hp-skeleton 900ms ease-in-out infinite;
}

.hp-date-pill.more {
  border-style: dashed;
}

.hp-calendar {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
}

.hp-calendar-title {
  font-size: 14px;
  font-weight: 650;
  text-transform: capitalize;
}

.hp-calendar-head {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  gap: 8px;
  align-items: center;
}

.hp-booking-shell .hp-calendar-head button {
  width: 28px;
  height: 28px;
  min-width: 28px;
  max-width: 28px;
  min-height: 28px;
  max-height: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 0;
  background: #fafafa;
  color: rgba(23, 23, 23, 0.78);
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.hp-calendar-head .hp-calendar-title {
  text-align: center;
}

.hp-calendar-weekdays,
.hp-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.hp-calendar-weekdays span {
  color: var(--hp-muted);
  font-size: 10px;
  line-height: 1;
  text-align: center;
}

.hp-calendar-day,
.hp-calendar-empty {
  min-height: 38px;
  border-radius: 8px;
}

.hp-calendar-day {
  position: relative;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(23, 23, 23, 0.34);
  font: inherit;
  font-size: 13px;
}

.hp-calendar-day.available {
  border-color: var(--hp-line);
  background: #fff;
  color: var(--hp-text);
  cursor: pointer;
}

.hp-calendar-day.active {
  border-color: var(--hp-warm);
  background: #fffaf3;
}

.hp-calendar-day em {
  position: absolute;
  top: 3px;
  right: 4px;
  color: var(--hp-success);
  font-size: 9px;
  font-style: normal;
  line-height: 1;
}

.hp-time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hp-time-grid > .hp-note {
  grid-column: 1 / -1;
}

.hp-time-pill {
  display: grid;
  gap: 2px;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  padding: 6px 4px;
  background: #fff;
  color: var(--hp-text);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
}

.hp-time-main,
.hp-time-sub {
  display: block;
  min-width: 0;
}

.hp-time-sub {
  color: var(--hp-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.hp-time-pill.active {
  border-color: #171717;
  background: #171717;
  color: #fff;
}

.hp-time-pill.active .hp-time-sub {
  color: rgba(255, 255, 255, 0.72);
}

.hp-time-pill:disabled {
  cursor: not-allowed;
  opacity: 0.34;
  background: #f7f7f7;
}

@keyframes hp-skeleton {
  0% {
    background-position: 100% 0;
  }

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

.hp-selected-card {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(201, 133, 56, 0.44);
  border-radius: 8px;
  background: #fffaf3;
}

.hp-selected-card img {
  width: 74px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.hp-selected-card span {
  display: block;
  margin-top: 3px;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-selected-card.unavailable {
  border-color: rgba(180, 35, 24, 0.22);
  background: #fff7f6;
}

.hp-selected-card.unavailable b {
  color: var(--hp-danger);
  font-size: 12px;
}

.hp-footer-choice {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 2px;
  font-size: 13px;
  line-height: 1.35;
}

.hp-footer-choice.muted {
  color: var(--hp-muted);
}

.hp-form {
  display: grid;
  gap: 12px;
}

.hp-contact-form {
  max-width: 420px;
}

.hp-contact-form .hp-input,
.hp-contact-form .hp-textarea {
  padding-top: 9px;
  padding-bottom: 9px;
}

.hp-contact-form .hp-textarea {
  min-height: 48px;
}

.hp-contact-context {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
  padding: 10px;
  border: 1px solid rgba(201, 133, 56, 0.2);
  border-radius: 8px;
  background: #fffaf3;
  color: var(--hp-text);
  font-size: 13px;
  line-height: 1.35;
}

.hp-contact-context img {
  width: 76px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--hp-soft);
}

.hp-contact-context span {
  min-width: 0;
  color: var(--hp-muted);
}

.hp-contact-context strong,
.hp-contact-context b {
  color: var(--hp-text);
  font-weight: 650;
}

.hp-contact-context b {
  white-space: nowrap;
  align-self: start;
}

.hp-account-button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  background: #fff;
  display: inline-grid;
  place-items: center;
  color: var(--hp-muted);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}

.hp-account-button.is-verified {
  border-color: rgba(20, 122, 70, 0.3);
  background: rgba(20, 122, 70, 0.08);
  color: #147a46;
}

.hp-account-panel {
  position: absolute;
  right: 16px;
  top: 78px;
  z-index: 10;
  width: min(340px, calc(100vw - 32px));
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(201, 133, 56, 0.36);
  border-radius: 10px;
  background: #fffaf4;
  box-shadow: 0 18px 46px rgba(23, 23, 23, 0.14);
}

.hp-account-title {
  color: var(--hp-text);
  font-size: 16px;
  font-weight: 800;
}

.hp-account-panel p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 13px;
  line-height: 1.35;
}

.hp-account-member {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
}

.hp-account-member b,
.hp-account-member span,
.hp-account-member em {
  color: var(--hp-muted);
  font-style: normal;
}

.hp-account-member b {
  font-weight: 700;
}

.hp-account-benefits {
  display: grid;
  gap: 4px;
}

.hp-account-benefits p {
  color: var(--hp-text);
  font-weight: 650;
}

.hp-account-benefits ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-account-benefits li::before {
  content: "•";
  margin-right: 6px;
  color: var(--hp-warm-dark);
}

.hp-account-wallet {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.hp-account-wallet > p,
.hp-account-wallet-group > span {
  margin: 0;
  color: var(--hp-text);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 650;
}

.hp-account-wallet-group {
  display: grid;
  gap: 2px;
}

.hp-account-wallet-group ul {
  display: grid;
  gap: 2px;
  margin: 0 0 2px;
  padding: 0;
  list-style: none;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-account-wallet-group li::before {
  content: "•";
  margin-right: 6px;
  color: var(--hp-warm-dark);
}

.hp-account-wallet-group b {
  color: var(--hp-text);
  font-weight: 700;
}

.hp-account-wallet-group em {
  color: var(--hp-muted);
  font-style: normal;
}

.hp-account-wallet-empty {
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-account-login-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.hp-account-login-button {
  min-height: 44px;
  white-space: nowrap;
}

.hp-account-status {
  color: var(--hp-warm-dark) !important;
}

.hp-account-status.error {
  color: #b33030 !important;
}

.hp-account-logout {
  justify-self: start;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--hp-warm-dark);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.hp-account-logout.inline {
  margin-top: -2px;
}

.hp-label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
}

.hp-input,
.hp-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  padding: 12px 13px;
  font-family: var(--hp-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--hp-text);
  background: #fff;
}

.hp-input::placeholder,
.hp-textarea::placeholder {
  color: rgba(23, 23, 23, 0.42);
  font-weight: 400;
}

.hp-textarea {
  min-height: 58px;
  resize: vertical;
}

.hp-input:focus,
.hp-textarea:focus {
  outline: 2px solid rgba(201, 133, 56, 0.22);
  border-color: var(--hp-warm);
}

.hp-telegram-subtle {
  justify-self: start;
  border: 0;
  background: transparent;
  color: var(--hp-warm-dark);
  padding: 0;
  text-align: left;
  font: inherit;
  font-size: 12px;
  line-height: 1.35;
  cursor: pointer;
}

.hp-telegram-subtle span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hp-telegram-subtle button {
  border: 0;
  background: transparent;
  padding: 0 0 0 6px;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.hp-telegram-subtle.verified,
.hp-telegram-subtle.muted {
  cursor: default;
}

.hp-telegram-subtle.verified {
  color: #147a46;
}

.hp-telegram-subtle.muted {
  color: var(--hp-muted);
}

.hp-field-note {
  display: block;
  margin-top: 6px;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-field-error {
  color: var(--hp-danger);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.hp-input[readonly] {
  background: #f8f6f2;
  color: var(--hp-muted);
}

.hp-safe-note {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 2px 0;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hp-safe-icon {
  position: relative;
  width: 11px;
  height: 9px;
  margin-top: 4px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.hp-safe-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -7px;
  width: 5px;
  height: 7px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.hp-safe-note a {
  color: var(--hp-warm-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hp-error-text {
  color: var(--hp-danger);
  font-size: 12px;
  line-height: 1.35;
}

.hp-order-card {
  overflow: hidden;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
}

.hp-order-hero {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: stretch;
  padding: 10px 10px 9px;
}

.hp-order-hero img {
  width: 82px;
  height: 82px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--hp-soft);
}

.hp-order-main {
  display: grid;
  align-content: space-between;
  gap: 8px;
  min-width: 0;
}

.hp-order-card .hp-card-title {
  font-size: 15px;
  line-height: 1.25;
}

.hp-order-price {
  font-size: 15px;
  line-height: 1.25;
  white-space: nowrap;
}

.hp-order-meta {
  display: grid;
  gap: 4px;
  color: rgba(23, 23, 23, 0.66);
  font-size: 12px;
  line-height: 1.35;
}

.hp-order-meta-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 8px;
  align-items: start;
}

.hp-order-meta-row i {
  grid-row: 1 / span 2;
  color: rgba(23, 23, 23, 0.5);
  font-style: normal;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
}

.hp-order-meta-row b,
.hp-order-meta-row em {
  display: block;
  font-style: normal;
  font-weight: 400;
}

.hp-order-meta-row em {
  color: rgba(23, 23, 23, 0.48);
  font-size: 11px;
}

.hp-summary-grid {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.hp-summary-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
  color: rgba(23, 23, 23, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.hp-summary-card h3 {
  margin: 0;
  color: var(--hp-text);
  font-size: 14px;
  line-height: 1.25;
}

.hp-summary-card p {
  margin: 0;
}

.hp-panel-heading {
  margin: 0;
  padding: 0 2px;
  color: var(--hp-text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.hp-check-list {
  display: grid;
  gap: 5px;
  margin: -2px 12px 12px;
  padding: 0;
  list-style: none;
  color: rgba(23, 23, 23, 0.7);
  font-size: 12px;
  line-height: 1.35;
}

.hp-check-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--hp-success);
  font-weight: 700;
}

.hp-weather-panel {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 8px 0 0;
  padding: 8px 10px;
  border: 1px solid rgba(71, 137, 190, 0.18);
  border-radius: 999px;
  background: #f7fbff;
  color: rgba(23, 23, 23, 0.74);
}

.hp-weather-panel i {
  color: #e2a129;
  font-size: 17px;
  font-style: normal;
  line-height: 1;
}

.hp-weather-panel span {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  min-width: 0;
  font-size: 12px;
  line-height: 1.25;
}

.hp-weather-panel b,
.hp-weather-panel em {
  font-style: normal;
}

.hp-weather-panel b {
  color: var(--hp-text);
  font-weight: 750;
}

.hp-weather-panel em {
  color: rgba(23, 23, 23, 0.68);
}

.hp-summary-reassurance {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: center;
  margin-top: 8px;
  color: rgba(23, 23, 23, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.hp-summary-reassurance span:first-child {
  color: #d24b68;
  font-size: 15px;
  line-height: 1;
}

.hp-summary-club {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(201, 133, 56, 0.28);
  border-radius: 8px;
  background: #fffaf4;
}

.hp-summary-club strong,
.hp-summary-club span {
  display: block;
  line-height: 1.3;
}

.hp-summary-club strong {
  color: var(--hp-text);
  font-size: 13px;
  font-weight: 750;
}

.hp-summary-club span {
  margin-top: 2px;
  color: var(--hp-muted);
  font-size: 12px;
}

.hp-summary-club-applied {
  border-color: rgba(34, 128, 76, 0.22);
  background: #f5fbf7;
}

.hp-summary-club-applied span {
  color: #18723f;
}

.hp-certificate-panel {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 170px);
  gap: 10px;
  align-items: end;
  margin-top: 8px;
  padding: 9px 10px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
}

.hp-certificate-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.hp-certificate-copy strong {
  color: var(--hp-text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.hp-certificate-copy span {
  color: var(--hp-muted);
  font-size: 11px;
  line-height: 1.3;
}

.hp-certificate-input {
  display: grid;
  gap: 3px;
}

.hp-certificate-input span {
  color: var(--hp-muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.hp-certificate-input input {
  width: 100%;
  height: 38px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  padding: 0 10px;
  color: var(--hp-text);
  font: inherit;
  font-size: 15px;
  font-weight: 750;
  text-transform: uppercase;
}

.hp-certificate-input input:focus {
  border-color: var(--hp-accent);
  outline: none;
  box-shadow: 0 0 0 1px var(--hp-accent);
}

.hp-addons-panel {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.hp-addons-heading {
  display: grid;
  gap: 2px;
}

.hp-addons-heading strong {
  color: var(--hp-text);
  font-size: 13px;
  font-weight: 800;
}

.hp-addons-heading span {
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-addons-box {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
}

.hp-addon-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 7px 10px;
  background: #fff;
}

.hp-addon-card + .hp-addon-card {
  border-top: 1px solid var(--hp-line);
}

.hp-addon-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.hp-addon-copy strong {
  color: var(--hp-text);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.hp-addon-copy span {
  color: var(--hp-muted);
  font-size: 11px;
  line-height: 1.25;
}

.hp-addon-side {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.hp-addon-price {
  display: grid;
  justify-items: end;
  gap: 0;
  color: var(--hp-text);
  font-size: 11px;
  line-height: 1.08;
  white-space: nowrap;
}

.hp-addon-price s {
  color: var(--hp-muted);
}

.hp-addon-price b {
  color: var(--hp-text);
  font-weight: 750;
}

.hp-switch {
  position: relative;
  width: 42px;
  height: 24px;
  border: 1px solid var(--hp-line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.hp-switch span {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(23, 23, 23, 0.36);
  transition: transform 160ms ease, background 160ms ease;
}

.hp-switch.active {
  border-color: rgba(20, 122, 70, 0.42);
  background: rgba(20, 122, 70, 0.12);
}

.hp-switch.active span {
  transform: translateX(18px);
  background: var(--hp-success);
}

.hp-important-panel {
  display: grid;
  gap: 8px;
}

.hp-important-list {
  overflow: hidden;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
}

.hp-important-item {
  border-top: 1px solid var(--hp-line);
}

.hp-important-item summary {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
  color: rgba(23, 23, 23, 0.84);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  list-style: none;
  cursor: pointer;
}

.hp-important-item summary::-webkit-details-marker {
  display: none;
}

.hp-important-item summary span {
  color: var(--hp-muted);
}

.hp-important-item p {
  margin: -2px 12px 12px;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.4;
}

.hp-promocode-panel {
  display: grid;
  gap: 8px;
}

.hp-promocode-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--hp-line);
  border-radius: 8px;
  background: #fff;
}

.hp-promocode-box p {
  margin: 0;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.35;
}

.hp-booking-footer {
  display: grid;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--hp-line);
  background: #fff;
}

.hp-primary,
.hp-secondary,
.hp-link-button {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}

.hp-primary {
  border: 0;
  background: #151515;
  color: #fff;
}

.hp-payment-safe {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: var(--hp-muted);
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

.hp-primary:disabled {
  cursor: not-allowed;
  opacity: 0.44;
}

.hp-secondary {
  border: 1px solid var(--hp-line);
  background: #fff;
  color: var(--hp-text);
}

.hp-link-button {
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--hp-warm-dark);
  padding: 5px 0;
  font-size: 13px;
}

.hp-note {
  padding: 12px;
  border-radius: 8px;
  background: #eff6ff;
  color: #184e7a;
  font-size: 13px;
  line-height: 1.45;
}

.hp-note.compact {
  padding: 10px 12px;
  font-size: 12px;
}

.hp-note.warm {
  background: #fff6e9;
  color: #75420f;
}

.hp-note.error {
  background: #fff1f0;
  color: var(--hp-danger);
}

@media (min-width: 760px) {
  .hp-booking-overlay.is-open {
    place-items: stretch end;
  }

  .hp-booking-shell {
    width: min(430px, 100vw);
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    transform: translateX(42px);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .hp-booking-overlay.is-open .hp-booking-shell {
    transform: translateX(0);
  }
}
