.feature-pills {
  display: flex;
  gap: 8px;
  overflow-x: scroll;
  padding-bottom: 4px;
  scrollbar-width: none;
  width: 100%;
  max-width: 500px;
}

/* .feature-pills::-webkit-scrollbar,
.feature-pills::-webkit-scrollbar {
  display: none;
} */

.feature-pills::-webkit-scrollbar {
  display: none;
}


.single-pill {
  white-space: nowrap;
  flex-shrink: 0;
  background-color: var(--gray-6);
  padding: 4px 12px;
  border-radius: 100px;
}

.single-pill h6 {
  font-weight: 500;
  line-height: 1.5;
}

.feature-card {
  padding: 12px;
  background-color: white;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card:hover {
  box-shadow: 0px 7px 29px 0px #64646F33;
}

.feature-images {
  position: relative;
  aspect-ratio: 1.342;
  width: 100%;
  overflow: hidden;
}

.feature-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
}

.wishlist-circle {
  justify-content: center;
  align-items: center;
  display: flex;
  background: #111111B2;
  border-radius: 100px;
  height: 44px;
  width: 44px;
  padding: 10px;
}

.feature-distance {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: linear-gradient(98.56deg, #D0B503 0%, #AD6102 108.86%);
  border: 1.1px solid #AD6102;
  display: flex;
  border-radius: 10px;
  padding: 12px;
  color: var(--white);
  align-items: center;
}

.feature-distance .dist {
  max-width: 45px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.feature-distance:hover .dist {
  max-width: none;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.feature-rating {
  position: absolute;
  right: 10px;
  bottom: 14px;
  background-color: var(--primary-color);
  padding: 6px 8px;
  display: flex;
  gap: 4px;
  border-radius: 100px;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.feature-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.feature-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title h4 {
  font-weight: 500;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-title h5 {
  font-weight: 500;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.feature-buttons {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.feature-btn {
  width: 100%;
  border: 1px solid var(--gray-5);
  color: var(--gray-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-btn-purple {
  width: 100%;
  height: 44px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.swiper-nav-buttons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.feature-swiper-prev,
.feature-swiper-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Disabled state */

.feature-swiper-prev:disabled,
.feature-swiper-next:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 1;
}

.swiper-slide {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
}

.swiper-wrapper-relative {
  position: relative;
  padding: 50px 0 60px 0;
}

.swiper-nav-buttons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.feature-swiper-prev,
.feature-swiper-next {
  width: 40px;
  height: 40px;
  background-color: white;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-swiper-prev:disabled,
.feature-swiper-next:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 1;
}


/* pagination */
.paginated-wrapper {
  position: relative;
  overflow: hidden;
  transition: min-height 0.3s ease;
}

.paginated-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateX(40px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.pagination-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.pagination-loader img {
  width: 80px;
}

/* Already confirmed pagination button styles */
.ap-pagination-wrapper {
  margin-top: 16px;
  display: flex;
  justify-content: end;
}

.ap-pagination {
  display: flex;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ap-page-link {
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  box-shadow: 0px 1px 2px 0px #1018280D;
  border: 1px solid var(--grey-shades-grey-300-borders-dividers, #E5E7EB);
  border-radius: 8px;
  padding: 8px 14px;
}

.ap-page-link:hover:not(.ap-active):not(.ap-disabled) {
  background: #f0f0f0;
  border-color: #ccc;
}

.ap-page-link.ap-active {
  background: #A311701A;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.ap-page-link.ap-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}


.paginated-content.slide-animation {
  animation: slideIn 0.3s ease-in-out;
}

/* pagination ends */


/* dropdown input */
.single-filter {
  /* min-width: 160px; */
  width: 100%;
  display: flex;
  flex-direction: column;
}

.checkbox-dropdown {
  position: relative;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray-5);
  border-radius: 4px;
  background-color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-height: 44px;
}

.checkbox-dropdown .dropdown-selected {
  font-size: 14px;
  font-family: var(--primary-font);
  color: var(--gray-1);
}

.attendee-filter .checkbox-dropdown .dropdown-box {
  padding: 16px;
}

.attendee2-body.active {
  display: flex;
}

.attendee2-options {
  gap: 10px;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  max-height: 250px;
}

.range-slider {
  width: 90%;
  margin: 0 auto;
  position: relative;
  margin-top: 40px;
  margin-bottom: 12px;
}

#attendee2-tooltip {
  position: absolute;
  top: -2.25rem;
  height: 30px;
  width: 50px;
  position: absolute;
  text-align: center;
  display: block;
  line-height: 1;
  padding: 6px 12px;
  color: #fff;
  border-radius: 8px;
  background: var(--primary-color);
  font-size: 16px;
  left: 50%;
  transform: translate(-40%, 0);
  bottom: -35px;
}

#attendee2-tooltip:before {
  position: absolute;
  content: url('../images/hero-section/tip.svg');
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 24px;
}

/* === RANGE TRACK & THUMB === */
#attendee2-range {
  -webkit-appearance: none;
  width: 100%;
  margin-top: 20px;
}

#attendee2-range:focus {
  outline: none;
}

#attendee2-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: linear-gradient(90deg, #A31170 var(--range-progress), #dee4ec var(--range-progress));
  border-radius: 1rem;
}

#attendee2-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 0.25rem solid var(--white);
  box-shadow: 0 0 0 4px #A3117033, 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  height: 22px;
  width: 22px;
  transform: translateY(calc(-50% + 4px));
}

/* === TOOLTIP ABOVE THUMB === */
.attendee2-inputs span {
  color: var(--gray-5);
}

.attendee2-min,
.attendee2-max {
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  font-size: 18px;
  font-weight: 500;
}

.checkbox-dropdown.active .dropdown-box {
  display: block;
}

.select-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* getin touch */
.getin-listing {
  position: absolute;
  top: 60%;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
}

.getin-wrapper {
  padding: 50px 0;
}

.getin-content {
  padding: 40px 60px;
  background-image: url(../images/getin/getin-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.getin-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
}

.getin-text h2 {
  font-size: 28px;
  line-height: 1.6;
}

.getin-text h4 {
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02rem;
}

.getin-btn button {
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  background: white;
  color: #C49E03;
  font-size: 24px;
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: 0;
}

.form-section::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: url('../images/form/sub-logo.svg') no-repeat;
  background-size: contain;
  background-position: left bottom;
  z-index: 1;
  pointer-events: none;
}

.form-wrapper {
  padding: 48px 0;
}

.form-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-left img {
  margin-bottom: 20px;
}

.form-left h1 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.form-left span {
  font-size: 28px;
  color: var(--gray-3);
}

.form-left h3 {
  color: var(--gray-3);
  line-height: 1.3;
}

.form-right {
  justify-content: flex-end;
  display: flex;
  padding: 20px;
  box-shadow: 4px 4px 16px 0px #00000014;
  background-color: #fff;
  border-radius: 8px;
  z-index: 1;
  position: relative;
  margin: unset !important;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-two-cols {
  display: flex;
  gap: 20px;
}

.contact-form-row {
  width: 100%;
}


.field {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-form-two-cols .contact-input {
  width: 100%;
}

.contact-input,
.contact-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0 16px 10px;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  resize: none;
  background-color: transparent;
}


.contact-form-align-right {
  display: flex;
  justify-content: flex-end;
}

.form-btn {
  min-height: 44px;
  padding: 12px 20px;
  background: var(--primary-color, #97005D);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
}

.form-btn:hover {
  background: var(--primary-dark);
  border: none;
}

/* .form-btn:hover p,
.form-btn:hover i {
  color: var(--primary-color);
} */

.form-btn svg {
  height: 16px;
  width: 16px;
}

.form-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: #A3117014;
  z-index: -1;
  pointer-events: none;
}

.getin-touch-section {
  background-color: var(--gray-6);
}

/* wishlist */
.wishlist-icon.active {
  stroke: #E0A106;
  fill: #E0A106;
}


/* common choose us  */
.comm-choose-wrapper {
  padding: 0 116px 40px 116px;
  width: 100%;
}

.comm-choose-content {
  padding: 40px;
  border-radius: 32px;
  backdrop-filter: blur(10px);
  background: #F2F2F266;
  gap: 60px;
  display: flex;
  justify-content: center;
}

.comm-single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.comm-dash {
  border: 1px dashed var(--primary-color);
}

.comm-circle {
  background: var(--white);
  border-radius: 100px;
  padding: 20px;
}

.comm-single h4 {
  color: var(--gray-1);
  font-weight: 600;
  text-align: center;
}

.common-choose-us {
  position: relative;
}

.common-choose-us::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: url(../images/hotel-listing/choose-us/listing-chooseus.svg) no-repeat;
  background-size: contain;
  background-position: right bottom;
  pointer-events: none;
}

.custom-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-flags {
  position: absolute;
  top: 12px;
  left: -5px;
}



.badge-text {
  position: absolute;
  color: var(--white);
  pointer-events: none;
}

.feature-btn-purple a {
  color: var(--white);
}
.feature-btn-purple a:hover {
  color: var(--white) !important;
}



.event-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-info p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02rem;
}

.event-info h6 {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--gray-2);
}

.event-info h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--gray-1);
  word-wrap: break-word;
}

.event-info .gx-3 {
  --bs-gutter-x: 20px;
}
.start-date-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--gray-5);
  border-radius: 8px;
}
.preview-food-header {
  padding: 10px;
  display: flex;
  flex-direction: column;
  background: var(--gray-6);
  gap: 10px;

}
.preview-food-header h6 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02rem;
  color: var(--gray-1);
}

.preview-food-header span {
  color: var(--primary-color);
}
.value-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px;
}

.value-rows h6 {
  font-size: 14px;
}
.all-amenities {
  display: block;
  gap: 12px;
}

.single-amenity {
  padding: 8px 12px;
  border-radius: 100px;
  background: var(--gray-6);
  display: inline-flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02rem;
  margin-right: 12px;
  margin-top: 12px;
}


@media (max-width: 1199px) {
  .common-choose-us-mobile {
    backdrop-filter: blur(10px);
    background: #F2F2F266;
    width: 100%;
  }

  .comm-chooseus-mob-wrapper {
    padding: 32px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .comm-chooseus-mob-top {
    display: flex;
    justify-content: center;
    border-bottom: 1px dashed var(--primary-color);
  }

  .comm-chooseus-mob-bottom {
    display: flex;
    justify-content: center;
  }

  .box-dash {
    border: 1px dashed var(--primary-color);
  }

  .t-left,
  .t-right {
    min-height: 200px;
    min-width: 251px;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center;
  }

  .common-choose-us-mobile::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 40%;
    background: url(../images/hotel-listing/choose-us/listing-chooseus.svg) no-repeat;
    background-size: contain;
    background-position: right bottom;
    pointer-events: none;
  }
}




@media (max-width: 991px) {

  .swiper-wrapper-relative {
    padding: 20px 0 0 0;
  }

  .swiper-nav-buttons {
    display: none;
  }

  .sort {
    max-width: 50px !important;
  }

  .getin-content {
    padding: 30px !important;
    flex-direction: column;
  }

  .getin-text h4 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 26px;
  }

  .form-section::after {
    width: 100%;
  }
}

@media (max-width:767px) {
  .getin-btn button {
    padding: 12px 16px;
    font-size: 20px;
  }

  .event-info h6 {
    line-height: 1;
  }
}

@media (max-width: 575px) {

  .swiper-nav-buttons {
    display: none;
  }

  .feature-btn-purple {
    /* height: 32px; */
    font-size: 14px;
  }

  .feature-btn {
    max-height: 44px;
    font-size: 14px;
  }

  .getin-text h2 {
    font-size: 20px;
  }

  .getin-text h4 {
    font-size: 16px;
  }

  .comm-single h4 {
    max-width: 108px;
    font-size: 16px;
  }

  .t-left,
  .t-right {
    min-width: 158px;
  }

  .easy-width {
    max-width: 95px !important;
  }
  .single-amenity{
    margin-top: 8px;
    margin-right: 8px;
    font-size: 12px;
  }
  .feature-pills{
    max-width: 398px;
  }
}

@media (max-width: 390px) {
  .feature-rating {
    display: none;
  }

  .wishlist-circle {
    height: 30px;
    width: 30px;
    padding: 6px;
  }
  .feature-pills{
    max-width: 350px;
  }
}