/* UI neutrals */
/* Backgrounds */
@media (max-width: 768px) {
  .wpb-content-wrapper {
    overflow-x: hidden;
  }
}
.filters {
  width: 100%;
}
@media (max-width: 1320px) {
  .filters {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 1320px) {
  .listing-shorting,
  .villa-listing {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.filter-item {
  width: var(--w, auto);
  flex: 0 0 var(--w, auto);
  height: 64px;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  user-select: none;
}
.filter-item:hover {
  border-color: #898D96;
}

.filter-label {
  font-family: "Montserrat", "sans-serif";
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #898D96;
  width: inherit;
  height: inherit;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 10px 16px;
}

.filter-value {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #3C3B40;
  padding: 0;
  cursor: pointer;
}

.filter-date {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: #3C3B40;
  cursor: pointer;
}

.filter-item.select-like::after,
.filter-item.date-like::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-10%);
  width: 24px;
  height: 24px;
  background: url("../icons/chevron-down.svg") no-repeat center/contain;
  pointer-events: none;
}

.search-btn {
  width: var(--w, 127px);
  flex: 0 0 var(--w, 127px);
  height: 40px;
  padding: 0 28px;
  border: 0;
  border-radius: 200px;
  background: #06273A;
  color: #FFFFFF;
  font-family: "Montserrat", "sans-serif";
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.search-btn:hover {
  filter: brightness(1.05);
}

.more-filters {
  font-family: "Montserrat", "sans-serif";
  font-size: 14px;
  font-weight: 500;
  color: #06273A;
  cursor: pointer;
}
.more-filters:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .filters {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-item {
    width: 100% !important;
    justify-content: flex-start;
  }
  .filter-item,
  .search-btn {
    width: 100%;
    flex: 0 0 auto;
  }
  .search-btn {
    height: 40px;
  }
}
.filter-item.select-like {
  position: relative;
}

.select-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}

.sort-label {
  font-family: "Montserrat", "sans-serif";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #06273A;
}

.sort-option {
  font-family: "Montserrat", "sans-serif";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #898D96;
}
.sort-option.is-active {
  color: #EB9B6A;
}

.items-count {
  font-family: "Montserrat", "sans-serif";
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #06273A;
}
.items-count span {
  color: #898D96;
}

@media (max-width: 768px) {
  .inner-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.villa-card {
  width: 1320px;
  max-width: 100%;
}
.villa-card .villa-hero {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  isolation: isolate;
  background: #f5f5f5;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.villa-card .villa-hero::before {
  pointer-events: none;
}
.villa-card .villa-hero .villa-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 740px;
  display: block;
  object-fit: cover;
  transform-origin: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.villa-card .villa-hero .villa-img.blur {
  filter: blur(15px);
}
.villa-card .villa-hero .villa-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.villa-card .villa-hero .villa-video.is-active {
  opacity: 1;
}
.villa-card .villa-hero .villa-title {
  position: absolute;
  left: 28px;
  top: 22px;
  z-index: 4;
  margin: 0;
  pointer-events: none;
  font-family: "Dorsa", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-wrap: balance;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: opacity;
}
.villa-card .villa-hero .villa-like {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.villa-card .villa-details-row {
  margin-top: 20px;
  gap: 50px;
}
.villa-card .villa-info {
  width: 1097px;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 21px 22px;
  gap: 18px;
}
.villa-card .villa-info .villa-metric {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 13px;
}
.villa-card .villa-info .villa-metric .villa-metric-label {
  font-family: "Dorsa", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #3C3B40;
}
.villa-card .villa-info .villa-metric .villa-metric-value {
  font-family: "Montserrat", "sans-serif";
  font-weight: 300;
  font-size: 40px;
  line-height: 42px;
  letter-spacing: 0;
  color: #000000;
}
.villa-card .villa-info .villa-metric .villa-metric-value sup {
  font-size: 60%;
  line-height: 0;
  vertical-align: super;
}
.villa-card .villa-info .villa-metric .villa-btn {
  width: 226px;
  height: 40px;
  border-radius: 200px;
  border: 0;
  padding: 0 16px;
  font-family: "Montserrat", "sans-serif";
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.villa-card .villa-info .villa-metric .villa-btn:hover {
  filter: brightness(1.05);
}
.villa-card .villa-info .villa-metric .villa-btn:active {
  transform: translateY(1px);
}
.villa-card .villa-info .villa-metric .btn-soft {
  background: #EB9B6A;
  color: #FFFFFF;
}
.villa-card .villa-info .villa-metric .btn-dark {
  background: #06273A;
  color: #FFFFFF;
}
.villa-card .villa-price {
  width: 173px;
  text-align: center;
}
.villa-card .villa-price .villa-price-label {
  font-family: "Dorsa", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #EB9B6A;
  margin-bottom: 8px;
}
.villa-card .villa-price .villa-price-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.villa-card .villa-price .villa-price-value .villa-price-number {
  font-family: "Montserrat", "sans-serif";
  font-weight: 300;
  font-size: 40px;
  line-height: 42px;
  color: #000000;
}
.villa-card .villa-price .villa-price-value .villa-price-symbol {
  font-family: "Montserrat", "sans-serif";
  font-weight: 300;
  font-size: 32px;
  line-height: 42px;
  color: #000000;
}
.villa-card .villa-text {
  margin-top: 35px;
  font-family: "Montserrat", "sans-serif";
  font-weight: 300;
  font-size: 20px;
  line-height: 33px;
  letter-spacing: 0;
  color: #000000;
  text-align: center;
}
@media (max-width: 1200px) {
  .villa-card .villa-hero .villa-img {
    height: 520px;
  }
  .villa-card .villa-details-row {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .villa-card .villa-info {
    width: 100%;
  }
  .villa-card .villa-price {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .villa-card .villa-hero .villa-img {
    height: 360px;
  }
  .villa-card .villa-hero .villa-title {
    left: 16px;
    top: 14px;
    font-size: 42px;
  }
  .villa-card .villa-hero .villa-like {
    top: 12px;
    right: 12px;
  }
  .villa-card .villa-info {
    flex-direction: column;
    align-items: stretch;
  }
  .villa-card .villa-info .villa-metric {
    padding: 8px 0;
  }
  .villa-card .villa-info .villa-metric .villa-btn {
    width: 100%;
  }
}

.load-more-btn {
  width: 218px;
  height: 40px;
  border-radius: 200px;
  border: 0;
  padding: 0;
  background: #06273A;
  color: #FFFFFF;
  font-family: "Montserrat", "sans-serif";
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.load-more-btn:hover {
  filter: brightness(1.05);
}
.load-more-btn:active {
  transform: translateY(1px);
}

.filter-item.select-like {
  position: relative;
  display: grid;
  gap: 6px;
  width: var(--w, 206px);
}
.filter-item.select-like .filter-label {
  font-size: 12px;
  opacity: 0.65;
}
.filter-item.select-like .filter-value {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top: 9px;
  padding: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px;
  background: transparent;
  font-size: 16px;
  line-height: 1.1;
}
.filter-item.select-like .select-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.filter-item.select-like .vb-select-dd {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  height: 350px;
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}
.filter-item.select-like.is-open .vb-select-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.filter-item.select-like .vb-select-opt {
  padding: 16px 16px;
  font-size: 16px;
  line-height: 1.1;
  cursor: pointer;
  transition: background 0.15s ease;
}
.filter-item.select-like .vb-select-opt:hover {
  background: rgba(201, 139, 98, 0.18);
}
.filter-item.select-like .vb-select-opt.is-active {
  background: rgba(201, 139, 98, 0.28);
}

@media (hover: hover) and (pointer: fine) {
  .filter-item.select-like .select-overlay {
    pointer-events: none;
  }
}
.datepicker {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 99999 !important;
  display: none;
  min-width: 280px;
  padding: 10px 12px;
  margin-top: 8px;
  background: #fff;
  border: 1px solid #d8d8d8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
}

.datepicker.dropdown-menu {
  border-radius: 0;
}

.datepicker:before,
.datepicker:after {
  display: none !important;
}

.datepicker table {
  width: 100% !important;
  margin: 0 !important;
  border-collapse: collapse !important;
}

.datepicker table tr td,
.datepicker table tr th {
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  text-align: center !important;
  vertical-align: middle !important;
  border: 0 !important;
  background: transparent !important;
  box-sizing: border-box;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
  background: #f3f3f3 !important;
  cursor: pointer;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover {
  background: #002b45 !important;
  color: #fff !important;
  text-shadow: none !important;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover,
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #b9b9b9 !important;
  background: transparent !important;
}

.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  cursor: pointer;
}

.filter-item--date {
  position: relative;
  width: var(--w);
  min-width: var(--w);
}

.vb-date-input {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top: 9px;
  padding: 16px 16px;
  padding-top: 27px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: 0;
  outline: 0;
  border-radius: 10px;
  font-size: 16px;
  line-height: 1.1;
}
.vb-date-input::placeholder {
  color: #3C3B40;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-size: 16px;
  opacity: 1;
}
.vb-date-input::-webkit-input-placeholder {
  color: #3C3B40;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-size: 16px;
}
.vb-date-input::-moz-placeholder {
  color: #3C3B40;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-size: 16px;
}
.vb-date-input:-ms-input-placeholder {
  color: #3C3B40;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-size: 16px;
}
.vb-date-input::-ms-input-placeholder {
  color: #3C3B40;
  font-family: "Montserrat", "sans-serif";
  font-weight: 600;
  font-size: 16px;
}

.vb-date-input:focus {
  border-color: #002b45;
}

.filter-item--date .datepicker {
  top: calc(100% + 8px) !important;
  left: 0 !important;
  right: auto !important;
}

.villa-hero-wrap {
  position: relative;
}

.villa-card .villa-hero-wrap .villa-like {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 5;
  background: transparent;
  box-shadow: unset;
  border: 0;
  cursor: pointer;
}

.vb-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 60px;
  padding: 0 20px;
}

.vb-pagination .vb-page {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(10, 42, 63, 0.14);
  background: #ffffff;
  color: #0a2a3f;
  min-width: 48px;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 18px rgba(10, 42, 63, 0.04);
}

.vb-pagination .vb-page:hover:not(:disabled):not(.vb-page--dots) {
  background: #e39a62;
  border-color: #e39a62;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(227, 154, 98, 0.22);
}

.vb-pagination .vb-page:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(227, 154, 98, 0.2), 0 10px 24px rgba(10, 42, 63, 0.1);
}

.vb-pagination .vb-page.is-active {
  background: #0a2a3f;
  border-color: #0a2a3f;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 42, 63, 0.2);
}

.vb-pagination .vb-page--prev,
.vb-pagination .vb-page--next {
  padding: 0 22px;
  font-weight: 600;
}

.vb-pagination .vb-page--dots {
  border: none;
  background: transparent;
  box-shadow: none;
  min-width: auto;
  width: auto;
  height: 48px;
  padding: 0 4px;
  color: rgba(10, 42, 63, 0.45);
  cursor: default;
}

.vb-pagination .vb-page:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  background: #f5f2ee;
  color: rgba(10, 42, 63, 0.45);
  border-color: rgba(10, 42, 63, 0.08);
  box-shadow: none;
  transform: none;
}

@media (max-width: 991.98px) {
  .vb-pagination {
    gap: 8px;
    margin-top: 40px;
  }
  .vb-pagination .vb-page {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }
  .vb-pagination .vb-page--prev,
  .vb-pagination .vb-page--next {
    padding: 0 16px;
  }
}
@media (max-width: 575.98px) {
  .vb-pagination {
    gap: 7px;
    margin-top: 32px;
    padding: 0 12px;
  }
  .vb-pagination .vb-page {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
  .vb-pagination .vb-page--prev,
  .vb-pagination .vb-page--next {
    min-width: auto;
    padding: 0 14px;
  }
}

/*# sourceMappingURL=vc_listing.css.map */
