.hs-catalog {
  background: #1f1f1f;
  color: #ffffff;
  padding: 150px 20px 80px;
  font-family: 'Inter', Arial, sans-serif;
}

.hs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 960px) {
  .hs-container {
    padding-top: 70px;
  }
}

.hs-hero {
  text-align: center;
  margin-bottom: 40px;
}

.hs-badge {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.hs-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 16px;
  color: #fff;
}

.hs-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.hs-filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  margin: 42px 0 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(6px);
}

.hs-filter-group {
  display: flex;
  flex-direction: column;
}

.hs-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.hs-input {
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #2a2a2a;
  color: #fff;
  padding: 0 16px;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.hs-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hs-input:focus {
  border-color: rgba(255, 255, 255, 0.3);
  background: #303030;
}

.hs-button {
  height: 54px;
  padding: 0 26px;
  border: none;
  border-radius: 16px;
  background: #ffffff;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}

.hs-button:hover {
  transform: translateY(-1px);
  background: #f2f2f2;
}

.hs-results-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hs-results-count {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.hs-results-count span {
  font-weight: 600;
  color: #fff;
}

.hs-results-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

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

.hs-card {
  background: #ffffff;
  color: #111;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.hs-card-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.hs-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-card-price {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.85);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hs-card-body {
  padding: 22px;
}

.hs-card-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 8px;
}

.hs-card-meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 14px;
}

.hs-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 18px;
}

.hs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.hs-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f3f3;
  color: #222;
  font-size: 13px;
  line-height: 1;
}

.hs-card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hs-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.hs-link--ghost {
  background: #f3f3f3;
  color: #111;
}

.hs-link--ghost:hover {
  background: #ebebeb;
}

.hs-link--primary {
  background: #111;
  color: #fff;
}

.hs-link--primary:hover {
  background: #000;
}

.hs-empty {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-size: 15px;
}

@media (max-width: 1100px) {
  .hs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-filters {
    grid-template-columns: 1fr 1fr;
  }

  .hs-filter-group--search {
    grid-column: 1 / -1;
  }

  .hs-filter-group--button {
    grid-column: 1 / -1;
  }

  .hs-button {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hs-catalog {
    padding: 180px 16px 60px;
  }

  .hs-title {
    font-size: 34px;
  }

  .hs-subtitle {
    font-size: 16px;
  }

  .hs-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hs-filters {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 20px;
  }

  .hs-card-image-wrap {
    height: 220px;
  }

  .hs-card-title {
    font-size: 22px;
  }

  .hs-card-actions {
    flex-direction: column;
  }

  .hs-link {
    width: 100%;
  }
}

#allrecords a,
#allrecords button,
#allrecords .t-radio,
#allrecords .t-checkbox,
#allrecords .t-img-select {
  box-sizing: border-box;
}




/* HERO */
.hs-detail-hero {
  padding: 50px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.hs-detail-hero-card {
  background: #fff;
  color: #111;
  border-radius: 20px;
  padding: 28px;
}


.hs-detail-hero-image {
  max-height: 610px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hs-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 40px 0;
}

.hs-detail-hero-card {
  background: #f5f5f5;
  color: #111;
  border-radius: 28px;
  padding: 32px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hs-detail-hero-card__top {
  margin-bottom: 24px;
}

.hs-detail-hero-card__name {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 22px;
  color: #111;
}

.hs-detail-hero-card__label {
  font-size: 15px;
  color: #777;
  margin-bottom: 12px;
}

.hs-detail-hero-card__price {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
  color: #111;
  margin-bottom: 20px;
}

.hs-detail-hero-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  max-width: 420px;
}

.hs-detail-hero-card__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.hs-detail-hero-card__btn {
  min-height: 50px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
  text-align: center;
}

.hs-detail-hero-card__btn--primary {
  background: #0d0d0d;
  color: #ff7a4d;
}

.hs-detail-hero-card__btn--primary:hover {
  background: #000;
}

.hs-detail-hero-card__btn--secondary {
  background: #ebebeb;
  color: #ff7a4d;
}

.hs-detail-hero-card__btn--secondary:hover {
  background: #e2e2e2;
}

.hs-detail-hero-card__divider {
  height: 1px;
  background: #dddddd;
  margin-bottom: 24px;
}

.hs-detail-hero-card__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hs-detail-hero-card__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  font-size: 16px;
  line-height: 1.4;
}

.hs-detail-hero-card__row span {
  color: #777;
  flex: 0 0 110px;
}

.hs-detail-hero-card__row strong {
  color: #111;
  font-weight: 600;
  text-align: right;
  flex: 1;
}


@media (max-width: 767px) {
  .hs-detail-hero-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hs-detail-hero-card__name {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .hs-detail-hero-card__price {
    font-size: 44px;
  }

  .hs-detail-hero-card__text {
    font-size: 15px;
  }

  .hs-detail-hero-card__btn {
    border-radius: 18px;
    font-size: 16px;
  }
}

.hs-detail-title {
  color: #fff;
  font-size: 42px;
  margin: 0 0 10px;
}

.hs-detail-meta {
  color: #ddd;
  margin-bottom: 20px;
}

.hs-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #fff;
  color: #111;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

/* CONTENT */

.hs-detail {
  background: #1f1f1f;
  color: #fff;
}

.hs-detail-block {
  margin: 60px 0;
}

.hs-detail-block h2 {
  margin-bottom: 20px;
}

/* OPTIONS */

.hs-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hs-option {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #1a1a1a;
  border-radius: 12px;
}

.hs-option-title {
  font-weight: 600;
}

.hs-option-meta {
  color: #aaa;
  font-size: 14px;
}

.hs-option-price {
  font-weight: 600;
}

/* GALLERY */

.hs-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hs-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* RULES */

.hs-rules {
  padding-left: 18px;
  color: #ccc;
}

@media (max-width: 980px) {
  .hs-detail-hero {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .hs-detail-title {
    font-size: 28px;
  }

  .hs-gallery {
    grid-template-columns: 1fr;
  }
}


/* =========================
   DETAIL EXTRA SECTIONS
========================= */

.hs-detail__section {
  margin: 60px 0;
}

.hs-detail__section-head {
  margin-bottom: 20px;
}

.hs-detail__section-head h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
  color: #fff;
}

/* FAQ */

.hs-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hs-faq__item {
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hs-faq__question {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  padding: 20px 22px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.hs-faq__question span {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.hs-faq__item.is-open .hs-faq__question span {
  transform: rotate(45deg);
}

.hs-faq__answer {
  display: none;
  padding: 0 22px 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.hs-faq__item.is-open .hs-faq__answer {
  display: block;
}


.hs-detail__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
  white-space: nowrap;
}

.hs-detail__btn--primary {
  background: #111;
  color: #fff;
}

.hs-detail__btn--primary:hover {
  background: #000;
}

/* Responsive */

@media (max-width: 980px) {

  .hs-detail__btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hs-detail__section {
    margin: 40px 0;
  }

  .hs-detail__section-head h2 {
    font-size: 26px;
  }

  .hs-faq__question {
    font-size: 16px;
    padding: 18px 18px;
  }

  .hs-faq__answer {
    padding: 0 18px 18px;
    font-size: 15px;
  }
}


/* DARK CTA (как Tilda) */

.hs-cta-dark {
  padding: 80px 0;
  text-align: center;
  background: transparent;
}

.hs-cta-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.hs-cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.hs-cta-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.hs-cta-btn:hover {
  transform: translateY(-2px);
}

/* mobile */

@media (max-width: 768px) {
  .hs-cta-title {
    font-size: 26px;
  }

  .hs-cta-text {
    font-size: 16px;
  }

  .hs-cta-dark {
    padding: 60px 0;
  }
}


/* =========================
   ROOM CARDS
========================= */

.hs-room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hs-room-card {
  background: #f5f5f5;
  color: #111;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.hs-room-card__image-wrap {
  height: 220px;
  overflow: hidden;
  background: #eaeaea;
}

.hs-room-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-room-card__body {
  padding: 26px 24px 24px;
}

.hs-room-card__title {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 12px;
  color: #111;
}

.hs-room-card__meta {
  font-size: 16px;
  line-height: 1.5;
  color: #777;
  margin-bottom: 18px;
}

.hs-room-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 28px;
  min-height: 96px;
}

.hs-room-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hs-room-card__price {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
}

.hs-room-card__btn {
  min-width: 156px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 22px;
  background: #0d0d0d;
  color: #ff7a4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s ease;
  white-space: nowrap;
}

.hs-room-card__btn:hover {
  background: #000;
}

@media (max-width: 1200px) {
  .hs-room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hs-room-card__image-wrap {
    height: 220px;
  }

  .hs-room-card__title {
    font-size: 26px;
  }

  .hs-room-card__price {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .hs-room-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hs-room-card {
    border-radius: 24px;
  }

  .hs-room-card__image-wrap {
    height: 220px;
  }

  .hs-room-card__body {
    padding: 22px 20px 20px;
  }

  .hs-room-card__title {
    font-size: 24px;
  }

  .hs-room-card__meta {
    font-size: 15px;
  }

  .hs-room-card__text {
    font-size: 16px;
    min-height: auto;
  }

  .hs-room-card__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hs-room-card__price {
    font-size: 22px;
  }

  .hs-room-card__btn {
    width: 100%;
    min-width: 100%;
    min-height: 50px;
    border-radius: 18px;
  }
}




/* Room Card */

.hs-room-card__image-wrap {
  position: relative;
}

.hs-room-card__gallery-btn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.hs-room-gallery {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.hs-room-gallery__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hs-room-gallery__dialog {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
}

.hs-room-gallery__close {
  position: absolute;
  right: 12px;
  top: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.hs-room-gallery__main {
  margin-bottom: 16px;
}

.hs-room-gallery__main-image {
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hs-room-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.hs-room-gallery__thumb {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

.hs-room-gallery__thumb-image {
  width: 100px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

body.hs-gallery-open {
  overflow: hidden;
}



/* Sort */
/* Sort */

.hs-mobile-filter-wrap {
  position: relative;
  margin-top: 14px;
  z-index: 10;
}

.hs-mobile-filter-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 10px;
  scrollbar-width: none;
}

.hs-mobile-filter-row::-webkit-scrollbar {
  display: none;
}

.hs-chip-button {
  height: 42px;
  padding: 10px;
  border: none;
  border-radius: 14px;
  background: #f2f2f2;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hs-chip-button:hover {
  background: #e9e9e9;
}

.hs-dropdown {
  position: relative;
  display: inline-block;
  z-index: 40;
  margin-bottom: 10px;
}

.hs-dropdown-menu {
  position: absolute;
  top: 50px;
  right: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  z-index: 999;
  display: none;
}

.hs-dropdown-menu.is-open {
  display: block;
}

.hs-dropdown-menu button {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #111;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hs-dropdown-menu button:hover {
  background: #f3f3f3;
}


.hs-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}