/* Catalog page - Banner section & layout (Bootstrap 5) */

/* Arimo font for entire catalog page */
body {
  font-family: "Arimo", sans-serif;
}

/* ========== Banner section ========== */
.catalog-banner {
  position: relative;
  min-height: 85vh;
  background-image: url("assets/banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

/* Dark blue overlay (top-left area) for text readability */
.catalog-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 40, 80, 0.65) 0%,
    rgba(15, 40, 80, 0.35) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.catalog-banner .container {
  position: relative;
  z-index: 1;
}

/* ========== Left-side text ========== */
.catalog-banner-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 62px;
  font-style: normal;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

/* First line: Let's Discover (one line) */
.catalog-banner-line1 {
  display: block;
}

.catalog-banner-title .text-white-part {
  color: #fff;
}

.catalog-banner-title .text-blue-part {
  color: #7dd3fc;
}

.catalog-banner-title .text-white-line {
  color: #fff;
  display: block;
}

/* Second line: Best of Latvia, then curve below (curve matches text width) */
.catalog-banner-title-line-wrap {
  display: inline-block;
  margin-top: 0.1em;
  margin-bottom: 1rem;
}

/* Yellow curve line below "Best of Latvia" - full width of text */
.catalog-banner-curve {
  width: 100%;
  height: 4px;
  background: transparent;
  border: none;
  border-bottom: 3px solid #fbbf24;
  border-radius: 0 0 50% 50%;
  margin: 0.5rem 0 0 0;
}

/* Subtitle below curve */
.catalog-banner-subtitle {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

/* ========== Search bar ========== */
/* Outer box: border #B2DFDB, light white transparent fill */
.catalog-search-wrap {
  max-width: 680px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #B2DFDB;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Inner search bar: white bg, rounded, contains input + button */
.catalog-search-inner {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 0.35rem 0.35rem 0.35rem 1rem;
  gap: 0.5rem;
}

.catalog-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #333;
  font-size: 0.95rem;
  padding: 0.6rem 0;
}

.catalog-search-input::placeholder {
  color: #6b7280;
}

.catalog-search-input:focus {
  outline: none;
  box-shadow: none;
}

/* Search icon button inside bar - orange #FFAA4C */
.catalog-search-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FFAA4C;
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.catalog-search-btn:hover {
  background: #e6953d;
  color: #fff;
}

.catalog-search-btn i {
  font-size: 1.125rem;
  line-height: 1;
}

/* Text below search bar - white */
.catalog-search-helper {
  margin-top: 0.75rem;
  padding-left: 0.25rem;
}

/* Text below search bar - white, same row */
.catalog-search-helper {
  margin-top: 0.75rem;
  padding-left: 0.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.catalog-search-helper-gap {
  flex: 0 0 1rem;
  min-width: 1rem;
}

.catalog-search-helper-line1 {
  color: #fff;
  font-size: 0.85rem;
}

.catalog-search-helper-line2 {
  color: #fff;
  font-size: 0.85rem;
  font-style: italic;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.catalog-search-gemini-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* ========== Fixed bot (bottom-right) ========== */
.catalog-bot-fixed {
  position: fixed;
  bottom: 40px;
  right: 24px;
  width: 150px;
  height: auto;
  z-index: 1030;
  pointer-events: none;
}

.catalog-bot-fixed img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== Page content below banner ========== */
.catalog-content {
  padding: 2rem 0 4rem;
  background: #F8FAFC;
}

.catalog-back-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.catalog-back-link:hover {
  color: #fff;
}

/* ========== Filter panel (left) ========== */
.catalog-filters {
  position: sticky;
  top: 1rem;
  align-self: start;
}

/* Mobile: filters and listing stack – no overlap, all filters then cards */
@media (max-width: 991px) {
  .catalog-content {
    overflow-x: hidden;
  }
  .catalog-content .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
  }
  .catalog-content .row {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .catalog-filters {
    position: static;
    width: 100%;
    max-width: 100%;
    order: 1;
    flex: 0 0 auto;
  }
  .catalog-listing {
    width: 100%;
    max-width: 100%;
    order: 2;
    margin-top: 0;
    flex: 0 0 auto;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
  .catalog-filter-box,
  .catalog-filter-clear {
    max-width: 100%;
  }
}

/* Mobile: card layout – full width, body below images, no overlap */
@media (max-width: 991px) {
  .catalog-card-list {
    width: 100%;
    max-width: 100%;
  }
  .catalog-card {
    width: 100%;
    max-width: 100%;
  }
  .catalog-card-inner {
    max-width: 100%;
    padding: 1rem;
  }
  .catalog-card-layout {
    flex-direction: column;
    width: 100%;
  }
  .catalog-card-images {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
  }
  .catalog-card-main-img {
    width: 100% !important;
    max-width: 100%;
  }
  .catalog-card-thumbs {
    width: 100%;
    max-width: 100%;
  }
  .catalog-card-body {
    width: 100%;
    max-width: 100%;
    padding: 1rem 0 0 0;
    flex: 1 1 auto;
    min-width: 0;
  }
  .catalog-card-head,
  .catalog-card-title {
    min-width: 0;
  }
  .catalog-card-footer {
    margin-top: 1rem;
    padding-top: 0.75rem;
  }
}

/* Each filter category = separate box: white bg, shadow, spacing below */
.catalog-filter-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
  overflow: hidden;
  padding: 12px 12px 0 12px;
  max-width: 340px;
}

.catalog-filter-box:last-of-type {
  margin-bottom: 1.25rem;
}

/* Header: light blue bg #EFF7FF, only the heading strip – inset from box edges */
.catalog-filter-box-head {
  background: #EFF7FF;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 6px;
}

.catalog-filter-box-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #5BB2FF;
}

.catalog-filter-box-count {
  font-size: 0.8rem;
  font-weight: 700;
  color: #5BB2FF;
}

/* Options: two columns, text 14px #85878A; padding below only, sides from box */
.catalog-filter-options {
  padding: 0.75rem 0 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}

.catalog-filter-check {
  font-size: 14px;
  color: #85878A;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Checkbox: no border, unchecked #DFDFE3; checked: white tick on #5BB2FF */
.catalog-filter-check input {
  margin: 0;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 3px;
  background: #DFDFE3;
  cursor: pointer;
  position: relative;
}

.catalog-filter-check input:checked {
  background: #5BB2FF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5l3 3 7-7'/%3E%3C/svg%3E");
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
}

.catalog-filter-check input:focus {
  outline: none;
}

/* Clear filters button: text #FFAA4C, border #FFAA4C, bg #FFEEDB */
.catalog-filter-clear {
  width: 100%;
  max-width: 340px;
  padding: 0.6rem 1rem;
  background: #FFEEDB;
  border: 1px solid #FFAA4C;
  color: #FFAA4C;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.catalog-filter-clear:hover {
  background: #ffe8c7;
  border-color: #e6953d;
  color: #e6953d;
}

/* View more image below clear button – filter side only */
.catalog-filter-banner {
  margin-top: 1rem;
  width: 100%;
  max-width: 340px;
}

.catalog-filter-banner-img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .catalog-filter-banner {
    max-width: 100%;
  }
}

/* ========== Listing area (right) ========== */
.catalog-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
  color: #85878A;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.catalog-breadcrumb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #85878A;
}

.catalog-breadcrumb-icon svg {
  width: 14px;
  height: 14px;
}

.catalog-breadcrumb-text {
  letter-spacing: 0.03em;
}

.catalog-listing-header {
  margin-bottom: 0.5rem;
}

.catalog-listing-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 16px;
  color: #1f2937;
  margin: 0;
  padding-bottom: 0.5rem;
  margin-bottom: 0.35rem;
  border-bottom: 2px solid #1f2937;
  display: inline-block;
}

/* Sort by button: two columns – text | vertical line | arrow, white bg, grey border */
.catalog-sort-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid #d1d5db;
  color: #4B5563;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  gap: 0;
}

.catalog-sort-btn:hover,
.catalog-sort-btn:focus {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #4B5563;
}

.catalog-sort-btn::after {
  display: none;
}

.catalog-sort-text {
  padding-right: 0.5rem;
  color: #4B5563;
  font-size: 16px;
}

.catalog-sort-divider {
  width: 1px;
  height: 18px;
  background: #d1d5db;
  flex-shrink: 0;
}

.catalog-sort-arrow {
  padding-left: 0.5rem;
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: #4B5563;
  vertical-align: middle;
}

.catalog-info-bar {
  background: #D9ECFD;
  color: #4B5563;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.catalog-info-left {
  font-size: 16px;
  font-style: italic;
}

.catalog-info-right {
  font-size: 16px;
  /* font-weight: 400; */
  font-style: italic;
  line-height: 18px;
}

/* ========== Listing cards ========== */
.catalog-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Card: white bg, shadow, rounded, inner padding */
.catalog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.catalog-card-inner {
  padding: 1rem;
}

.catalog-card-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

@media (min-width: 768px) {
  .catalog-card-layout {
    flex-wrap: nowrap;
    align-items: stretch;
  }
}

/* Left: images - fixed widths to control card height */
.catalog-card-images {
  flex: 0 0 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .catalog-card-images {
    flex: 0 0 291px;
    width: 291px;
    max-width: 291px;
  }
}

/* Main image: 291px × 174px */
.catalog-card-main-img {
  position: relative;
  width: 100%;
  height: 174px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .catalog-card-main-img {
    width: 291px;
    height: 174px;
  }
}

.catalog-card-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Heart & Share on first image: circular grey bg, white icon */
.catalog-card-actions {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.catalog-card-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(120, 120, 120, 0.75);
  border: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.catalog-card-action-btn svg {
  width: 14px;
  height: 14px;
}

/* Bottom images: first 124×92, second 164×92 */
.catalog-card-thumbs {
  display: flex;
  gap: 0.35rem;
}

@media (min-width: 768px) {
  .catalog-card-thumbs {
    width: 291px;
  }
}

.catalog-card-thumbs img {
  display: block;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.catalog-card-thumbs img:first-child {
  width: 124px;
  height: 92px;
}

.catalog-card-thumbs img:last-child {
  width: 164px;
  height: 92px;
}

@media (max-width: 767px) {
  .catalog-card-thumbs img:first-child,
  .catalog-card-thumbs img:last-child {
    width: 50%;
    height: 92px;
    flex: 1;
    min-width: 0;
  }
}

/* Right: body fills remaining space, padding so text sits in centre / doesn't touch edges */
.catalog-card-body {
  flex: 1;
  min-width: 0;
  width: 100%;
  padding: 0 3rem 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .catalog-card-body {
    padding: 0.75rem 0 0;
    justify-content: flex-start;
  }
}

/* Name row: title left, views button right; margin-top so title sits lower */
.catalog-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.catalog-card-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #4B5563;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.catalog-card-views {
  background: #7CC1FF;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.catalog-card-views svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* Location: Poppins 400 16px #5BB2FF, pin icon */
.catalog-card-location {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #5BB2FF;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.catalog-card-location svg {
  flex-shrink: 0;
  color: #5BB2FF;
}

/* Features: CAPACITY, SLEEPS, DISTANCE - spread across to fill right side */
.catalog-card-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 0.5rem;
  margin-bottom: 0.75rem;
  max-width: 100%;
}

.catalog-card-feature {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.catalog-card-feature-label {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  color: #90A1B9;
  text-transform: uppercase;
}

.catalog-card-feature-value {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #4B5563;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.catalog-card-feature-value svg {
  flex-shrink: 0;
  color: #5BB2FF;
}

/* Contact: two boxes - only as wide as content */
.catalog-card-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  max-width: 100%;
}

.catalog-card-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #5BB2FF;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  text-decoration: none;
  color: #314158;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.catalog-card-contact-item:hover {
  background: #f8fcff;
  color: #314158;
}

.catalog-card-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #DEF0FF;
  color: #5BB2FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.catalog-card-contact-icon svg {
  width: 14px;
  height: 14px;
}

.catalog-card-contact-value {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #314158;
}

/* Footer: reviews left (text + avatars + view more), See details right */
.catalog-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
}

.catalog-card-reviews-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.catalog-card-reviews {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #0B0A12;
}

.catalog-card-avatars {
  display: flex;
  align-items: center;
}

.catalog-card-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
}

.catalog-card-avatar:first-child {
  margin-left: 0;
}

.catalog-card-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #64748b, #475569);
  color: #f8fafc;
  font-weight: 700;
  font-size: 0.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  object-fit: unset;
  box-sizing: border-box;
}

.catalog-card-more {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #999999;
  text-decoration: none;
}

.catalog-card-more:hover {
  color: #6b7280;
  text-decoration: underline;
}

.catalog-card-details-btn {
  background: #FFAA4C;
  color: #fff;
  border: none;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background 0.2s;
  flex-shrink: 0;
}

.catalog-card-details-btn:hover {
  background: #e6953d;
  color: #fff;
}

.catalog-card-details-btn svg {
  width: 14px;
  height: 14px;
}

/* ========== Catalog pagination (right panel) ========== */
.catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.catalog-pagination-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #99A1AF;
  text-decoration: none;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}

.catalog-pagination-arrow:hover {
  border-color: #99A1AF;
  color: #6A7282;
}

.catalog-pagination-arrow svg {
  width: 16px;
  height: 16px;
}

.catalog-pagination-nums {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.catalog-pagination-num {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #6A7282;
  text-decoration: none;
  min-width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.catalog-pagination-num:hover {
  color: #4B5563;
}

.catalog-pagination-num-active {
  background: #FFAA4C;
  color: #fff;
}

.catalog-pagination-num-active:hover {
  background: #e6953d;
  color: #fff;
}

/* ========== Catalog bottom boxes (full width) ========== */
.catalog-bottom-boxes {
  width: 100%;
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.catalog-bottom-box {
  background: #E8F4FD;
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 100%;
}

.catalog-bottom-box-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-right: 1rem;
}

.catalog-bottom-box-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #4B5563;
  margin: 0;
}

.catalog-bottom-box-vline {
  width: 1px;
  min-height: 80px;
  align-self: stretch;
  background: #D1D5DB;
  flex-shrink: 0;
}

.catalog-bottom-box-content {
  min-width: 0;
  padding-left: 1rem;
}

.catalog-bottom-box-content p {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #6A7282;
  margin: 0 0 0.75rem 0;
}

.catalog-bottom-box-content p:last-child {
  margin-bottom: 0;
}

.catalog-bottom-box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem 2rem;
}

.catalog-bottom-box-list li {
  margin: 0;
}

.catalog-bottom-box-list a {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #5143D9;
  text-decoration: none;
}

.catalog-bottom-box-list a:hover {
  text-decoration: underline;
}

.catalog-bottom-keywords {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #9CA3AF;
  text-align: center;
  margin: 0.5rem 0 0 0;
}

@media (max-width: 768px) {
  .catalog-breadcrumb {
    margin-top: 1rem;
  }
  .catalog-bottom-box {
    grid-template-columns: 1fr;
    padding: 1.25rem 1.25rem;
  }
  .catalog-bottom-box-left {
    flex-direction: row;
    padding-right: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #D1D5DB;
  }
  .catalog-bottom-box-vline {
    display: none;
  }
  .catalog-bottom-box-content {
    padding-left: 0;
    padding-top: 1rem;
  }
  .catalog-bottom-box-list {
    grid-template-columns: 1fr;
  }
}

/* ========== About Us page ========== */
.about-page {
  background: #F8FAFC;
  font-family: "Arimo", sans-serif;
  padding-bottom: 4rem;
}

.about-banner {
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  position: relative;
  display: block;
}

.about-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-content {
  padding: 2.5rem 0 3rem;
}

.about-heading-wrap {
  display: inline-block;
  margin: 0 auto 1rem auto;
  text-align: center;
}

.about-content .container {
  text-align: center;
}

.about-content .container .about-para {
  text-align: left;
}

.about-heading-wrap .about-heading {
  display: block;
  text-align: center;
}

.about-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 70px;
  color: #4B5563;
  margin: 0 0 0.5rem 0;
}

.about-curve {
  width: 100%;
  height: 4px;
  margin: 0 0 1rem 0;
  border: none;
  border-bottom: 3px solid #fbbf24;
  border-radius: 0 0 50% 50%;
}

.about-subtitle {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #4B5563;
  text-align: center;
  margin: 0 0 2rem 0;
}

.about-para {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 16.49px;
  line-height: 25px;
  color: #1B1F26B8;
  margin: 0 0 1.5rem 0;
  max-width: 100%;
}

.about-para:last-child {
  margin-bottom: 0;
}

/* ========== About Us - Our Team section ========== */
.about-team {
  margin-top: 1.5rem;
  padding-top: 2rem;
  text-align: left;
}

.about-team-heading-wrap {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.about-team-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #4B5563;
  margin: 0 0 0.5rem 0;
}

.about-team-underline {
  width: 100%;
  height: 2px;
  background: #9ca3af;
  border: none;
  border-radius: 0;
  margin: 0;
}

.about-team-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.about-team-text {
  flex: 1;
  min-width: 280px;
}

.about-team-para {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 29px;
  color: #6A7282E3;
  margin: 0;
}

.about-team-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  flex: 0 0 auto;
  max-width: 100%;
  align-items: stretch;
}

@media (min-width: 992px) {
  .about-team-images {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

.about-team-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  min-height: 0;
}

.about-team-col-1 {
  min-height: 0;
}

.about-team-col-1 .about-team-img-main {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.about-team-col-2 {
  min-height: 0;
}

.about-team-col-2 .about-team-img {
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.about-team-img-main {
  min-height: 260px;
  object-fit: cover;
}

.about-team-col-2 .about-team-img {
  min-height: 120px;
}

/* About Us link on home page */
.about-link-home {
  display: inline-block;
  color: #4B5563;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.about-link-home:hover {
  color: #374151;
  text-decoration: underline;
}

/* ========== Advertising page ========== */
.ad-page {
  background: #fff;
  font-family: "Arimo", sans-serif;
  padding-bottom: 4rem;
}

.ad-bot-fixed {
  position: fixed;
  bottom: 40px;
  right: 24px;
  width: 120px;
  height: auto;
  z-index: 1030;
  pointer-events: none;
}

.ad-bot-fixed img {
  width: 100%;
  height: auto;
  display: block;
}

.ad-content {
  padding: 2.5rem 0 3rem;
}

.ad-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ad-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 70px;
  color: #4B5563;
  margin: 0 0 1rem 0;
}

.ad-subtitle {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #85878A;
  margin: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

/* Image gallery: full width, one line at 100% – no wrap, no horizontal scroll */
.ad-gallery {
  width: 100%;
  margin-bottom: 3rem;
  padding: 0 1rem;
  overflow-x: hidden;
  box-sizing: border-box;
}

.ad-gallery-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
  min-width: 0;
  box-sizing: border-box;
}

.ad-gallery-left-cols {
  display: flex;
  gap: 0.75rem;
  flex: 1 1 28%;
  min-width: 0;
  align-items: center;
}

.ad-gallery-right-cols {
  display: flex;
  gap: 0.75rem;
  flex: 1 1 28%;
  min-width: 0;
}

.ad-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1 1 0;
  min-width: 0;
}

.ad-gallery-center {
  flex: 1 1 36%;
  min-width: 0;
}

/* Image box: fluid width, aspect-ratio so one line at 100% without horizontal scroll */
.ad-img-box {
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
}

.ad-img-box .ad-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Main (center) image – aspect-ratio from 453.54 / 603 */
.ad-img-box-main {
  aspect-ratio: 453.54 / 603;
  height: auto;
}

/* ad1 */
.ad-img-box-ad1 {
  aspect-ratio: 201.74 / 358.4;
  height: auto;
}

/* ad3 */
.ad-img-box-ad3 {
  aspect-ratio: 202.47 / 201.74;
  height: auto;
}

/* ad2 */
.ad-img-box-ad2 {
  aspect-ratio: 201.74 / 268.98;
  height: auto;
}

/* ad7 */
.ad-img-box-ad7 {
  aspect-ratio: 201 / 112.65;
  height: auto;
}

/* ad6 */
.ad-img-box-ad6 {
  aspect-ratio: 201 / 268;
  height: auto;
}

/* ad5 */
.ad-img-box-ad5 {
  aspect-ratio: 260.74 / 341.75;
  height: auto;
}

/* ad4 */
.ad-img-box-ad4 {
  aspect-ratio: 201.1 / 134.07;
  height: auto;
}

@media (max-width: 767px) {
  .ad-subtitle {
    white-space: normal;
    max-width: 100%;
  }
}

/* Advertising section: yellow dashed line + heading + description */
.ad-section {
  margin-bottom: 2.5rem;
}

.ad-section-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 42px;
  color: #4B5563;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ad-section-dash {
  display: inline-block;
  width: 60px;
  height: 4px;
  border: none;
  background: #FDBA74;
  flex-shrink: 0;
}

.ad-section-desc {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.5px;
  color: #6A7282;
  margin: 0;
  max-width: 800px;
}

/* Top Keyword Rankings: white box, blue vertical line, list with tick icons */
.ad-keywords-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  border: 1px solid #f0f0f0;
}

.ad-keywords-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #4B5563;
  margin: 0 0 1.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ad-keywords-line {
  display: inline-block;
  width: 6px;
  height: 32px;
  background: #5BB2FF;
  border-radius: 2px;
  flex-shrink: 0;
}

.ad-keywords-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}

.ad-keywords-col {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ad-keywords-col li {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #4B5563;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.ad-keywords-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #9DD1FF;
  color: #9DD1FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ad-keywords-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

@media (max-width: 576px) {
  .ad-keywords-list {
    grid-template-columns: 1fr;
  }
  .ad-title {
    font-size: 2rem;
    line-height: 1.2;
  }
}

/* ========== Banners section (advertising page) ========== */
.ad-banners {
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.ad-banners-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ad-banners-line {
  display: inline-block;
  width: 48px;
  height: 4px;
  background: #F7931E;
  flex-shrink: 0;
  border-radius: 2px;
}

.ad-banners-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 42px;
  color: #4B5563;
  margin: 0;
}

.ad-banners-intro {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32.5px;
  color: #6A7282;
  margin: 0 0 1.5rem 0;
  max-width: 640px;
}

.ad-banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.ad-banner-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ad-banner-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0;
}

.ad-banner-category {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #5BB2FF;
  text-transform: uppercase;
}

.ad-banner-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #5BB2FF;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.ad-banner-badge::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #5BB2FF;
  border-width: 5px 0 5px 6px;
}

.ad-banner-main {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #333;
  line-height: 1.3;
}

.ad-banner-desc {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.ad-banner-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  margin-top: auto;
}

.ad-banner-price-top {
  margin-top: 0;
  margin-bottom: 0;
  align-items: flex-end;
}

.ad-banner-price-week {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #333;
}

.ad-banner-price-month {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: #666;
}

.ad-banners-disclaimer {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 28px;
  color: #666;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .ad-banners-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Contact section (advertising page) ========== */
.ad-contact {
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}

.ad-contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.ad-contact-left {
  min-width: 0;
  padding: 1rem 1.5rem 1rem 0;
}

.ad-contact-right {
  min-width: 0;
  position: relative;
  padding: 1rem 0 1rem 1.5rem;
}

.ad-contact-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 77px;
  color: #4B5563;
  margin: 0 0 1.5rem 0;
}

.ad-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ad-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ad-contact-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: #EFF7FF;
  border-radius: 8px;
  color: #5BB2FF;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ad-contact-icon-box svg {
  width: 18px;
  height: 18px;
}

.ad-contact-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ad-contact-label {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  color: #6A7282;
}

.ad-contact-value {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #4B5563;
  text-decoration: none;
}

.ad-contact-value:hover {
  color: #5BB2FF;
  text-decoration: underline;
}

.ad-contact-form-wrap {
  position: relative;
}

.ad-contact-form-bg-icon {
  position: absolute;
  top: -10px;
  right: 0;
  color: #E0F2FF;
  opacity: 0.8;
  pointer-events: none;
}

.ad-contact-form-bg-icon svg {
  width: 100px;
  height: 100px;
}

.ad-contact-form-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #6A7282;
  margin: 0 0 0.85rem 0;
  position: relative;
}

.ad-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ad-contact-form-row {
  display: grid;
  grid-template-columns: 223.6px 223.6px;
  gap: 0.75rem;
}

.ad-contact-form-row .ad-contact-field input {
  width: 223.6px;
  height: 44px;
  max-width: 100%;
  box-sizing: border-box;
}

.ad-contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ad-contact-field label {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #4B5563;
}

.ad-contact-required {
  color: #6A7282;
}

.ad-contact-field input,
.ad-contact-field textarea {
  font-family: "Arimo", sans-serif;
  font-size: 0.875rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
  background: #fff;
  color: #333;
  box-sizing: border-box;
}

.ad-contact-field input[type="email"],
.ad-contact-form .ad-contact-field:not(.ad-contact-form-row .ad-contact-field) input {
  width: 471.2px;
  max-width: 100%;
  height: 44px;
}

.ad-contact-field input::placeholder,
.ad-contact-field textarea::placeholder {
  color: #9CA3AF;
}

.ad-contact-field input:focus,
.ad-contact-field textarea:focus {
  outline: none;
  border-color: #5BB2FF;
  box-shadow: 0 0 0 2px rgba(91, 178, 255, 0.2);
}

.ad-contact-field textarea {
  width: 471.2px;
  max-width: 100%;
  height: 129.6px;
  min-height: 129.6px;
  resize: vertical;
  padding: 0.4rem 0.6rem;
  box-sizing: border-box;
}

.ad-contact-form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.35rem;
}

.ad-contact-submit {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  background: #FFAA4C;
  border: none;
  border-radius: 8px;
  width: 471.2px;
  max-width: 100%;
  height: 52px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.ad-contact-submit:hover {
  background: #f59e0b;
}

.ad-contact-submit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ad-contact-card {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
  }

  .ad-contact-left,
  .ad-contact-right {
    padding-left: 0;
    padding-right: 0;
  }

  .ad-contact-heading {
    font-size: 2rem;
    line-height: 1.4;
  }

  .ad-contact-form-row {
    grid-template-columns: 1fr;
  }

  .ad-contact-form-row .ad-contact-field input,
  .ad-contact-field input[type="email"],
  .ad-contact-field textarea,
  .ad-contact-submit {
    width: 100% !important;
    max-width: 100%;
  }

  .ad-contact-form-row .ad-contact-field input {
    height: 48px;
  }

  .ad-contact-field input[type="email"] {
    height: 48px;
  }

  .ad-contact-field textarea {
    height: 120px;
    min-height: 120px;
  }

  .ad-contact-submit {
    height: 52px;
  }
}

/* ========== Property detail page ========== */
.detail-page {
  font-family: "Arimo", sans-serif;
  background: #F8FAFC;
  color: #1f2937;
  min-height: 100vh;
}

.detail-wrap {
  padding-bottom: 3rem;
}

/* Header: one row = title, badge, rating, Save & Share (right); location below */
.detail-header {
  margin-bottom: 1.5rem;
}

.detail-header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.detail-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #141414;
  margin: 0;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 116.49px;
  height: 28px;
  background: #5BB2FF;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  border-radius: 6px;
  flex-shrink: 0;
}

.detail-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #141414;
}

.detail-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.detail-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #141414;
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
}

.detail-action-btn:hover {
  color: #374151;
}

.detail-location {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6A7282;
  margin: 0.5rem 0 0 0;
}

/* Main carousel - full width at all screen sizes */
.detail-carousel {
  position: relative;
  margin-bottom: -1.25rem;
  width: 100%;
}

.detail-carousel-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1336 / 626.09;
  background: #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.detail-carousel-img-wrap {
  width: 100%;
  height: 100%;
}

.detail-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.detail-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 58.09px;
  height: 58.09px;
  border-radius: 50%;
  background: #fff;
  color: #141414;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.detail-carousel-arrow:hover {
  background: #f3f4f6;
  color: #000;
}

.detail-carousel-prev {
  left: 1rem;
}

.detail-carousel-next {
  right: 1rem;
}

/* Stats bar overlay + blue line */
.detail-stats-wrap {
  margin-top: -5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.detail-stats-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  background: transparent;
  color: #fff;
  padding: 1rem 1.5rem 3rem 1.5rem;
  position: relative;
  z-index: 1;
}

.detail-stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.detail-stat-icon,
.detail-stat svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: #fff;
  opacity: 0.95;
}

.detail-stat-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.detail-stat-num {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

.detail-stat-label {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  opacity: 0.95;
  line-height: 1.2;
}

.detail-stats-bar-line {
  height: 3px;
  background: #5BB2FF;
  width: 100%;
  position: relative;
}

.detail-stats-bar-segment {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #5BB2FF;
  border-radius: 0 0 2px 2px;
}

/* Two columns: gallery + amenities */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1rem;
  align-items: start;
  margin-top: -0.5rem;
}

/* Gallery grid */
.detail-gallery {
  min-width: 0;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 96px;
  gap: 0.45rem;
  border-radius: 12px;
  overflow: visible;
  min-height: 0;
}

.detail-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
  min-height: 96px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.detail-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dynamic gallery: first card is featured, rest auto-flow. */
.detail-gallery-grid .detail-gallery-item:first-child,
.detail-gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 220px;
}

.detail-gallery-item-large img {
  object-fit: cover;
  height: 100%;
}

.detail-gallery-item-sauna,
.detail-gallery-item-video:not(.detail-gallery-item-row3),
.detail-gallery-item-row3,
.detail-gallery-item-row3-1,
.detail-gallery-item-row3-2,
.detail-gallery-viewall.detail-gallery-item-row3-3 {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: auto;
  max-height: none;
  min-height: 96px;
  height: auto;
  overflow: hidden;
}

.detail-gallery-item-video .detail-gallery-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.detail-gallery-item-video .detail-gallery-play svg {
  width: 48px;
  height: 48px;
  opacity: 0.95;
}

.detail-gallery-item-row3 .detail-gallery-play svg {
  width: 36px;
  height: 36px;
}

.detail-gallery-viewall {
  display: block;
  position: relative;
  text-decoration: none;
  color: #fff;
}

.detail-gallery-viewall img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-gallery-viewall-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  font-weight: 600;
  font-size: 1rem;
}

.detail-gallery-viewall:hover .detail-gallery-viewall-text {
  background: rgba(0, 0, 0, 0.55);
}

/* Amenities sidebar */
.detail-amenities {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.detail-amenities-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.detail-amenities-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #141414;
  margin: 0 0 1.5rem 0;
}

.detail-amenities-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.detail-amenities-cat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-amenities-cat-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-amenities-cat-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #eab308;
}

.detail-amenities-cat-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.detail-amenities-cat-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #141414;
}

.detail-amenities-list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-amenities-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4A5565;
}

.detail-amenities-tick {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #EFF7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-amenities-tick::after {
  content: "";
  width: 6px;
  height: 10px;
  margin-bottom: 2px;
  border: solid #5BB2FF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 576px) {
  .detail-amenities-group {
    grid-template-columns: 1fr;
  }
}

/* ========== Host & Overview section (after gallery) ========== */
.detail-overview-section {
  margin-top: 2rem;
  font-family: "Arimo", sans-serif;
}

.detail-host-contact-box {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.detail-host-contact-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Neutral placeholder when no host profile photo (initials, same idea as vendor sidebar) */
.detail-host-avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #64748b, #475569);
  color: #f8fafc;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  line-height: 1;
  user-select: none;
}

.detail-host-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-host-name {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 22.34px;
  line-height: 33.51px;
  color: #4B5563;
  margin: 0;
}

.detail-host-since {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 15.64px;
  line-height: 23.46px;
  color: #737373;
  margin: 0;
}

.detail-host-contact-line {
  border: none;
  border-top: 1px solid #F0F0F0;
  margin: 1.25rem 0 1.25rem 0;
}

.detail-host-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.detail-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 200px;
}

.detail-contact-icon-wrap {
  width: 44.68px;
  height: 44.68px;
  min-width: 44.68px;
  min-height: 44.68px;
  border-radius: 10px;
  background: #DEF0FF;
  color: #5BB2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-contact-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.detail-contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-contact-label {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12.29px;
  line-height: 18.43px;
  letter-spacing: 0.61px;
  text-transform: uppercase;
  color: #737373;
}

.detail-contact-value {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 15.64px;
  line-height: 23.46px;
  color: #141414;
}

.detail-overview-layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 1.5rem;
  align-items: start;
}

.detail-overview-main {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  min-width: 0;
}

.detail-overview-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #4B5563;
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 6px solid #4B5563;
  display: inline-block;
}

.detail-overview-text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 29.25px;
  color: #4A5565;
  margin: 0 0 1rem 0;
}

.detail-overview-text:last-of-type {
  margin-bottom: 1.5rem;
}

.detail-book-btn {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: #FFAA4C;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.detail-book-btn:hover {
  background: #f59e0b;
}

.detail-questions-sidebar {
  min-width: 0;
}

.detail-questions-card {
  background: #E9F4FD;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-right: 1.5rem;
}

.detail-questions-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #4B5563;
  margin: 0 0 0.35rem 0;
}

.detail-questions-subtext {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6A7282;
  margin: 0 0 1.25rem 0;
}

.detail-questions-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-form-label {
  display: block;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4B5563;
  margin-bottom: 0.35rem;
}

.detail-form-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.detail-form-input-icon {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: #6b7280;
  pointer-events: none;
  flex-shrink: 0;
}

.detail-form-input-icon svg {
  width: 16px;
  height: 16px;
}

.detail-form-input {
  width: 100%;
  height: 45px;
  padding: 0 1rem 0 38px;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(10, 10, 10, 0.5);
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.detail-form-input::placeholder {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: rgba(10, 10, 10, 0.5);
}

.detail-form-input:focus {
  border-color: #5BB2FF;
}

.detail-form-textarea-wrap {
  align-items: flex-start;
}

.detail-form-textarea-wrap .detail-form-input-icon {
  top: 12px;
}

.detail-form-textarea {
  height: auto;
  min-height: 100px;
  padding-top: 0.75rem;
  padding-left: 38px;
  resize: vertical;
  font-family: "Arimo", sans-serif;
  font-size: 14px;
  line-height: 100%;
  color: rgba(10, 10, 10, 0.5);
}

.detail-form-textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.detail-send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.25rem;
  margin-top: 0.25rem;
  background: #FFAA4C;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
}

.detail-send-btn:hover {
  background: #ea580c;
}

/* ========== Reviews & Location (70-30) ========== */
.detail-reviews-location {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
  font-family: "Arimo", sans-serif;
}

.detail-reviews-main,
.detail-location-sidebar {
  padding-top: 0;
  margin-top: 0;
}

.detail-reviews-main {
  min-width: 0;
}

.detail-reviews-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
  margin-bottom: 1rem;
  min-height: 32px;
}

.detail-reviews-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #4B5563;
  margin: 0;
}

.detail-reviews-head-accent {
  color: #5BB2FF;
}

.detail-reviews-showall {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #4B5563;
  text-decoration: none;
}

.detail-reviews-showall:hover {
  text-decoration: underline;
}

.detail-reviews-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail-review-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 1rem;
}

.detail-review-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: #F9FAFB;
  color: #99A1AF;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-review-body {
  min-width: 0;
}

.detail-review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}

.detail-review-name-date {
  min-width: 0;
}

.detail-review-name {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #141414;
  display: block;
  margin-bottom: 0.15rem;
}

.detail-review-date {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #99A1AF;
}

.detail-review-stars {
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.detail-review-meta .detail-review-stars {
  margin-bottom: 0;
}

.detail-star {
  color: #FFC800;
  font-size: 0.9rem;
}

.detail-star.outline {
  color: #d1d5db;
}

.detail-review-text {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  color: #4A5565;
  margin: 0;
}

.detail-review-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
  background: #D9EDFD;
  border: 1px solid #5BB2FF99;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.detail-review-cta-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  border: 1px solid #5BB2FF;
  background: #ecf5fe;
  flex-shrink: 0;
}

.detail-review-cta-icon-wrap .detail-review-cta-icon {
  width: 20px;
  height: 20px;
  color: #5BB2FF;
  fill: #5BB2FF;
}

.detail-review-cta-text {
  flex: 1;
  min-width: 200px;
}

.detail-review-cta-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #5BB2FF;
  margin: 0 0 0.35rem 0;
}

.detail-review-cta-desc {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #4B5563;
  margin: 0;
}

.detail-review-cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.detail-review-demo-btn {
  padding: 0.5rem 1rem;
  background: #fff;
  color: #5BB2FF;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.detail-review-demo-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  color: #71717B;
}

/* Location sidebar */
.detail-location-sidebar {
  min-width: 0;
  margin-right: 1.5rem;
  display: flex;
  flex-direction: column;
}

.detail-location-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #4B5563;
  margin: 0 0 1rem 0;
}

.detail-location-card {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.detail-location-map {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 200px;
  aspect-ratio: 4/3;
  background: #e5e7eb;
  overflow: hidden;
}

.detail-location-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-location-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.detail-location-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.detail-location-pin svg {
  width: 24px;
  height: 24px;
  color: #FFC800;
}

.detail-location-address-box {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.detail-location-address {
  min-width: 0;
}

.detail-location-street {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #141414;
  margin: 0 0 0.2rem 0;
}

.detail-location-city {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  color: #737373;
  margin: 0;
}

.detail-directions-btn {
  padding: 0.5rem 1rem;
  background: #FFAA4C;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.detail-directions-btn:hover {
  background: #e99535;
  color: #fff;
}

/* ========== Full width promo banner ========== */
.detail-promo-banner {
  position: relative;
  margin-top: 1rem;
  width: 100%;
  height: 300px;
  min-height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-promo-banner .detail-promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.detail-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.detail-promo-content {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.detail-promo-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 56px;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.detail-promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #FFAA4C;
  color: #FFFFFF;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
}

.detail-promo-btn:hover {
  background: #e99535;
  color: #FFFFFF;
}

/* ========== Where To Eat (Community Favorites) ========== */
.detail-eat-section {
  margin-top: 1.5rem;
  /* padding-bottom: 1rem; */
}

.detail-eat-label-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.detail-eat-label-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #4B556380;
}

.detail-eat-label {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #4B556380;
  margin: 0;
}

.detail-eat-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #4B5563;
  margin: 0 0 0.75rem 0;
  display: inline-block;
}

.detail-eat-heading::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
  height: 4px;
  background: #4B5563;
  width: 100%;
}

.detail-eat-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.detail-eat-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  min-height: 0;
  padding: 1rem;
  gap: 1.25rem;
}

.detail-eat-card-img-wrap {
  position: relative;
  flex: 0 0 300px;
  min-width: 0;
  max-height: 260px;
}

.detail-eat-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.detail-eat-tag,
.detail-eat-tag-orange,
.detail-eat-tag-green {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #FFAA4C;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.detail-eat-card-body {
  flex: 1;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.detail-eat-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.detail-eat-card-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #4B5563;
  margin: 0;
}

.detail-eat-card-actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.detail-eat-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: #4B5563;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.detail-eat-action-btn svg {
  width: 20px;
  height: 20px;
}

.detail-eat-action-btn:hover {
  color: #374151;
  background: #f3f4f6;
}

.detail-eat-stars {
  margin-bottom: 0.5rem;
}

.detail-eat-star {
  color: #FFC800;
  font-size: 1rem;
}

.detail-eat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.detail-eat-chip {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: #E3F2FD;
  color: #45556C;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.detail-eat-desc {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.12px;
  color: #6A7282;
  margin: 0 0 1rem 0;
  flex: 1;
  max-width: 60%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-eat-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.detail-eat-meta {
  display: flex;
  gap: 1.5rem;
}

.detail-eat-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-eat-meta-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #90A1B9;
}

.detail-eat-meta-value {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #4B5563;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.detail-eat-meta-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #5BB2FF;
}

.detail-eat-btn {
  padding: 0.6rem 1.25rem;
  background: #FFAA4C;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.detail-eat-btn:hover {
  background: #e99535;
  color: #fff;
}

/* ========== You Must Have To Visit These Places ========== */
.detail-visit-section {
  margin-top: 2.5rem;
  padding-bottom: 2rem;
}

.detail-visit-heading {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 35px;
  line-height: 16px;
  letter-spacing: 0;
  text-transform: capitalize;
  color: #4B5563;
  margin: 0 0 1rem 0;
  display: inline-block;
}

.detail-visit-heading::after {
  content: "";
  display: block;
  margin-top: 0.5rem;
  height: 4px;
  background: #4B5563;
  width: 100%;
}

.detail-visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.detail-visit-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.detail-visit-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
}

.detail-visit-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-visit-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: #FFAA4C;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
}

.detail-visit-card-body {
  padding: 1rem 0 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.detail-visit-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.detail-visit-card-title {
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 17.5px;
  color: #4B5563;
  margin: 0;
}

.detail-visit-views {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  background: #5BB2FF;
  color: #fff;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  flex-shrink: 0;
}

.detail-visit-views-icon {
  flex-shrink: 0;
}

.detail-visit-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 16.49px;
  line-height: 17.5px;
  color: #5BB2FF;
  margin: 0 0 0.5rem 0;
}

.detail-visit-location-icon {
  flex-shrink: 0;
  color: #5BB2FF;
}

.detail-visit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.detail-visit-chip {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: #E3F2FD;
  color: #45556C;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
}

.detail-visit-desc {
  font-family: "Arimo", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.12px;
  color: #6A7282;
  margin: 0 0 1rem 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-visit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: #FFAA4C;
  color: #ffffff;
  font-family: "Arimo", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.detail-visit-btn:hover {
  background: #e99535;
  color: #fff;
}

@media (max-width: 992px) {
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-overview-layout {
    grid-template-columns: 1fr;
  }

  .detail-reviews-location {
    grid-template-columns: 1fr;
  }

  .detail-promo-content {
    left: 1rem;
    right: 1rem;
  }

  .detail-amenities-card {
    position: static;
  }

  .detail-eat-card-img-wrap {
    flex: 0 0 260px;
  }

  .detail-visit-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .detail-header-top {
    flex-wrap: wrap;
  }

  .detail-header-actions {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .detail-title {
    line-height: 30px;
  }

  .detail-carousel {
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .detail-carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .detail-carousel-arrow svg {
    width: 20px;
    height: 20px;
  }

  .detail-carousel-prev {
    left: 0.5rem;
  }

  .detail-carousel-next {
    right: 0.5rem;
  }

  .detail-stats-wrap {
    margin-top: -4.25rem;
    padding: 0.5rem 0.25rem 1.25rem 0.25rem;
    margin-bottom: 0.5rem;
    overflow: visible;
  }

  .detail-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0;
    justify-items: center;
    align-items: center;
  }

  .detail-stat {
    min-width: 0;
    justify-content: center;
    gap: 0.25rem;
    flex-direction: column;
  }

  .detail-stat-icon,
  .detail-stat svg {
    width: 22px;
    height: 22px;
  }

  .detail-stat-num {
    font-size: 0.7rem;
  }

  .detail-stat-label {
    font-size: 0.5rem;
    line-height: 1.15;
    text-align: center;
  }

  .detail-stat-text {
    align-items: center;
  }

  .detail-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 84px;
    min-height: 0;
  }

  .detail-gallery-grid .detail-gallery-item:first-child,
  .detail-gallery-item-large {
    grid-column: 1 / -1;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 200px;
  }

  .detail-gallery-item-sauna {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .detail-gallery-item-video:not(.detail-gallery-item-row3) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: auto;
  }

  .detail-gallery-item-row3-1 {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-gallery-item-row3-2 {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-gallery-viewall.detail-gallery-item-row3-3 {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-overview-section {
    margin-top: 1.5rem;
  }

  .detail-host-contact-box {
    padding: 1.25rem 1.25rem;
  }

  .detail-host-contact-row {
    flex-direction: column;
    gap: 1rem;
  }

  .detail-contact-item {
    min-width: 0;
  }

  .detail-reviews-cards {
    grid-template-columns: 1fr;
  }

  .detail-review-cta {
    grid-template-columns: 1fr;
  }

  .detail-review-cta-action {
    align-items: flex-start;
  }

  .detail-promo-banner {
    height: auto;
    min-height: 300px;
  }

  .detail-promo-heading {
    font-size: 1.4rem;
  }

  .detail-eat-card {
    flex-direction: column;
  }

  .detail-eat-card-img-wrap {
    flex: none;
    width: 100%;
    max-height: none;
  }

  .detail-eat-card-img-wrap img {
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .detail-eat-desc {
    max-width: 100%;
  }

  .detail-visit-cards {
    grid-template-columns: 1fr;
  }

  .detail-visit-heading {
    font-size: 26px;
    line-height: 1.3;
  }
}

/* ========== Catalog index: category tiles (matches home hp-catalogue-grid, 3 per row beside filters) ========== */
.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.catalog-category-grid-empty {
  grid-column: 1 / -1;
}

.catalog-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  background: #fff;
  color: inherit;
  min-width: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.catalog-cat-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  color: inherit;
}

.catalog-cat-card-header {
  background: #ffa54f;
  color: #fff;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 0.85rem 0.5rem;
  flex: 0 0 22%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

/* Sort script expects .catalog-card-title; keep catalogue tile look */
.catalog-cat-card .catalog-card-title {
  font-family: inherit;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  line-height: 1.2;
  color: #fff;
  margin: 0;
  flex: 0 0 22%;
}

.catalog-cat-card-img {
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.catalog-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1199.98px) {
  .catalog-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 991.98px) {
  .catalog-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .catalog-category-grid {
    grid-template-columns: 1fr;
  }

  .catalog-cat-card-header {
    font-size: 0.95rem;
    padding: 1rem 0.75rem;
  }
}
