/* Booking.com-style property page */

.prop-page,
.prop-page h1,
.prop-page h2,
.prop-page h3,
.prop-page p,
.prop-page li,
.prop-page address,
.prop-page button,
.prop-page a {
  font-family: Poppins, sans-serif;
}

.prop-page .tp-crumb ol {
  color: #6b6b6b;
}

.prop-page .tp-crumb a {
  color: #006ce4;
}

.prop-page .tp-crumb li + li::before {
  color: #9aa0a6;
}

.prop-wrap {
  padding: 20px 0 48px;
}

.prop-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.prop-top h1 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.prop-top__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.prop-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #003b95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prop-icon-btn:hover {
  background: #f0f6ff;
  color: #003b95;
}

.prop-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #006ce4;
  color: #fff;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  min-height: 40px;
}

.prop-reserve:hover {
  background: #0057b8;
  color: #fff;
}

.prop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 14px;
}

.prop-meta address {
  margin: 0;
  font-style: normal;
  color: #262626;
}

.prop-meta a {
  color: #006ce4;
  font-weight: 600;
}

.prop-match {
  color: #008234;
  font-weight: 600;
  font-size: 13px;
}

.prop-gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 210px 210px auto;
  gap: 6px;
  margin-bottom: 28px;
  border-radius: 8px;
  overflow: hidden;
}

.prop-gallery__hero,
.prop-gallery__side,
.prop-gallery__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #dbe3ea;
  cursor: pointer;
  border: 0;
  padding: 0;
}

.prop-gallery__hero {
  grid-row: 1 / 3;
}

.prop-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prop-gallery__hero img {
  object-position: center;
}

.prop-gallery__thumbs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.prop-gallery__thumb {
  height: 92px;
}

.prop-gallery__more {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 32, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.prop-body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.prop-about h2,
.prop-facilities h2 {
  font-size: 22px;
  font-weight: 700;
  color: #163a6b;
  margin: 0 0 14px;
}

.prop-about + .prop-about {
  margin-top: 28px;
}

.prop-about h3 {
  font-size: 16px;
  font-weight: 700;
  color: #163a6b;
  margin: 18px 0 10px;
}

.prop-about p {
  color: #4d5d73;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
  word-break: normal;
  overflow-wrap: break-word;
}

.prop-about p:last-child {
  margin-bottom: 0;
}

.prop-times,
.prop-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.prop-times li,
.prop-list li {
  color: #4d5d73;
  font-size: 15px;
  line-height: 1.55;
}

.prop-times li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #eef2f7;
}

.prop-times li span {
  font-weight: 700;
  color: #163a6b;
}

.prop-list li {
  position: relative;
  padding: 6px 0 6px 22px;
}

.prop-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0f56aa;
}

.prop-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.prop-card {
  background: #f5f5f5;
  border-radius: 12px;
  padding: 18px 18px 16px;
}

.prop-card h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #163a6b;
}

.prop-highlight {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
  color: #262626;
}

.prop-highlight:last-child {
  margin-bottom: 0;
}

.prop-highlight i {
  color: #1a1a1a;
  width: 18px;
  text-align: center;
  margin-top: 2px;
}

.prop-highlight strong {
  display: block;
  margin-bottom: 2px;
}

.prop-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  background: #fff;
}

.prop-map iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.prop-map__open {
  display: block;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #006ce4;
  background: #fff;
}

.prop-map__preview {
  position: relative;
  display: block;
  height: 220px;
  color: #fff;
}

.prop-map__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prop-map__pin {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #006ce4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.prop-map__cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  color: #006ce4;
}

.prop-facilities {
  margin-top: 28px;
}

.prop-facilities ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.prop-facilities li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #262626;
}

.prop-facilities i {
  color: #008234;
}

.prop-videos {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e7e7e7;
}

.prop-videos h2 {
  font-size: 22px;
  font-weight: 700;
  color: #163a6b;
  margin: 0 0 14px;
}

.prop-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.prop-videos video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  background: #0d1b2a;
}

@media (max-width: 575.98px) {
  .prop-videos__grid {
    grid-template-columns: 1fr;
  }
}

.prop-book {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.prop-book__price {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}

.prop-book__price span {
  font-size: 14px;
  font-weight: 500;
  color: #6b6b6b;
}

.prop-book__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prop-lb {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(8, 12, 18, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
}

.prop-lb.is-open {
  display: flex;
}

.prop-lb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.prop-lb__close,
.prop-lb__prev,
.prop-lb__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.prop-lb__close {
  top: 16px;
  right: 16px;
}

.prop-lb__prev {
  left: 12px;
}

.prop-lb__next {
  right: 12px;
}

.prop-lb__count {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .prop-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px auto;
  }

  .prop-gallery__hero {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 220px;
  }

  .prop-gallery__side {
    height: 160px;
  }

  .prop-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .prop-page .container.prop-wrap,
  .prop-wrap {
    padding: 10px 16px 100px;
  }

  .prop-page .tp-crumb ol {
    flex-wrap: wrap;
    white-space: normal;
    overflow: visible;
    font-size: 12px;
    gap: 4px 6px;
    margin-bottom: 10px;
  }

  .prop-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }

  .prop-top h1 {
    flex: 1;
    min-width: 0;
    font-size: 22px;
    line-height: 1.25;
  }

  .prop-top__actions {
    width: auto;
    flex-shrink: 0;
    padding-top: 2px;
  }

  .prop-top__actions .prop-reserve {
    display: none;
  }

  .prop-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    margin-bottom: 14px;
  }

  .prop-meta address {
    line-height: 1.45;
  }

  .prop-gallery {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 8px;
    margin-bottom: 22px;
    border-radius: 0;
    overflow: visible;
  }

  .prop-gallery__hero {
    display: block;
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
  }

  .prop-gallery__side {
    display: none;
  }

  .prop-gallery__thumbs {
    display: flex;
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }

  .prop-gallery__thumbs::-webkit-scrollbar {
    display: none;
  }

  .prop-gallery__thumb {
    flex: 0 0 86px;
    width: 86px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
  }

  .prop-about h2,
  .prop-facilities h2,
  .prop-videos h2 {
    font-size: 19px;
  }

  .prop-about p,
  .prop-list li,
  .prop-times li {
    font-size: 14px;
  }

  .prop-times li {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .prop-facilities ul {
    gap: 8px 14px;
  }

  .prop-facilities li {
    font-size: 13px;
  }

  .prop-card {
    padding: 16px;
  }

  .prop-map__preview {
    height: 180px;
  }

  .prop-book {
    position: sticky;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 38, 71, 0.16);
    z-index: 40;
  }

  .prop-book__price {
    font-size: 20px;
  }

  .prop-book__actions {
    width: 100%;
    flex-direction: column;
  }

  .prop-book__actions .tp-btn,
  .prop-book__actions .prop-reserve {
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  .prop-page .WhatsAppfloat {
    display: none;
  }

  .prop-lb {
    padding: 64px 44px 48px;
  }

  .prop-lb__prev,
  .prop-lb__next,
  .prop-lb__close {
    width: 40px;
    height: 40px;
  }

  .prop-lb__prev {
    left: 6px;
  }

  .prop-lb__next {
    right: 6px;
  }
}
