:root{
  /*--sand:#F7F0E4;*/
  --sand:#FFFFFF;
  --sand-deep:#EFE4CF;
  --teal-deep:#0B4F4A;
  --teal:#136F68;
  --terracotta:#C1622D;
  --indigo:#2E3A6E;
  --coral:#E8935B;
  --charcoal:#241F1C;
  --card:#FFFFFF;
}

*{ scroll-behavior:smooth; }

body{
  font-family:'Inter', sans-serif;
  color:var(--charcoal);
  background:var(--sand);
  overflow-x: hidden;
}

h1,h2,h3,h4,.font-display{
  font-family:'Fraunces', serif;
}

a{ text-decoration:none; }

.text-terracotta{ color:var(--terracotta); }
.text-teal-deep{ color:var(--teal-deep); }
.bg-sand{ background:var(--sand); }
.bg-sand-deep{ background:var(--sand-deep); }
.bg-teal-deep{ background:var(--teal-deep); }
.bg-indigo{ background:var(--indigo); }

/* ---------- Navbar ---------- */
.navbar-karibu{
  background:var(--sand);
  padding-top:1rem;
  padding-bottom:1rem;
  border-bottom:1px solid rgba(36,31,28,.08);
}
.brand-mark{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:1.5rem;
  color:var(--teal-deep);
  display:flex;
  align-items:center;
  gap:.5rem;
}
.brand-mark i{ color:var(--terracotta); font-size:1.4rem; }
.nav-link-karibu{
  color:var(--charcoal);
  font-weight:500;
  padding:.5rem 1rem !important;
}
.nav-link-karibu:hover{ color:var(--terracotta); }
.btn-host{
  border:1px solid var(--charcoal);
  border-radius:2rem;
  padding:.5rem 1.1rem;
  font-weight:500;
  color:var(--charcoal);
}
.btn-host:hover{ background:var(--sand-deep); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:
    linear-gradient(180deg, rgba(11,79,74,.25) 0%, rgba(11,79,74,.55) 100%),
    url('img/banner.jpg') center/cover no-repeat;
  min-height:78vh;
  display:flex;
  align-items:center;
}
.hero-eyebrow{
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.78rem;
  color:var(--sand);
  font-weight:600;
}
.hero h1{
  color:#fff;
  font-size:clamp(2.4rem, 5vw, 4rem);
  font-weight:600;
  line-height:1.08;
  max-width:820px;
}
.hero h1 em{
  font-style:italic;
  font-weight:300;
  color:#F2D9B1;
}
.hero p.lead{
  color:#F2ECDD;
  max-width:520px;
  font-size:1.1rem;
}

/* ---------- Search pill ---------- */
.search-pill{
  background:#fff;
  border-radius:2rem;
  box-shadow:0 20px 45px rgba(11,79,74,.25);
  padding:.6rem;
  margin-top:-3.5rem;
  position:relative;
  z-index:5;
}
.search-seg{
  padding:.5rem 1.2rem;
  border-right:1px solid rgba(36,31,28,.1);
}
.search-seg:last-of-type{ border-right:none; }
.search-seg label{
  display:block;
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--teal-deep);
  margin-bottom:.1rem;
}
.search-seg input, .search-seg select{
  border:none;
  outline:none;
  width:100%;
  font-size:.9rem;
  color:var(--charcoal);
  background:transparent;
}
.search-btn{
  background:var(--terracotta);
  color:#fff;
  border:none;
  border-radius:50%;
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  flex-shrink:0;
}
.search-btn:hover{ background:#a94f22; color:#fff; }
.search-btn span{ font-size:.95rem; font-weight:600; }

@media (max-width: 991.98px){
  .search-seg{ border-right:none; border-bottom:1px solid rgba(36,31,28,.1); }
  .search-seg:last-of-type{ border-bottom:none; }
  .search-pill{ margin-top:-2rem; border-radius:1.4rem; }
  .search-btn{ width:100%; border-radius:.9rem; margin-top:.3rem; }
}
@media (max-width: 575.98px){
  .hero{ min-height:88vh; }
  .search-pill{ margin-top:-1.5rem; }
}

/* ---------- Property type chips ---------- */
.type-chip{
  border:1px solid rgba(36,31,28,.15);
  border-radius:1.5rem;
  padding:.5rem 1.1rem;
  white-space:nowrap;
  color:var(--charcoal);
  font-weight:500;
  font-size:.9rem;
  background:#fff;
  transition:all .15s ease;
}
.type-chip i{ margin-right:.4rem; color:var(--terracotta); }
.type-chip.active, .type-chip:hover{
  background:var(--teal-deep);
  color:#fff;
  border-color:var(--teal-deep);
}
.type-chip.active i, .type-chip:hover i{ color:var(--coral); }
.chip-scroll{
  overflow-x:auto;
  scrollbar-width:none;
  cursor:grab;
}
.chip-scroll::-webkit-scrollbar{ display:none; }
.chip-scroll.dragging{ cursor:grabbing; user-select:none; }
.chip-scroll.dragging a{ pointer-events:none; }

/* ---------- Section headings ---------- */
.section-eyebrow{
  color:var(--terracotta);
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:.75rem;
}
.section-title{
  font-size:clamp(1.6rem, 3vw, 2.2rem);
  font-weight:600;
  color:var(--teal-deep);
}

/* ---------- Stay cards ---------- */
.stay-card{ cursor:pointer;
  background:var(--card);
  border-radius:1rem;
  overflow:hidden;
  border:1px solid rgba(36,31,28,.08);
  transition:transform .2s ease, box-shadow .2s ease;
  height:100%;
}
.stay-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 30px rgba(36,31,28,.14);
}
.stay-img-wrap{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.stay-img-wrap img{ width:100%; height:100%; object-fit:cover; }
.fav-btn{
  position:absolute; top:.7rem; right:.7rem;
  width:34px; height:34px;
  background:rgba(36,31,28,.35);
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:#fff; border:none;
}
.fav-btn:hover{ color:var(--terracotta); }
.stay-badge{
  position:absolute; top:.7rem; left:.7rem;
  background:var(--sand);
  color:var(--teal-deep);
  font-size:.72rem;
  font-weight:700;
  padding:.25rem .6rem;
  border-radius:1rem;
}
.stay-body{ padding:1rem 1.1rem 1.2rem; }
.stay-title{ font-weight:600; font-size:1.02rem; margin-bottom:.15rem; }
.stay-loc{ color:#6b6259; font-size:.85rem; }
.stay-rating{ font-size:.85rem; font-weight:600; }
.stay-price{ font-weight:700; color:var(--charcoal); }
.stay-price span{ font-weight:400; color:#6b6259; font-size:.85rem; }

/* ---------- Feature icons ---------- */
.feature-icon{
  width:58px; height:58px;
  border-radius:50%;
  background:var(--sand-deep);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem;
  color:var(--terracotta);
  margin-bottom:1rem;
}

/* ---------- Destination cards ---------- */
.dest-card{
  position:relative;
  border-radius:1rem;
  overflow:hidden;
  aspect-ratio:3/4;
}
.dest-card img{ width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.dest-card:hover img{ transform:scale(1.07); }
.dest-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(11,20,18,.75) 100%);
  display:flex; align-items:flex-end;
  padding:1rem;
}
.dest-overlay h5{ color:#fff; margin:0; font-weight:600; }
.dest-overlay span{ color:#e6e0d3; font-size:.8rem; }

/* ---------- Testimonials ---------- */
.quote-card{
  background:#fff;
  border-radius:1rem;
  padding:1.8rem;
  border:1px solid rgba(36,31,28,.08);
  height:100%;
}
.quote-mark{ font-family:'Fraunces', serif; font-size:2.6rem; color:var(--terracotta); line-height:1; }
.avatar-circle{
  width:42px; height:42px; border-radius:50%;
  object-fit:cover;
}

/* ---------- Host CTA ---------- */
.host-cta{
  background:var(--teal-deep);
  border-radius:1.5rem;
  overflow:hidden;
  color:#fff;
}
.host-cta h2{ font-weight:600; font-size:clamp(1.6rem,3vw,2.3rem); }
.host-cta img{ width:100%; height:100%; object-fit:cover; min-height:280px; }
.btn-terracotta{
  background:var(--terracotta);
  color:#fff;
  border:none;
  border-radius:2rem;
  padding:.7rem 1.6rem;
  font-weight:600;
}
.btn-terracotta:hover{ background:#a94f22; color:#fff; }

/* ---------- Footer ---------- */
footer{ background:var(--charcoal); color:#DCD5C8; }
footer h6{ color:#fff; font-weight:600; margin-bottom:1rem; font-size:.95rem; }
footer a{ color:#B8AF9F; display:block; margin-bottom:.5rem; font-size:.9rem; }
footer a:hover{ color:var(--coral); }
.social-circle{
  width:36px; height:36px; border-radius:50%;
  border:1px solid #56504A;
  display:flex; align-items:center; justify-content:center;
  color:#DCD5C8;
}
.social-circle:hover{ background:var(--terracotta); border-color:var(--terracotta); color:#fff; }
.newsletter-input{
  background:transparent;
  border:1px solid #56504A;
  color:#fff;
  border-radius:2rem 0 0 2rem;
  padding:.6rem 1.1rem;
}
.newsletter-input::placeholder{ color:#8d857a; }
.newsletter-input:focus{ background:transparent; color:#fff; box-shadow:none; border-color:var(--coral); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
  .dest-card:hover img{ transform:none; }
  .stay-card:hover{ transform:none; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible{
  outline:0px solid var(--terracotta);
  outline-offset:2px;
}

/* PROPERTY PAGE STYLE CSS */
/* Breadcrumb / header */
.breadcrumb-karibu a{ color:#6b6259; font-size:.85rem; }
.breadcrumb-karibu a:hover{ color:var(--terracotta); }
.listing-title{ font-weight:600; font-size:clamp(1.5rem,3vw,2.1rem); color:var(--teal-deep); }
.meta-pill{ font-size:.9rem; color:var(--charcoal); }
.icon-btn{
  border:1px solid rgba(36,31,28,.15);
  border-radius:2rem;
  padding:.4rem 1rem;
  font-size:.85rem;
  font-weight:500;
  background:#fff;
  color:var(--charcoal);
}
.icon-btn:hover{ background:var(--sand-deep); }

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(140px, 200px));
  gap:6px;
  border-radius:1rem;
  overflow:hidden;
  position:relative;
}
.gallery-grid img{ width:100%; height:100%; object-fit:cover; display:block; }
.gallery-grid .g-main{ grid-row:1/3; grid-column:1; }
@media (max-width: 991.98px){
  .gallery-grid{ grid-template-columns:1fr; grid-template-rows:260px; border-radius:.8rem; }
  .gallery-grid .g-side{ display:none; }
  .show-all-btn{ bottom:.7rem; right:.7rem; padding:.4rem .85rem; font-size:.8rem; }
}
@media (max-width: 575.98px){
  .gallery-grid{ grid-template-rows:220px; }
}
.show-all-btn{
  position:absolute; bottom:1rem; right:1rem;
  background:#fff; border:1px solid var(--charcoal);
  border-radius:2rem; padding:.45rem 1rem; font-size:.85rem; font-weight:600;
}
.show-all-btn:hover{ background:var(--sand-deep); }

/* Host row */
.host-avatar{ width:56px; height:56px; border-radius:50%; object-fit:cover; }
.section-divider{ border-top:1px solid rgba(36,31,28,.1); margin:2rem 0; }

/* Amenity list */
.amenity-item{ padding:.6rem 0; display:flex; align-items:center; gap:.75rem; }
.amenity-item i{ font-size:1.2rem; color:var(--terracotta); width:24px; }
 
/* Description show more/less */
.description-wrap{ position:relative; }
.description-text{
  line-height:1.6;
  max-height:6.4em; /* ~4 lines at this line-height, regardless of source formatting */
  overflow:hidden;
  position:relative;
  transition:max-height .25s ease;
}
.description-text::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:2.4em;
  background:linear-gradient(to bottom, rgba(247,240,228,0), var(--sand));
  pointer-events:none;
}
.description-text.expanded{
  max-height:none;
}
.description-text.expanded::after{
  display:none;
}
 
/* Amenities modal */
.amenities-modal-content{
  border-radius:1.2rem;
  border:none;
}
.amenities-modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.3rem 1.5rem 1rem;
  border-bottom:1px solid rgba(36,31,28,.08);
}
.amenities-modal-header h5{ margin:0; font-weight:600; color:var(--teal-deep); }
.amenities-close-btn{
  width:36px; height:36px;
  border-radius:50%;
  border:1px solid rgba(36,31,28,.15);
  background:#fff;
  display:flex; align-items:center; justify-content:center;
}
.amenities-close-btn:hover{ background:var(--sand-deep); }
.amenity-category{ margin-bottom:1.6rem; }
.amenity-category:last-child{ margin-bottom:0; }
.amenity-category h6{ font-weight:600; margin-bottom:.6rem; color:var(--charcoal); }

/* Sleeping cards */
.sleep-card{
  border:1px solid rgba(36,31,28,.1);
  border-radius:.9rem;
  padding:1rem;
  text-align:center;
}
.sleep-card i{ font-size:1.6rem; color:var(--terracotta); margin-bottom:.4rem; display:block; }

/* Booking card */
.booking-card{
  background:#fff;
  border:1px solid rgba(36,31,28,.1);
  border-radius:1.2rem;
  box-shadow:0 20px 40px rgba(36,31,28,.1);
  padding:1.5rem;
}
@media (min-width: 992px){
  .booking-card{ position:sticky; top:100px; }
}
.booking-price{ font-weight:700; font-size:1.4rem; }
.booking-price span{ font-weight:400; font-size:.9rem; color:#6b6259; }
.date-box{ border:1px solid rgba(36,31,28,.2); border-radius:.7rem; overflow:hidden; }
.date-box .seg{ padding:.55rem .8rem; border-right:1px solid rgba(36,31,28,.2); }
.date-box .seg:last-child{ border-right:none; }
.date-box label{ font-size:.65rem; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--teal-deep); display:block; }
.date-box input, .date-box select{ border:none; outline:none; width:100%; font-size:.85rem; background:transparent; }
.guest-details{ margin-top:.2rem; }
.form-label-karibu{
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.05em;
  color:var(--teal-deep);
  margin-bottom:.25rem;
  display:block;
}
.form-control-karibu{
  border:1px solid rgba(36,31,28,.18);
  border-radius:.6rem;
  padding:.55rem .8rem;
  font-size:.88rem;
  width:100%;
}
.form-control-karibu:focus{
  outline:none;
  border-color:var(--terracotta);
  box-shadow:0 0 0 3px rgba(193,98,45,.15);
}
.form-control-karibu:invalid:not(:placeholder-shown){ border-color:#c0392b; }
.booking-error{ font-size:.8rem; color:#c0392b; margin-top:.4rem; min-height:1.1em; }
.price-row{ display:flex; justify-content:space-between; font-size:.9rem; padding:.4rem 0; color:#4a433d; }
.price-total{ display:flex; justify-content:space-between; font-weight:700; padding-top:.7rem; border-top:1px solid rgba(36,31,28,.12); }
/* Reviews */
.rating-bar{ height:6px; border-radius:3px; background:rgba(36,31,28,.1); overflow:hidden; }
.rating-bar span{ display:block; height:100%; background:var(--terracotta); }
.review-card{ border:1px solid rgba(36,31,28,.08); border-radius:1rem; padding:1.2rem; height:100%; background:#fff; }
.avatar-circle{ width:42px; height:42px; border-radius:50%; object-fit:cover; }

/* Map placeholder */
/*.map-box{
  border-radius:1rem;
  height:320px;
  background:
    linear-gradient(rgba(11,79,74,.15), rgba(11,79,74,.15)),
    repeating-linear-gradient(45deg, #d9cfb8 0 10px, #e7dcc4 10px 20px);
  display:flex; align-items:center; justify-content:center;
  color:var(--teal-deep);
  font-weight:600;
  border:1px solid rgba(36,31,28,.1);
}*/

.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

#hotelMap {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.map-overlay a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
    transition: .2s;
}

.map-overlay a:hover {
    background: #0d6efd;
    color: #fff;
}

/* ---------- Gallery modal ---------- */
.gallery-modal-content{
  background:#0d0d0d;
  border:none;
  height:100vh;
}
.gallery-modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem 1.2rem;
  flex-shrink:0;
}
.gallery-close-btn{
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.06);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
}
.gallery-close-btn:hover{ background:rgba(255,255,255,.15); }
.gallery-counter{
  color:#fff;
  font-size:.9rem;
  font-weight:600;
  letter-spacing:.02em;
  background:rgba(255,255,255,.08);
  border-radius:1rem;
  padding:.35rem .9rem;
}
.gallery-carousel{
  flex:1 1 auto;
  min-height:0;
  display:flex;
}
.gallery-carousel .carousel-inner,
.gallery-carousel .carousel-item{ height:100%; }
.gallery-carousel .carousel-item img{
  width:100%; height:100%;
  object-fit:contain;
  background:#0d0d0d;
}
.carousel-control-prev, .carousel-control-next{ width:8%; opacity:1; }
.gallery-arrow{
  width:44px; height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem;
  margin:0 auto;
}
.gallery-arrow:hover{ background:rgba(255,255,255,.22); }
.gallery-thumb-strip{
  flex-shrink:0;
  gap:.5rem;
  padding:.9rem 1.2rem 1.2rem;
  overflow-x:auto;
  scrollbar-width:none;
}
.gallery-thumb-strip::-webkit-scrollbar{ display:none; }
.gallery-thumb-strip img{
  width:88px; height:64px;
  object-fit:cover;
  border-radius:.5rem;
  opacity:.5;
  cursor:pointer;
  flex-shrink:0;
  border:2px solid transparent;
  transition:opacity .15s ease, border-color .15s ease;
}
.gallery-thumb-strip img:hover{ opacity:.8; }
.gallery-thumb-strip img.active{
  opacity:1;
  border-color:var(--coral);
}
@media (max-width: 991.98px){
  .gallery-carousel .carousel-item img{ object-fit:cover; }
}


/* LISTINGS PAGE STYLE CSS */
/* Compact search pill in header */
.mini-search{
  background:#fff;
  border:1px solid rgba(36,31,28,.15);
  border-radius:2rem;
  padding:.35rem;
  display:flex;
  align-items:center;
  box-shadow:0 6px 16px rgba(36,31,28,.06);
}
.mini-search .seg{
  padding:.3rem 1rem;
  border-right:1px solid rgba(36,31,28,.12);
  font-size:.82rem;
}
.mini-search .seg:last-of-type{ border-right:none; }
.mini-search .seg label{ display:block; font-size:.62rem; font-weight:700; text-transform:uppercase; color:var(--teal-deep); letter-spacing:.04em; }
.mini-search input, .mini-search select{ border:none; outline:none; background:transparent; font-size:.82rem; width:110px; }
.mini-search-btn{
  background:var(--terracotta); color:#fff; border:none; border-radius:50%;
  width:38px; height:38px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
@media (max-width: 991.98px){ .mini-search{ display:none; } }

/* Mobile search bar (shown below lg, replaces the desktop mini-search) */
.mobile-search{
  display:none;
  background:#fff;
  border:1px solid rgba(36,31,28,.15);
  border-radius:1rem;
  padding:.8rem;
  margin:0 0 1rem;
  box-shadow:0 6px 16px rgba(36,31,28,.06);
}
@media (max-width: 991.98px){ .mobile-search{ display:block; } }
.mobile-search .row > div{ padding:.4rem .6rem; }
.mobile-search label{ display:block; font-size:.62rem; font-weight:700; text-transform:uppercase; color:var(--teal-deep); letter-spacing:.04em; margin-bottom:.1rem; }
.mobile-search input, .mobile-search select{
  border:1px solid rgba(36,31,28,.15);
  border-radius:.6rem;
  padding:.5rem .7rem;
  width:100%;
  font-size:.88rem;
  outline:none;
}
.mobile-search input:focus, .mobile-search select:focus{ border-color:var(--terracotta); }
.mobile-search .mobile-search-btn{
  width:100%;
  background:var(--terracotta);
  color:#fff;
  border:none;
  border-radius:.6rem;
  padding:.6rem;
  font-weight:600;
  margin-top:.5rem;
}
.mobile-search .mobile-search-btn:hover{ background:#a94f22; }

/* Page header */
.dest-hero{
  height:220px;
  border-radius:1.2rem;
  overflow:hidden;
  position:relative;
}
.dest-hero img{ width:100%; height:100%; object-fit:cover; }
.dest-hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(11,79,74,.75) 0%, rgba(11,79,74,.15) 70%);
  display:flex; flex-direction:column; justify-content:center;
  padding:2rem;
}
.dest-hero-overlay h1{ color:#fff; font-weight:600; font-size:clamp(1.8rem,3.5vw,2.6rem); margin-bottom:.3rem; }
.dest-hero-overlay p{ color:#EDE6D6; margin:0; }

/* Filter bar */
.filter-bar{
  display:flex;
  align-items:center;
  gap:.6rem;
  overflow-x:auto;
  padding:.25rem 0;
  scrollbar-width:none;
  cursor:grab;
}
.filter-bar::-webkit-scrollbar{ display:none; }
.filter-chip{
  border:1px solid rgba(36,31,28,.15);
  background:#fff;
  border-radius:1.5rem;
  padding:.5rem 1.1rem;
  font-size:.85rem;
  font-weight:500;
  white-space:nowrap;
  color:var(--charcoal);
  display:flex; align-items:center; gap:.4rem;
}
.filter-chip:hover{ background:var(--sand-deep); }
.filter-chip.active{ background:var(--teal-deep); color:#fff; border-color:var(--teal-deep); }
.filter-chip i{ font-size:.8rem; }
.sort-select{
  border:1px solid rgba(36,31,28,.15);
  border-radius:1.5rem;
  padding:.5rem 1rem;
  font-size:.85rem;
  background:#fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23241F1C'/%3E%3C/svg%3E") no-repeat right .9rem center;
  appearance:none;
  padding-right:2rem;
  min-width:150px;
}

/* Results row */
.results-count{ color:#6b6259; font-size:.9rem; }

/* Property type quick chips */
.type-chip{
  border:1px solid rgba(36,31,28,.15);
  border-radius:1.5rem;
  padding:.5rem 1.1rem;
  white-space:nowrap;
  color:var(--charcoal);
  font-weight:500;
  font-size:.9rem;
  background:#fff;
}
.type-chip i{ margin-right:.4rem; color:var(--terracotta); }
.type-chip.active, .type-chip:hover{ background:var(--teal-deep); color:#fff; border-color:var(--teal-deep); }
.type-chip.active i, .type-chip:hover i{ color:var(--coral); }
.chip-scroll{ overflow-x:auto; scrollbar-width:none; cursor:grab; }
.chip-scroll::-webkit-scrollbar{ display:none; }
.chip-scroll.dragging, .filter-bar.dragging{ cursor:grabbing; user-select:none; }
.chip-scroll.dragging a, .filter-bar.dragging button{ pointer-events:none; }

/* Sidebar filters (offcanvas on mobile, static column on desktop) */
.filters-panel{
  background:#fff;
  border:1px solid rgba(36,31,28,.08);
  border-radius:1rem;
  padding:1.3rem;
}
.filters-panel h6{ font-weight:600; margin-bottom:.7rem; }
.filters-panel .form-range{ accent-color:var(--terracotta); }
.form-check-input:checked{ background-color:var(--terracotta); border-color:var(--terracotta); }
.form-check-label{ font-size:.9rem; }
.filter-divider{ border-top:1px solid rgba(36,31,28,.08); margin:1.1rem 0; }

/* Pagination */
.page-btn{
  width:38px; height:38px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid rgba(36,31,28,.15);
  color:var(--charcoal);
  font-weight:500;
  background:#fff;
}
.page-btn.active{ background:var(--teal-deep); color:#fff; border-color:var(--teal-deep); }
.page-btn:hover:not(.active){ background:var(--sand-deep); }

.slider-container{
    position:relative;
    width:100%;
    height:45px;
}

.slider-track{
    position:absolute;
    height:5px;
    width:100%;
    background:#ddd;
    top:18px;
    border-radius:10px;
}

.slider-range{
    position:absolute;
    height:5px;
    background:#d97706;
    top:18px;
    border-radius:10px;
}

.slider-container input[type=range]{
    position:absolute;
    width:100%;
    left:0;
    top:10px;

    appearance:none;
    -webkit-appearance:none;

    background:none;
    pointer-events:none;
}

.slider-container input[type=range]::-webkit-slider-thumb{
    appearance:none;
    -webkit-appearance:none;

    width:18px;
    height:18px;
    border-radius:50%;
    background:#d97706;
    cursor:pointer;
    pointer-events:auto;
}

.slider-container input[type=range]::-moz-range-thumb{
    width:18px;
    height:18px;
    border-radius:50%;
    background:#d97706;
    cursor:pointer;
    pointer-events:auto;
}