
/*
CTC Separate Stylesheet
Updated: 2026-05-03 13:53:16
*/





.custom-gallery-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 10px;
  height: 400px;
}


.custom-gallery-grid .gallery-item {
  width: 100%;
  height: 100%;
}

.custom-gallery-grid .gallery-item.big {
  grid-row: span 2;
}

.custom-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.custom-property-layout {
  max-width: 1100px;
  margin: auto;
}

.custom-property-layout > div {
  margin-bottom: 40px;
}

.custom-property-layout h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Card style sections */
.custom-property-layout > div {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}










.custom-property-wrapper {
  max-width: 1100px;
  margin: auto;
}

/* Sections spacing */
.custom-property-wrapper > div {
  margin-bottom: 40px;
}

/* Card style */
.custom-property-wrapper > div {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Titles */
.custom-property-wrapper h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Price highlight */
.section-price {
  font-size: 20px;
  font-weight: 600;
}



































/*
 * listing-detail.css
 * VillaBroker – Custom WP Rentals Listing Detail Page
 * Scoped under .vb-* prefix to avoid conflicts with parent theme.
 */

/* ── CSS VARIABLES ────────────────────────────────────────────────────────── */
:root {
  --vb-gold:        #c49a4f;
  --vb-gold-light:  #f0deb8;
  --vb-dark:        #18120a;
  --vb-text:        #2e2416;
  --vb-muted:       #7a6e5f;
  --vb-bg:          #f9f6f0;
  --vb-white:       #ffffff;
  --vb-border:      #e5ddd0;
  --vb-green:       #2c6e49;
  --vb-red:         #b5341e;
  --vb-shadow-sm:   0 2px 12px rgba(24,18,10,.08);
  --vb-shadow:      0 6px 32px rgba(24,18,10,.12);
  --vb-radius:      14px;
  --vb-font-body:   'Outfit', 'Segoe UI', sans-serif;
  --vb-font-serif:  'Playfair Display', 'Georgia', serif;
}

/* ── RESET FOR OUR WRAPPER ────────────────────────────────────────────────── */
.vb-listing-detail *,
.vb-listing-detail *::before,
.vb-listing-detail *::after {
  box-sizing: border-box;
}
.vb-listing-detail {
  font-family: var(--vb-font-body);
  color: var(--vb-text);
  background: var(--vb-bg);
  font-size: 14px;
  line-height: 1.65;
}

/* ── BREADCRUMB ───────────────────────────────────────────────────────────── */
.vb-bc {
  padding: 12px 40px;
  font-size: 12px;
  color: var(--vb-muted);
  background: var(--vb-white);
  border-bottom: 1px solid var(--vb-border);
}
.vb-bc a { color: var(--vb-muted); text-decoration: none; transition: color .2s; }
.vb-bc a:hover { color: var(--vb-gold); }
.vb-bc-sep { margin: 0 6px; opacity: .45; }

/* ── TITLE BAR ────────────────────────────────────────────────────────────── */
.vb-title-bar {
  padding: 20px 40px 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
}
.vb-prop-title {
  font-family: var(--vb-font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--vb-dark);
  line-height: 1.2;
  margin: 0 0 6px;
}
.vb-prop-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.vb-prop-loc   { font-size: 13px; color: var(--vb-muted); }
.vb-type-badge {
  background: var(--vb-gold-light);
  color: #7a4e10;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .4px;
}
.vb-action-badge { background: #eaf5ee; color: var(--vb-green); }
.vb-title-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.vb-stars        { color: var(--vb-gold); font-size: 17px; letter-spacing: 2px; }
.vb-review-count { font-size: 12px; color: var(--vb-muted); }
.vb-share-fav    { display: flex; gap: 8px; }
.vb-icon-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--vb-border);
  border-radius: 50%;
  background: var(--vb-white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: border-color .2s, background .2s;
  padding: 0;
}
.vb-icon-btn:hover { border-color: var(--vb-gold); background: var(--vb-gold-light); }

/* ── HERO LAYOUT ─────────────────────────────────────────────────────────── */
.vb-hero-layout {
  display: grid;
  grid-template-columns: 1fr 0px;
  
  padding: 0 40px 24px;
  /* align-items: start so sticky works correctly */
  align-items: start;
  position: relative;
  background: var(--vb-bg) !important;
}

/* ── GALLERY ─────────────────────────────────────────────────────────────── */
.vb-gallery-col { display: flex; flex-direction: column; gap: 4px; }

.vb-gallery-main {
  border-radius: var(--vb-radius) var(--vb-radius) 0 0;
  overflow: hidden;
  height: 450px;
  cursor: pointer;
  background: var(--vb-dark);
}
.vb-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}
.vb-gallery-main:hover img { transform: scale(1.03); }

/* Thumbs — up to 4 across */
.vb-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.vb-thumb-wrap {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 110px;
}
.vb-thumb-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.vb-thumb-wrap:hover img  { transform: scale(1.05); }
.vb-last-thumb img        { filter: brightness(.55); }
.vb-view-all-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 600; gap: 5px;
  font-family: var(--vb-font-body);
  text-align: center;
  padding: 4px;
  pointer-events: none;
}
.vb-last-thumb { pointer-events: all; }
.vb-last-thumb .vb-view-all-overlay { pointer-events: all; cursor: pointer; }

.vb-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; background: var(--vb-bg);
}

/* Dot navigation */
.vb-thumb-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 4px;
  flex-wrap: wrap;
}
.vb-tdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--vb-border);
  cursor: pointer;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.vb-tdot.active  { background: var(--vb-gold); transform: scale(1.3); }
.vb-tdot:hover   { background: var(--vb-gold-light); }

/* ══════════════════════════════════════════════════════════════════════════
   BOOKING CARD — Sticky with scrollable inner form
══════════════════════════════════════════════════════════════════════════ */
.vb-booking-card {
  background: var(--vb-white);
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  box-shadow: var(--vb-shadow);

  /* Sticky positioning */
  position: fixed;
  top: 120px;
  right: 45px;
  bottom: 20px;  
  /* below wp-admin bar + sticky nav */
  align-self: start;

  /* Flex column so form scrolls but price block stays visible */
  display: flex;
  flex-direction: column;
  
}


#vb-enquiry-form{
    padding: 20px;
}



/* Price block — pinned at top, never scrolls away */
.vb-price-block {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--vb-border);
  flex-shrink: 0;     /* never compress */
}
.vb-price-main   { display: flex; align-items: baseline; gap: 6px; }
.vb-price-num {
  font-family: var(--vb-font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--vb-dark);
}
.vb-price-unit       { font-size: 12px; color: var(--vb-muted); }
.vb-price-note       { font-size: 11px; color: var(--vb-muted); margin-top: 3px; }
.vb-price-disclaimer { font-size: 11px; color: var(--vb-green); font-weight: 500; margin-top: 4px; }

/* Form wrap — scrollable */
.vb-booking-form-wrap {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--vb-border) transparent;
}
.vb-booking-form-wrap::-webkit-scrollbar       { width: 4px; }
.vb-booking-form-wrap::-webkit-scrollbar-track { background: transparent; }
.vb-booking-form-wrap::-webkit-scrollbar-thumb { background: var(--vb-border); border-radius: 4px; }

/* Card perks — pinned at bottom */
.vb-card-perks {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--vb-border);
  flex-shrink: 0;
}
.vb-card-perk { font-size: 11px; color: var(--vb-muted); }

/* Enquiry fallback form inputs */
.vb-enquiry-form { display: flex; flex-direction: column; gap: 0; }
.vb-inp-group    { margin-bottom: 10px; }
.vb-inp-group label {
  display: block;
  font-size: 11px;
  color: var(--vb-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 5px;
  font-weight: 500;
}
.vb-inp-group input,
.vb-inp-group select {
  width: 100%;
  border: 1.5px solid var(--vb-border);
  border-radius: 9px;
  padding: 10px 13px;
  font-family: var(--vb-font-body);
  font-size: 13px;
  background: var(--vb-bg);
  color: var(--vb-text);
  outline: none;
  transition: border-color .2s;
}
.vb-inp-group input:focus,
.vb-inp-group select:focus { border-color: var(--vb-gold); }
.vb-inp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vb-book-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--vb-gold), #a8793a);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-family: var(--vb-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(196,154,79,.35);
}
.vb-book-btn:hover { opacity: .9; transform: translateY(-1px); }

/* ── STICKY NAV ──────────────────────────────────────────────────────────── */
.vb-sticky-nav {
  background: var(--vb-white);
  border-bottom: 2px solid var(--vb-border);
  position: sticky;
  top: 0;
  z-index: 150;
  max-width: 93%;
    margin-left: 40px;
    border-radius: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.vb-sticky-nav ul {
  display: flex;
  list-style: none;
  
  margin: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.vb-sticky-nav ul::-webkit-scrollbar { display: none; }
.vb-nav-link {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--vb-muted);
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.vb-nav-link:hover,
.vb-nav-link.active {
  color: var(--vb-gold);
  border-bottom-color: var(--vb-gold);
}

/* ── CONTENT AREA ────────────────────────────────────────────────────────── */
.vb-content {
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1200px;
background: var(--vb-bg);
}

/* ── QUICK STATS ─────────────────────────────────────────────────────────── */
.vb-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.vb-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--vb-white);
  border: 1px solid var(--vb-border);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--vb-shadow-sm);
}
.vb-stat-green {
  background: linear-gradient(135deg, #eaf5f0, #d4eedf);
  border-color: #9ecfb4;
  color: var(--vb-green);
}
.vb-stat-gold {
  background: linear-gradient(135deg, #fdf3e3, #f5e0bb);
  border-color: #e0c07a;
  color: #7a4e10;
}
.vb-good-for-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  padding-top: 14px;
  border-top: 1px solid var(--vb-border);
  margin-top: 14px;
}
.vb-good-for-row strong { color: var(--vb-text); font-weight: 500; }
.vb-gf-tag {
  background: var(--vb-bg);
  border: 1px solid var(--vb-border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
}

/* ── CARDS ───────────────────────────────────────────────────────────────── */
.vb-card {
  background: var(--vb-white);
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  padding: 26px;
  box-shadow: var(--vb-shadow-sm);
}
.vb-sec-title {
  font-family: var(--vb-font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--vb-dark);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vb-sec-title::after,
.vb-standalone-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--vb-border);
}
.vb-standalone-title {
  font-family: var(--vb-font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--vb-dark);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── OVERVIEW ICONS ──────────────────────────────────────────────────────── */
.vb-overview-icons { display: flex; flex-wrap: wrap; gap: 18px; }
.vb-ov-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 7px;
  min-width: 68px; text-align: center;
}
.vb-ov-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--vb-bg);
  border: 1px solid var(--vb-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: transform .2s;
}
.vb-ov-item:hover .vb-ov-ico { transform: scale(1.08); }
.vb-ov-lbl { font-size: 11px; color: var(--vb-muted); line-height: 1.3; }

/* ── DESCRIPTION ─────────────────────────────────────────────────────────── */
.vb-desc-body {
  font-size: 14px;
  line-height: 1.85;
  color: #4a3e30;
  max-height: 120px;
  overflow: hidden;
  position: relative;
  transition: max-height .4s;
}
.vb-desc-body:not(.vb-expanded)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(transparent, var(--vb-white));
}
.vb-desc-body.vb-expanded { max-height: 2000px; }
.vb-read-more-btn {
  color: var(--vb-gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: var(--vb-font-body);
  padding: 0;
}

/* ── POLICY ──────────────────────────────────────────────────────────────── */
.vb-policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.vb-p-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--vb-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.vb-p-val    { font-size: 14px; font-weight: 600; }
.vb-green    { color: var(--vb-green); }
.vb-red      { color: var(--vb-red); }
.vb-policy-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.vb-ptag {
  background: var(--vb-bg);
  border: 1px solid var(--vb-border);
  border-radius: 7px;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
}
.vb-policy-note {
  font-size: 12px;
  color: var(--vb-muted);
  line-height: 1.8;
  padding-top: 12px;
  border-top: 1px solid var(--vb-border);
}

/* ══════════════════════════════════════════════════════════════════════════
   AMENITIES — grouped layout
══════════════════════════════════════════════════════════════════════════ */
.vb-amenities-grouped {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Category heading */
.vb-am-group-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--vb-dark);
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--vb-border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.vb-am-group-title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--vb-gold);
  border-radius: 2px;
}

/* Grid inside each group */
.vb-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.vb-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--vb-border);
  background: var(--vb-bg);
  transition: border-color .2s, background .2s, transform .15s;
}
.vb-amenity:hover {
  border-color: var(--vb-gold-light);
  background: var(--vb-white);
  transform: translateY(-1px);
}
.vb-am-ico {
  width: 36px; height: 36px;
  background: var(--vb-white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--vb-border);
}
.vb-am-name { font-size: 13px; font-weight: 500; line-height: 1.3; }

/* ── MEALS ───────────────────────────────────────────────────────────────── */
.vb-meals-hero {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 180px;
  background: var(--vb-dark);
  margin-bottom: 16px;
}
.vb-meals-hero img { width: 100%; height: 100%; object-fit: cover; opacity: .75; display: block; }
.vb-meals-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 54px; height: 54px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s;
}
.vb-meals-play:hover { transform: translate(-50%,-50%) scale(1.08); }
.vb-meals-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.vb-mt {
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--vb-border);
  background: var(--vb-bg);
  color: var(--vb-muted);
  transition: all .2s;
}
.vb-mt.active { background: var(--vb-gold); color: #fff; border-color: var(--vb-gold); }
.vb-meals-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vb-meals-note { font-size: 12.5px; color: var(--vb-muted); line-height: 1.8; }

/* ── ADDRESS / MAP ───────────────────────────────────────────────────────── */
.vb-address-line {
  font-size: 13px;
  color: var(--vb-muted);
  margin-bottom: 14px;
}
.vb-no-map {
  height: 120px;
  display: flex; align-items: center; justify-content: center;
  background: var(--vb-bg);
  border-radius: 10px;
  font-size: 14px;
  color: var(--vb-muted);
  border: 1px dashed var(--vb-border);
}

/* ── SIMILAR ─────────────────────────────────────────────────────────────── */
.vb-similar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.vb-sim-card {
  border: 1px solid var(--vb-border);
  border-radius: var(--vb-radius);
  overflow: hidden;
  background: var(--vb-white);
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
}
.vb-sim-card:hover { box-shadow: var(--vb-shadow); transform: translateY(-3px); }
.vb-sim-img { height: 150px; overflow: hidden; }
.vb-sim-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.vb-sim-card:hover .vb-sim-img img { transform: scale(1.05); }
.vb-sim-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; background: var(--vb-bg);
}
.vb-sim-body { padding: 14px; }
.vb-sim-title {
  font-weight: 600; font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vb-sim-loc    { font-size: 12px; color: var(--vb-muted); margin-bottom: 8px; }
.vb-sim-footer { display: flex; align-items: center; justify-content: space-between; }
.vb-sim-price  {
  font-family: var(--vb-font-serif);
  font-size: 16px; font-weight: 700; color: var(--vb-dark);
}
.vb-sim-price span { font-size: 11px; font-weight: 400; color: var(--vb-muted); font-family: var(--vb-font-body); }
.vb-sim-tags  { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }
.vb-sim-tag   {
  background: var(--vb-bg);
  border: 1px solid var(--vb-border);
  border-radius: 4px;
  font-size: 10px;
  padding: 2px 7px;
  color: var(--vb-muted);
}

/* ── LIGHTBOX ────────────────────────────────────────────────────────────── */
.vb-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
}
.vb-lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.vb-lb-close,
.vb-lb-prev,
.vb-lb-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.vb-lb-close:hover,
.vb-lb-prev:hover,
.vb-lb-next:hover { background: rgba(255,255,255,.25); }
.vb-lb-close { top: 20px; right: 20px; font-size: 16px; }
.vb-lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.vb-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }
.vb-lb-count {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: 13px;
  font-family: var(--vb-font-body);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .vb-hero-layout { grid-template-columns: 1fr 300px; }
}

@media (max-width: 960px) {
  .vb-hero-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 20px;
  }
  .vb-booking-card {
    position: static;
    max-height: none;
  }
  .vb-booking-form-wrap { overflow-y: visible; }
  .vb-gallery-main     { height: 240px; }
  .vb-thumb-wrap        { height: 90px; }
  .vb-amenities-grid    { grid-template-columns: repeat(2, 1fr); }
  .vb-similar-grid      { grid-template-columns: repeat(2, 1fr); }
  .vb-meals-cols        { grid-template-columns: 1fr; }
  .vb-content,
  .vb-title-bar,
  .vb-bc,
  .vb-sticky-nav ul { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 700px) {
  .vb-gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .vb-thumb-wrap      { height: 100px; }
}

@media (max-width: 600px) {
  .vb-prop-title   { font-size: 24px; }
  .vb-amenities-grid { grid-template-columns: 1fr 1fr; }
  .vb-similar-grid { grid-template-columns: 1fr; }
  .vb-policy-grid  { grid-template-columns: 1fr; }
  .vb-title-bar    { padding: 14px 16px 8px; }
  .vb-bc           { padding: 10px 16px; }
  .vb-content      { padding: 20px 16px; }
  .vb-sticky-nav ul { padding: 0 16px; }
}

@media (max-width: 480px) {
  .vb-amenities-grid { grid-template-columns: 1fr; }
}



// for form-right inside

.vb-custom-booking {
    background: #eae6df;
    padding: 20px !important;
    border-radius: 10px;
}

.vb-price strong {
    font-size: 22px;
}

.vb-price span {
    font-size: 14px;
    color: #666;
}

.vb-sub {
    font-size: 13px;
    margin-bottom: 15px;
}

.vb-custom-booking input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.vb-date-row {
    display: flex;
    gap: 10px;
}

.vb-date-row input {
    width: 50%;
}

.vb-custom-booking button {
    width: 100%;
    background: #c89b4f;
    color: #000;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}



.vb-fav-wrap .property_unit_action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static !important; /* override theme absolute positioning */
   
    padding: 0;
   
}



/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE BOTTOM BAR + FORM DRAWER
   Add this at the bottom of your existing stylesheet
═══════════════════════════════════════════════════════════════════════════ */

/* ── Hide mobile bar on desktop ─────────────────────────────────────────── */
.vb-mobile-bar,
.vb-form-drawer,
.vb-drawer-backdrop {
  display: none;
}

/* ── Show on mobile ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {

  /* Hide the desktop fixed booking card on mobile */
  .vb-booking-card {
    display: none !important;
  }

  /* ── Backdrop ───────────────────────────────────────────────────────── */
  .vb-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .vb-drawer-backdrop.vb-backdrop-open {
    opacity: 1;
    pointer-events: all;
  }

  /* ── Slide-up drawer ────────────────────────────────────────────────── */
  .vb-form-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 0 0 24px;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    max-height: 92vh;
    overflow-y: auto;
  }
  .vb-form-drawer.vb-drawer-open {
    transform: translateY(0);
  }

  /* Drag handle */
  .vb-drawer-handle-bar {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 4px;
    margin: 12px auto 0;
    flex-shrink: 0;
  }

  /* Drawer header */
  .vb-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #e5ddd0;
  }
  .vb-drawer-price {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .vb-drawer-price-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #18120a;
  }
  .vb-drawer-price-label {
    font-size: 12px;
    color: #7a6e5f;
  }
  .vb-drawer-price-night {
    font-size: 11px;
    color: #7a6e5f;
  }
  .vb-drawer-close {
    background: #f0ece6;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 14px;
    cursor: pointer;
    color: #7a6e5f;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .vb-drawer-close:hover { background: #e5ddd0; }

  /* Drawer form */
  .vb-drawer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px 0;
  }
  .vb-drawer-form input {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid #e5ddd0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    background: #f9f6f0;
    color: #2e2416;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }
  .vb-drawer-form input:focus {
    border-color: #c49a4f;
  }
  .vb-drawer-date-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .vb-drawer-submit {
    width: 100%;
    background: #c89b4f;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    cursor: pointer;
    margin-top: 4px;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(196, 154, 79, 0.35);
  }
  .vb-drawer-submit:hover { background: #b8893e; }
  .vb-drawer-submit:active { transform: scale(0.98); }

  /* ── Fixed bottom bar ───────────────────────────────────────────────── */
  .vb-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    border-top: 1px solid #e5ddd0;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.10);
  }

  /* Price in bottom bar */
  .vb-mobile-bar-price {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .vb-mb-price-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #18120a;
  }
  .vb-mb-price-label {
    font-size: 11px;
    color: #7a6e5f;
  }
  .vb-mb-price-night {
    font-size: 10px;
    color: #7a6e5f;
  }

  /* Enquire Now button in bar */
  .vb-mb-enquire-btn {
    background: #c89b4f;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 4px 14px rgba(196, 154, 79, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .vb-mb-enquire-btn:hover  { background: #b8893e; }
  .vb-mb-enquire-btn:active { transform: scale(0.97); }

  /* Push page content up so bar doesn't overlap last section */
  .vb-listing-detail {
    padding-bottom: 30px;
  }
}


@media (max-width: 960px) {
  .vb-gallery-main {
    height: 260px;
    border-radius: 10px;
  }

  .vb-gallery-thumbs {
    display: none;
  }

  .vb-thumb-dots {
    display: flex;
  }
  
  .vb-sticky-nav {
      margin-left: 20px;
      margin-right: 20px;
  }
}
