body {
  background: #f8f8f8;
}

/* Integration page: hide second listing header */
.guesty-listing-page .listing-header:nth-of-type(2) {
  display: none;
}

.view {
  width: 90%;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.container {
  width: 90%;
  margin: 20px auto;
}

.villas-coupon {
  display: flex;
  width: fit-content;
  flex-direction: column;
  padding: 0 27px;
}

.villas-coupon-hint {
  width: 100%;
}

.villas-coupon-link {
  color: #7ab08d;
  font-weight: 400;
  text-decoration: underline;
}

.villas-coupon-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  text-align: left;
  width: 100%;
}

.villas-coupon-question span {
  color: #000000 !important;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.villas-coupon-question svg {
  transition: transform 0.2s ease;
}

.villas-coupon-question svg.active {
  transform: rotate(180deg);
}

.villas-coupon-form {
  padding: 0 0 0 0;
  height: 0;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    height 0.2s ease,
    opacity 0.3s ease,
    transform 0.5s ease,
    padding 0.2s ease;
}

.villas-coupon-form.active {
  padding: 24px 0 0 0;
  height: 200px;
  opacity: 1;
  transform: translateY(0);
}

.villas-coupon-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 361px;
  position: relative;
}

.villas-coupon-fields input {
  font-family: "Inter", sans-serif;
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 400;
  color: #222;
  line-height: 1;
  border-radius: 8px;
  -webkit-box-shadow: inset 0px 0px 0px 1px #b0b0b0;
  box-shadow: inset 0px 0px 0px 1px #b0b0b0;
  border: none;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.villas-coupon-btn {
  font-family: "Founders Grotesk";
  background: #191a1a;
  color: #fff;
  padding: 16px 24px;
  max-width: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.villas-coupon-btn:hover {
  opacity: 0.9;
}

.villas-listing {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.villas-list-item {
  display: flex;
  gap: 4px;
  height: 284px;
}

.v-list-item-card,
.v-list-item-avail {
  width: calc(50% - 2px);
  background: #fff;
  -webkit-box-shadow: inset 0px 0px 0px 1px #edecec;
  box-shadow: inset 0px 0px 0px 1px #edecec;
  border-radius: 8px;
  position: relative;
}

.v-list-item-card:before,
.v-list-item-avail:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.v-list-item-card-image-area {
  width: clamp(145px, calc(145px + (100vw - 1025px) * (135 / 242)), 280px);
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .v-list-item-card-image-area {
    width: 280px;
  }
}

.v-list-item-card-image-area img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.villa-beach-access {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 3px 14px;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.19);
  box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.19);
  background: #fff;
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #191a1a;
  border-radius: 43px;
}

.villa-beach-access span {
  transform: translateY(1px);
}

.v-list-item-card {
  display: flex;
}

.v-list-item-card-info {
  display: flex;
  flex-direction: column;
  padding: 13px 25px 25px 25px;
  position: relative;
  flex: 1;
  justify-content: space-between;
}

.v-list-item-title-area {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.unavailable {
  color: #191a1a;
  font-size: 25px;
  opacity: 0.4;
  font-weight: 500;
}

.v-list-item-card-info h2 {
  font-size: 30px;
  font-weight: 500;
}

.v-badge.v-badge-hidden {
  display: none !important;
}

.v-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: #a9d4b8;
  border-radius: 0px 8px 8px 8px;
  position: absolute;
  top: 0;
  right: 1px;
  padding: 10px 12px 10px 19px;
  z-index: 5;
}

.v-badge svg {
  cursor: pointer;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.v-badge svg:hover {
  transform: scale(1.3);
}

.villa-details-popup-btn {
  border: none;
  background: none;
  box-shadow: none;
  text-decoration: underline;
  width: fit-content;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  color: #191a1a;
}

.villa-details-popup-btn:hover {
  opacity: 0.5;
}

.v-book-now-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16.5px 0;
  background: #191a1a;
  border-radius: 8px;
  box-shadow: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.v-book-now-btn:hover {
  opacity: 0.9;
}

.v-booking-options {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  position: relative;
}

.v-booking-options.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.v-booking-options.is-loading::after {
  content: "Updating rates...";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  font-size: 12px;
  color: #191a1a;
}

.v-booking-option {
  width: calc(50% - 7px / 2);
  max-width: 178px;
  padding: 7px;
  border-radius: 8px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  cursor: pointer;
}

.v-booking-checkbox-area {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.v-booking-option {
  -webkit-box-shadow: inset 0px 0px 0px 2px #d3d3d3;
  box-shadow: inset 0px 0px 0px 2px #d3d3d3;
  transition: box-shadow 0.2s ease;
}

.v-booking-option-checked {
  -webkit-box-shadow: inset 0px 0px 0px 2px #191a1a;
  box-shadow: inset 0px 0px 0px 2px #191a1a;
}

.booking-custom-checkbox {
  display: flex;
  gap: 4px;
  align-items: center;
}

.booking-custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 13px;
  height: 13px;
  pointer-events: none;
}

.booking-custom-checkbox label {
  position: relative;
  width: 13px;
  height: 13px;
  background: url("/wp-content/themes/hello-elementor/images/nocheck.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}

.v-booking-option-checked .booking-custom-checkbox label {
  background: url("/wp-content/themes/hello-elementor/images/check.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
}

.booking-item-title {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 12px;
}

.booking-item-title svg {
  opacity: 0.3;
  cursor: pointer;
}

.booking-item-price {
  text-decoration: line-through;
  opacity: 0.3;
  font-size: 16px;
  font-weight: 400;
}

.v-booking-option-checked .booking-item-price {
  color: #ff8181;
  opacity: 1;
}

.v-booking-total {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
}

.v-booking-total span {
  color: #191a1a;
  opacity: 0.5;
  font-size: 12px;
  line-height: 1;
}

.v-booking-total .v-booking-total-price {
  font-size: 30px;
  font-weight: 500;
}

.v-booking-option-checked .v-booking-total .v-booking-total-price {
  opacity: 1;
}

.v-list-item-avail {
  display: flex;
  padding: 16px 27px 25px 30px;
  flex-direction: column;
  gap: 14px;
}

.v-list-item-avail-title-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.v-list-item-avail-title {
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  align-items: center;
  background: #191a1a;
  border: 0;
  padding: 9px 20px;
  border-radius: 8px;
  color: #fff !important;
  cursor: pointer;
  color: inherit;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.v-list-item-avail-title:focus-visible {
  outline: 2px solid #a9d4b8;
  outline-offset: 4px;
}

.villa-availability-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 0s linear 220ms;
}

.villa-availability-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 240ms ease;
}

.villa-availability-popup {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 886px;
  max-height: 90vh;
  padding: 32px 64px;
  position: relative;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition:
    transform 240ms ease,
    opacity 240ms ease;
}

.villa-availability-popup::-webkit-scrollbar {
  display: none;
}

.villa-availability-overlay.active .villa-availability-popup {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.villa-availability-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.villa-availability-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.villa-availability-month {
  font-size: 32px;
  font-weight: 700;
  flex: 0 1 auto;
  text-transform: uppercase;
  font-family: "Founders Grotesk Condensed";
}

.villa-availability-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  background: #a9d4b8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
}

.villa-availability-nav svg path {
  fill: #2e1f05;
}

.villa-availability-nav.prev {
  margin-right: auto;
}

.villa-availability-nav.next {
  margin-left: auto;
}

.villa-availability-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  /*     gap: 6px; */
  font-size: 15px;
  color: #333333;
  margin-bottom: 8px;
  /*     text-transform: uppercase; */
  letter-spacing: 0.04em;
}

.villa-availability-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  /*     gap: 6px; */
}

.villa-availability-day {
  border: 1px solid #d3d3d3;
  border-radius: 0px;
  min-height: 96px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  /*     gap: 6px; */
  justify-content: space-between;
  font-size: 12px;
}

.villa-availability-day.empty {
  border: 0;
  background: transparent;
}

.villa-availability-day .day-number {
  font-weight: 600;
  color: #191a1a;
  font-family: "Founders Grotesk Condensed";
  font-size: 28px;
}

.villa-availability-day.is-booked .day-number {
  color: #8c8c8c;
}

.villa-availability-day .day-price {
  font-size: 16px;
  color: #191a1a;
}

.villa-availability-day.is-range-start .day-price,
.villa-availability-day.is-range-end .day-price {
  display: none;
}

.villa-availability-day .day-status {
  font-size: 16px;
  color: #a8a8a8;
}

.villa-availability-day .day-label {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 4px;
}

.villa-availability-day .day-label-checkin,
.villa-availability-day .day-label-checkout {
  color: #fff;
  background: #222;
  width: fit-content;
}

.villa-availability-legend {
  display: none !important;
}

@media (max-width: 767px) {
  .villa-availability-day .day-label {
    font-size: 6px;
    padding: 2px;
  }
}

.villa-availability-day.is-available {
  cursor: pointer;
}

.villa-availability-day.v-list-date-active {
  background: rgba(169, 212, 184, 0.35);
  border-color: rgba(169, 212, 184, 0.6);
}

.villa-availability-day.is-range-start,
.villa-availability-day.is-range-end {
  background: rgba(169, 212, 184, 0.55);
  border-color: #a9d4b8;
  /*     box-shadow: 0 0 0 2px rgba(169, 212, 184, 0.4); */
}

.villa-availability-legend {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  font-size: 12px;
  color: #8c8c8c;
}

.villa-availability-legend .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.villa-availability-legend .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a9d4b8;
}

.villa-availability-legend .legend-dot.booked {
  background: #c7c7c7;
}

@media (max-width: 767px) {
  .villa-availability-overlay {
    align-items: flex-start;
    padding: 12px;
    padding-top: calc(
      var(--villa-search-height, 84px) + env(safe-area-inset-top)
    );
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .villa-availability-popup {
    width: 100%;
    max-width: none;
    max-height: calc(100vh - (var(--villa-search-height, 84px) + 24px));
    padding: 16px;
    border-radius: 16px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .villa-availability-header {
    margin-bottom: 12px;
    padding: 0 56px;
    gap: 8px;
  }

  .villa-availability-month {
    font-size: 16px;
  }

  .villa-availability-nav {
    width: 30px;
    height: 30px;
  }

  .villa-availability-weekdays {
    /*       gap: 4px; */
    font-size: 10px;
  }

  .villa-availability-grid {
    /*       gap: 4px; */
  }

  .villa-availability-day {
    min-height: 52px;
    padding: 6px;
    font-size: 11px;
  }

  .villa-availability-day .day-number {
    font-size: 12px;
  }

  .villa-availability-day .day-price,
  .villa-availability-day .day-status {
    font-size: 8px;
  }

  .villa-availability-legend {
    gap: 12px;
    margin-top: 12px;
    font-size: 11px;
  }
}

.v-list-item-avail-scroll {
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 1;
}

.v-list-item-avail-scroll span {
  color: #191a1a;
  opacity: 0.5;
  font-size: 14px;
}

.v-list-item-avail-scroll .dates-nav {
  border: none;
  background: none;
  transition: all 0.2s ease;
  cursor: pointer;
  padding-top: 4px;
}

.v-list-item-avail-scroll .dates-nav svg {
  stroke: #191a1a;
}

.v-list-item-avail-scroll .dates-nav:hover {
  transform: scale(1.5);
}

.v-list-dates {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-box-shadow: inset -4px 1px 5px 0px rgba(0, 0, 0, 0.24);
  box-shadow: inset -4px 1px 5px 0px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(0, 0, 0, 0.24);
  position: relative;
}

.datesSwiper.is-loading {
  min-height: 120px;
  pointer-events: none;
  position: relative;
}

.datesSwiper.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  z-index: 1;
}

.v-list-dates-spinner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.v-list-dates-spinner::before {
  content: "";
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: #191a1a;
  border-radius: 50%;
  animation: v-list-dates-spin 0.7s linear infinite;
}

@keyframes v-list-dates-spin {
  to {
    transform: rotate(360deg);
  }
}

.v-list-date {
  width: 110px;
  font-size: 18px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #d3d3d3;
  cursor: pointer;
  padding: 10px 10px 20px 10px;
}

.v-list-date-active {
  background: rgba(169, 212, 184, 0.3);
  -webkit-box-shadow: inset 0px -10px 0px 0px rgba(169, 212, 184, 0.24);
  box-shadow: inset 0px -10px 0px 0px rgba(169, 212, 184, 0.24);
}

.v-list-date-unavailable {
  background: #e8e8e8;
}

.v-list-date span {
  color: #191a1a;
  line-height: 1;
}

.v-list-date-label,
.v-list-date-price {
  display: flex;
  flex-direction: column;
}

.v-list-date-label {
  gap: 2px;
}

.v-list-date-price {
  gap: 4px;
}

.v-day-name {
  opacity: 0.5;
  font-size: 14px;
}

.v-day-value {
  font-size: 16px;
}

.v-day-sold-out {
  font-size: 18px;
  color: #a8a8a8 !important;
}

.v-day-price-line-trough {
  opacity: 0.5;
  font-size: 12px;
  text-decoration: line-through;
}

.v-day-price {
  font-size: 18px;
  font-weight: 500;
}

.v-day-checkout,
.v-day-booked {
  font-size: 18px;
  font-weight: 400;
  color: #a8a8a8 !important;
}

.villas-contact-us {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0px 27px 36px 27px;
}

.villas-contact-us span {
  font-family: "Founders Grotesk";
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: #191a1a;
}

.villas-contact-us-btn {
  padding: 19px 45px;
  border-radius: 999px;
  border: 0;
  font-weight: 500;
  background: #a9d4b8;
  color: #191a1a;
  cursor: pointer;
  white-space: nowrap;
  font-family: "Founders Grotesk";
  text-decoration: none;
  text-transform: uppercase;
}

.villas-contact-us-btn:hover {
  opacity: 0.9;
}

.villa-details-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
  justify-content: center;
  align-items: center;
}

.villa-details-overlay.active {
  display: flex;
}

.villa-details-popup {
  max-width: 1000px;
  width: 95%;
  height: 80%;
  background: #ffffff;
  border-radius: 30px;
  opacity: 1;
  animation: villasFadeIn 0.6s ease forwards;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE Edge */
}

.villa-details-popup::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.villas-popup-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
}

.villas-popup-close:hover {
  opacity: 0.9;
}

.villas-popup-close svg,
.villas-popup-close svg * {
  pointer-events: none;
}

.villa-details-carousel {
  width: 100%;
  background: #fff;
  height: 420px;
}

.villa-gallery {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.villaSwiper {
  overflow: visible;
}

.villaSwiper .swiper-slide {
  overflow: hidden; /* hide any overflowed parts of image */
  width: 70%; /* already in your base styles */
  height: 420px; /* set fixed height for equal aspect, can adjust for design */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* fallback bg under images */
}

.villaSwiper .swiper-slide a.glightbox {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  text-decoration: none;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}

.glightbox-clean .gdesc,
.glightbox-clean .gdesc-inner,
.glightbox-clean .gslide-title {
  display: none !important;
}

.villaSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fill */
  object-position: center; /* center the focal point */
  display: block;
  transition: transform 0.4s ease;
}

.villa-swiper-prev,
.villa-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}

.villa-swiper-prev {
  left: 10px;
}
.villa-swiper-next {
  right: 10px;
}

.villaSwiper .swiper-slide-active {
  transform: scale(1);
  z-index: 2;
}

.villaSwiper .swiper-slide-prev,
.villaSwiper .swiper-slide-next {
  /* transform: scale(0.85); */
  opacity: 1;
}

.villa-details-popup-content {
  width: 70%;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.villa-details-popup-title-area {
  display: flex;
  justify-content: space-between;
  color: #191a1a;
  text-transform: uppercase;
}

.villa-details-popup-title-area h2 {
  font-size: 44px;
  line-height: 1;
  user-select: none;
  font-family: "Founders Grotesk Condensed";
}

.villa-details-popup-title-area span {
  font-size: 20px;
  user-select: none;
}

.villa-details-popup-desc-items {
  display: flex;
  gap: 44px;
}

.villa-details-popup-desc-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
  color: #191a1a;
  user-select: none;
}

.villa-details-popup-desc-item h5 {
  font-size: 28px;
  line-height: 1;
  font-family: "Founders Grotesk Condensed";
}

.villa-details-popup-desc-item span {
  font-size: 20px;
  line-height: 1;
}

.villa-details-popup-overview {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #191a1a;
  user-select: none;
}

.villa-details-popup-overview h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
}

.villa-details-popup-overview p {
  font-size: 18px;
}

.villa-details-popup-ratings {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.villa-details-popup-ratings h3 {
  color: #191a1a;
  font-size: 34px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Founders Grotesk Condensed";
}

.villa-details-popup-ratings-items {
  display: flex;
  flex-wrap: wrap;
}

.villa-details-popup-ratings-item {
  width: 33.3%;
  padding: 1rem;
  border: 1px solid #cbcbcb;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.villa-details-popup-ratings-item img {
  object-fit: contain;
  flex-shrink: 0;
  height: 20px;
}

.villa-details-popup-ratings-item a {
  margin-top: 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #5da777 !important;
  font-weight: 500;
  font-size: 34px;
}

.villa-details-rating-text {
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #bfbfbf !important;
  font-weight: 500;
}

.villa-details-popup-slider {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.villa-details-popup-slider h3 {
  color: #191a1a;
  font-size: 34px;
  text-transform: uppercase;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  font-family: "Founders Grotesk Condensed";
}

.villaContentSwiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 640px;
}
.villaContentSwiper .swiper-slide {
  width: 100%;
}

.villa-details-popup-slider-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

.villa-details-popup-slide-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  user-select: none;
}

.villa-details-popup-slide-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.villa-details-popup-slide-text h4 {
  font-weight: 400;
  text-transform: uppercase;
}

.villa-slider-navigation {
  display: flex;
  gap: 16px;
}

.villa-slider-tools {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.villa-content-prev,
.villa-content-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #a9d4b8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.villa-content-prev {
  left: calc(50% - 70px);
}
.villa-content-next {
  right: calc(50% - 70px);
}

.villa-content-progress {
  position: relative !important;
  height: 4px !important;
  width: 50% !important;
}

.villa-content-progress.swiper-pagination-progressbar {
  background: rgba(25, 26, 26, 0.15);
  border-radius: 999px;
  overflow: hidden;
}
.villa-content-progress .swiper-pagination-progressbar-fill {
  background: #2e1f05 !important;
  border-radius: 999px !important;
  transform-origin: left center !important;
}

.villa-content-prev.swiper-button-disabled,
.villa-content-next.swiper-button-disabled {
  opacity: 0.6;
}

.villa-details-popup-faq {
  display: flex;
  flex-direction: column;
  gap: 32px;
  user-select: none;
}

.villa-details-popup-faq-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  color: #191a1a;
  text-transform: uppercase;
  text-align: center;
}

.villa-details-popup-faq-title h3 {
  font-size: 34px;
  line-height: 1;
  font-family: "Founders Grotesk Condensed";
}

.villa-details-popup-faq-title span {
  font-size: 20px;
}

.villa-details-popup-faq-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.villa-faq-item {
  border: 1px solid #cbcbcb;
  background: #fdfeff;
}

.villa-faq-item + .villa-faq-item {
  border-top: 0;
}

.villa-faq-quesiton {
  width: 100%;
  padding: 18px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: left;
}

.villa-faq-quesiton span {
  font-weight: 700;
  color: #191a1a;
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Founders Grotesk Condensed";
}

.villa-faq-toggler {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}
.villa-faq-open,
.villa-faq-close {
  display: block;
}
.villa-faq-close {
  display: none;
}

.villa-faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 16px;
  padding-bottom: 16px;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
  font-size: 16px;
  color: #fdfeff;
}

.villa-faq-answer p {
  margin: 0 0 16px;
}

.villa-faq-item.is-open {
  background: #191a1a;
  border-color: #191a1a;
}

.villa-faq-item.is-open .villa-faq-quesiton span {
  color: #fdfeff;
  text-transform: uppercase;
  font-size: 20px;
}

.villa-faq-item.is-open .villa-faq-open {
  display: none;
}
.villa-faq-item.is-open .villa-faq-close {
  display: block;
}

.villa-faq-open path {
  fill: #191a1a;
}
.villa-faq-close path {
  fill: #fdfeff;
}

.villa-faq-item.is-open .villa-faq-answer {
  opacity: 1;
}

.villa-faq-toggler,
.villa-faq-toggler * {
  pointer-events: none;
}

.go-back-btn {
  width: 100%;
  background: #a9d4b8;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #191a1a;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Founders Grotesk";
}

.go-back-btn:hover {
  opacity: 0.9;
}

.info-box {
  position: absolute;
  min-width: 240px;
  height: auto;
  padding: 16px;
  border-radius: 16px;
  left: 160px;
  top: -20px;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Inter", sans-serif;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 2px 3px 3px 0px rgba(211, 211, 211, 0.75);
  -webkit-box-shadow: 2px 3px 3px 0px rgba(211, 211, 211, 0.75);
  -moz-box-shadow: 2px 3px 3px 0px rgba(211, 211, 211, 0.75);
  pointer-events: none;
}

.v-badge-info {
  background: #e6f7ec;
}

.booking-option-info {
  background: #fff;
  left: auto;
  right: 20px;
  top: 30px;
}

.booking-option-info svg {
  opacity: 1;
}

.v-booking-option {
  position: relative;
}

.v-badge-info.active,
.booking-option-info.active {
  opacity: 1;
  pointer-events: all;
}

.info-box-title-area,
.info-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-box-title-area {
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.info-box-title-area svg,
.booking-item-title svg {
  cursor: pointer;
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.info-box-title-area svg:hover,
.booking-item-title svg:hover {
  transform: scale(1.3);
}

.info-box-title span {
  color: #ff8f8f;
  padding-left: 10px;
}

.info-box-item {
  font-size: 14px;
}

.info-box-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.v-book-now-btn-mob {
  display: none;
}

@keyframes villasFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}

@media (min-width: 1025px) and (max-width: 1237px) {
  .v-booking-checkbox-area {
    flex-wrap: nowrap;
    gap: 6px;
  }

  .booking-item-price {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: right;
    flex-shrink: 0;
  }

  .v-booking-option {
    max-width: 166px;
  }
}

@media (max-width: 1640px) {
  .container {
    width: 100%;
    padding: 0 24px;
  }
}

@media (max-width: 1024px) {
  .villas-contact-us span {
    width: 50%;
    font-size: 18px;
  }

  .villas-coupon {
    padding: 0;
  }

  .villas-list-item {
    flex-direction: column;
    height: auto;
    gap: 0;
  }

  .v-list-item-card,
  .v-list-item-avail {
    width: 100%;
  }

  .v-list-item-card {
    height: 272px;
  }

  .v-list-item-card-info,
  .v-list-item-avail {
    gap: 10px;
  }

  .v-list-item-avail {
    padding: 22px;
  }

  .datesSwiper .swiper-wrapper {
    height: 197px;
  }

  .v-list-date {
    width: auto;
  }

  .villas-popup-close,
  .villa-swiper-prev,
  .villa-swiper-next,
  .villa-content-prev,
  .villa-content-next {
    width: 40px;
    height: 40px;
  }

  .villa-details-carousel {
    height: fit-content;
  }

  .villaSwiper .swiper-slide,
  .villa-details-popup-content {
    width: 75%;
  }

  .villa-details-popup-desc-item h5 {
    font-size: 20px;
  }

  .villa-details-popup-title-area span,
  .villa-details-popup-desc-item span {
    font-size: 16px;
  }

  .villa-details-popup-overview h4 {
    font-size: 18px;
  }

  .villaContentSwiper {
    min-height: 440px;
  }

  .villa-faq-quesiton span,
  .villa-faq-item.is-open .villa-faq-quesiton span {
    font-size: 18px;
  }

  .info-box {
    left: auto;
    right: 0;
    top: 44px;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 14px;
  }

  .villas-contact-us {
    padding: 0 0 36px 0;
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }

  .villas-contact-us span {
    width: 100%;
  }

  .villas-contact-us-btn {
    margin: 0 auto;
  }

  .v-list-item-card {
    flex-direction: column;
    height: auto;
  }

  .v-list-item-card-image-area {
    width: 100%;
    height: 176px;
    border-radius: 8px 8px 0 0;
  }

  .v-list-item-card-info {
    padding: 7px 12px 34px 12px;
  }

  .v-badge {
    right: 0;
    font-size: 14px;
    border-radius: 0px 0px 8px 8px;
  }

  .v-list-item-card-info h2 {
    font-size: 24px;
  }

  .v-booking-option {
    max-width: 100%;
  }

  .datesSwiper .swiper-wrapper {
    height: 120px;
  }

  .villaSwiper .swiper-slide,
  .villa-details-popup-content {
    width: 85%;
  }

  .villaSwiper .swiper-slide {
    height: 240px;
  }

  .villa-details-popup-title-area {
    flex-direction: column;
    gap: 12px;
  }

  .villa-details-popup-content {
    gap: 32px;
  }

  .villa-details-popup-title-area h2 {
    font-size: 34px;
  }

  .villa-details-popup-desc-items {
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 24px;
  }

  .villa-details-popup-desc-item,
  .villa-details-popup-ratings-item {
    width: 50%;
  }

  .villa-details-popup-slider h3,
  .villa-details-popup-ratings h3,
  .villa-details-popup-faq-title h3 {
    font-size: 24px;
  }

  .villa-details-popup-faq-title span {
    font-size: 18px;
  }

  .villa-faq-quesiton span,
  .villa-faq-item.is-open .villa-faq-quesiton span {
    font-size: 16px;
  }

  .booking-option-info {
    background: #fff;
    left: 0;
    right: auto;
    top: 30px;
  }

  .v-booking-option:nth-child(2) .booking-option-info {
    left: auto;
    right: 0;
  }

  .v-booking-options-single .booking-option-info {
    left: auto;
    right: 0;
  }

  .villas-list-item {
    box-shadow: inset 0px 0px 0px 1px #edecec;
  }

  .v-list-item-card,
  .v-list-item-avail {
    box-shadow: none;
  }

  .v-list-item-card {
    border-radius: 0px;
  }

  .v-list-item-card-info {
    padding-bottom: 0;
  }

  .v-list-item-avail {
    border-radius: 0px 0px 8px 8px;
  }

  .v-list-item-card:before,
  .v-list-item-avail:before {
    display: none;
  }

  .v-book-now-btn {
    display: none;
  }

  .v-book-now-btn-mob {
    margin-top: 10px;
    display: flex;
  }
}

/* .v-list-date.is-booked { opacity: .45; pointer-events: none; } */
/* .v-list-date.is-in-range { background: #F4F6FA; } */
/* .v-list-date.is-range-start,
  .v-list-date.is-range-end { outline: 2px solid #191A1A; } */
