.hsh-empty-state {
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* =========================
   Booking iframe
   ========================= */
.hsh-booking-embed {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  background: #fff;
}

.hsh-booking-embed__frame {
  width: 100%;
  min-height: inherit;
  border: 0;
  display: block;
  background: #fff;
}

.hsh-booking-embed__loading {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity .25s ease;
  background:
    linear-gradient(90deg, rgba(0,0,0,.04) 25%, rgba(0,0,0,.07) 37%, rgba(0,0,0,.04) 63%) 0 0 / 400% 100%,
    #fff;
  animation: hshLoadingPulse 1.4s ease infinite;
}

.hsh-booking-embed.is-loaded .hsh-booking-embed__loading {
  opacity: 0;
}

@keyframes hshLoadingPulse {
  0% { background-position: 100% 0, 0 0; }
  100% { background-position: 0 0, 0 0; }
}

/* =========================
   Guesty hover cards
   ========================= */
.hsh-cards-grid-wrap {
  width: 100%;
}

.hsh-cards-grid {
  display: grid;
  grid-template-columns: repeat(var(--hsh-cards-cols, 3), minmax(0, 1fr));
  gap: var(--hsh-cards-gap, 24px);
  align-items: stretch;
}

.hsh-cards-grid > * {
  min-width: 0;
}

.hsh-card {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: var(--hsh-card-aspect-ratio, 4 / 3);
  min-height: var(--hsh-card-height, 420px);
  height: var(--hsh-card-height, auto);
  border-radius: var(--hsh-card-radius, 0px);
  text-decoration: none !important;
  background: #d9d3cc;
  color: var(--hsh-card-text-color-normal, #ffffff) !important;
  isolation: isolate;
  line-height: 0;
}

.hsh-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .95);
  outline-offset: 3px;
}

.hsh-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hsh-card__image,
.hsh-card__image--placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hsh-card__image {
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
}

.hsh-card__image--placeholder {
  background: linear-gradient(135deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
}

.hsh-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, var(--hsh-card-overlay-opacity, .5)) 0%,
      rgba(0, 0, 0, calc(var(--hsh-card-overlay-opacity, .5) * .82)) 38%,
      rgba(0, 0, 0, calc(var(--hsh-card-overlay-opacity, .5) * .14)) 72%,
      rgba(0, 0, 0, 0) 100%
    );
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
  line-height: 1.4;
  color: var(--hsh-card-text-color-normal, #ffffff) !important;
}

.hsh-card:hover .hsh-card__overlay,
.hsh-card:focus-visible .hsh-card__overlay,
.hsh-card:focus-within .hsh-card__overlay {
  color: var(--hsh-card-text-color-hover, #ffffff) !important;
}

.hsh-card__content {
  width: 100%;
  max-width: 34rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 7px;
  text-align: center;
}

.hsh-card__title,
.hsh-card__location,
.hsh-card__price,
.hsh-card__facts,
.hsh-card__desc {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hsh-card__title,
.hsh-card__location,
.hsh-card__price,
.hsh-card__facts,
.hsh-card__fact,
.hsh-card__fact-sep,
.hsh-card__desc {
  color: inherit !important;
}

.hsh-card__title {
  margin: 0;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.14;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hsh-card__location,
.hsh-card__price {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hsh-card__facts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: .11em;
  text-transform: uppercase;
  opacity: .97;
}

.hsh-card__fact-sep {
  opacity: .85;
}

.hsh-card__desc {
  margin: 2px auto 0;
  max-width: 36ch;
  font-size: 14px;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.hsh-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-width: 220px;
  min-height: 46px;
  margin-top: 10px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #2d2a26 !important;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.hsh-card:hover .hsh-card__overlay,
.hsh-card:focus-visible .hsh-card__overlay,
.hsh-card:focus-within .hsh-card__overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hsh-card:hover .hsh-card__image,
.hsh-card:focus-visible .hsh-card__image,
.hsh-card:focus-within .hsh-card__image {
  transform: scale(1.04);
}

body.elementor-editor-active .hsh-card,
.hsh-card--editor-disabled {
  cursor: default;
}

@media (max-width: 1024px) {
  .hsh-cards-grid {
    grid-template-columns: repeat(var(--hsh-cards-cols-tablet, 2), minmax(0, 1fr));
  }

  .hsh-card__overlay {
    padding: 18px;
  }

  .hsh-card__content {
    gap: 6px;
  }
}

@media (max-width: 767px) {
  .hsh-cards-grid {
    grid-template-columns: repeat(var(--hsh-cards-cols-mobile, 1), minmax(0, 1fr));
  }

  .hsh-card {
    min-height: var(--hsh-card-height, 320px);
    height: var(--hsh-card-height, auto);
  }

  .hsh-card__overlay {
    padding: 16px 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    align-items: flex-end;
  }

  .hsh-card__content {
    gap: 5px;
    max-width: 100%;
  }

  .hsh-card__title {
    font-size: clamp(15px, 4.8vw, 17px);
    line-height: 1.12;
    letter-spacing: .02em;
  }

  .hsh-card__location,
  .hsh-card__price {
    font-size: 12px;
    letter-spacing: .09em;
  }

  .hsh-card__facts {
    gap: 5px;
    row-gap: 4px;
    font-size: 11px;
    letter-spacing: .08em;
  }

  .hsh-card__desc {
    font-size: 12px;
    line-height: 1.35;
    max-width: 100%;
    -webkit-line-clamp: 2;
  }

  .hsh-card__button {
    min-width: 0;
    width: auto;
    max-width: 100%;
    padding: 10px 16px;
    white-space: normal;
    font-size: 11px;
    letter-spacing: .11em;
  }
}

.hsh-card *,
.hsh-card *::before,
.hsh-card *::after {
  box-sizing: border-box;
}
