@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

html,
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}




/* ================= GLOBAL ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #000;
}

/* ================= PAGE WRAPPER ================= */
.show-wrapper {
  max-width: 1470px;
  margin: 40px auto;
  padding: 0 16px;
}

/* ================= TOP CARD ================= */
.show-card {
  display: flex;
  gap: 40px;
  border: 4px solid #556ee6;
  border-radius: 12px;
  padding: 20px;
}


/* ================= LEFT (IMAGE) ================= */
.show-left {
  flex: 0 0 520px;
}

.slider-wrapper {
  position: relative;
  height: 520px;
  border-radius: 10px;
  overflow: hidden;
}

.image-slider {
  height: 100%;
  width: 100%;
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 0;
}

.slider-image.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slider-arrow {
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}


/* arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.left-btn {
  left: 12px;
}

.right-btn {
  right: 12px;
}

/* ================= RIGHT (DETAILS) ================= */
.show-right {
  flex: 1;
  height: 520px;
  display: flex;
  flex-direction: column;
}


/* ================= TITLE ================= */
.property-title {
  font-size: 32px;
  font-weight: 700;
}

/* ================= PRICE BOXES ================= */
.price-box-row {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

.price-box {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  min-width: 160px;
}

.price-main {
  color: #556ee6;
  font-weight: 700;
  font-size: 18px;
}

.price-sub {
  margin-top: 10px;
  font-size: 14px;
}

.price-sub div {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

/* ================= ADD PEOPLE ================= */
.add-people h3 {
  color: #556ee6;
  font-size: 24px;
  margin-top: 20px;
}

.add-people p {
  font-size: 16px;
  margin-top: 6px;
}

.add-people .extra {
  color: #556ee6;
  font-weight: 700;
}

/* ================= FEATURES ================= */
.feature-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.feature-pill {
  border: 1px solid #000;
  border-radius: 40px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  /* gap: 12px; */
  font-weight: 600;
}

.feature-pill:nth-child(3) {
  grid-column: 1 / span 1;
}

.icon-box {
  background: #556ee6;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= CONTACT ================= */
.contact-heading {
  font-size: 22px;
  margin-top: auto;
  /* 🔑 THIS IS THE FIX */
}


.contact-buttons {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  padding-bottom: 6px;
  /* small breathing space */
}


.whatsapp-btn {
  background: #5cbf6a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.call-btn {
  background: #4f7df3;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp-btn,
.call-btn {
  min-width: 140px;
  text-align: center;
}


/* ================= BOOKING (STICKY) ================= */
.booking-section {
  margin-top: 40px;
}

.booking-box {
  position: sticky;
  top: 90px;
  max-width: 360px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fff;
  display: none;
}

.booking-box h3 {
  margin-bottom: 12px;
}

.booking-box input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
}

.booking-box button {
  width: 100%;
  padding: 10px;
  background: #000;
  color: #fff;
  border-radius: 8px;
  border: none;
}

/* ================= SECTIONS BELOW ================= */
.section {
  margin-top: 60px;
}

.section h2 {
  font-size: 28px;
  border-left: 4px solid #8b0000;
  padding-left: 10px;
  margin-bottom: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.amenity-card {
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
}

.rules li {
  margin-bottom: 8px;
}

.charges {
  border-collapse: collapse;
  width: 260px;
}

.charges td {
  border: 1px solid #000;
  padding: 8px;
}


/* ================= MID DESKTOP FIX (769px–1200px) ================= */
@media (min-width: 769px) and (max-width: 1200px) {

  .show-wrapper {
    padding: 0 20px;
  }

  .show-card {
    gap: 24px;
    padding: 16px;
  }

  /* LEFT IMAGE */
  .show-left {
    flex: 0 0 420px;
  }

  .slider-wrapper {
    height: 420px;
  }

  /* RIGHT CONTENT */
  .show-right {
    height: auto;
  }

  .property-title {
    font-size: 26px;
  }

  /* PRICE BOXES */
  .price-box-row {
    flex-wrap: wrap;
    gap: 14px;
  }

  .price-box {
    min-width: 180px;
  }

  /* FEATURES */
  .feature-pills {
    grid-template-columns: 1fr;
  }

  /* AMENITIES */
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}



/* ///for mobile version css */

/* ================= VISIBILITY CONTROL ================= */
.show-mobile {
  display: none;
}

.show-desktop {
  display: block;
}

@media (max-width: 768px) {
  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}

/* ================= MOBILE LAYOUT ================= */

.show-mobile {
  padding-bottom: 50px;
}



.mobile-gallery {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.mobile-gallery img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.mobile-title {
  font-size: 22px;
  font-weight: 700;
  padding: 10px;
}

.mobile-info-cards {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.info-card {
  flex: 1;
  /* background: #f7f7f7; */
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
}

.mobile-dates {
  padding: 10px;
}

.date-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.date-pill {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.date-pill.active {
  background: #556ee6;
  color: #fff;
}

/* Add People , property , facilities */
.faci-btnn {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

/* ================= BASE ================= */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: #111827;
}

/* ================= ADD PEOPLE ================= */
.mobile-people {
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-people h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.mobile-people>div:nth-of-type(1) {
  font-size: 15px;
  color: #111827;
  margin-bottom: 6px;
}

.mobile-people>div:nth-of-type(2) {
  font-size: 14px;
  color: #dc2626;
  line-height: 1.4;
}

/* ===== PEOPLE COUNTER (PILL) ===== */
.people-counter {
  margin-top: 18px;
  width: 12rem;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.people-counter button {
  width: 50px;
  height: 100%;
  border: none;
  background: #5b73f0;
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  cursor: pointer;
}

.people-counter span:nth-of-type(1) {
  flex: 1;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  display: block;
}

.people-counter span:nth-of-type(2) {
  width: 70px;
  text-align: center;
  font-size: 12px;
}

/* ================= PROPERTY RULES ================= */
.mobile-rules {
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-rules h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.mobile-rules ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-rules li {
  background: #ffe4e4;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Red forbidden icon */
.mobile-rules li::before {
  content: "🚫";
  font-size: 22px;
}

/* ================= FACILITIES ================= */
.faci-btnn {
  font-size: 22px;
  font-weight: 600;
  margin: 24px 0 14px;
}

.mobile-facilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.facility {
  background: #f3f4f6;
  border-radius: 18px;
  padding: 18px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #111827;
}

/* View More button card */
.facility button {
  background: none;
  border: 2px solid #111827;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}




.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: #fff;
  border-top: 1px solid #ddd;

}

.mobile-cta button {
  width: 100%;
  padding: 14px;
  background: #556ee6;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}


/* ================= MOBILE IMAGE SWIPE ================= */



.mobile-slider {
  position: relative;
}

.mobile-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.mobile-slide.active {
  opacity: 1;
}



.mobile-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.mobile-dots span.active {
  background: #fff;
}

/* Desktop ignore */
@media (min-width: 769px) {
  .mobile-hero {
    display: none;
  }
}


/* ================= MOBILE UI FIX ================= */
@media (max-width: 768px) {

  /* ===== HERO IMAGE FIX ===== */
  .slider-wrapper {
    height: 260px;
    margin-bottom: 6px;
    /* 🔥 gap kam */
  }

  /* ===== DOTS FIX (agar dots use ho rahe ho) ===== */
  .slider-dots {
    margin-top: -10px;
  }

  /* ===== THUMB STRIP ===== */
  .mob-thumb-strip {
    display: flex;
    gap: 6px;
    /* 🔥 tight gap */
    overflow-x: auto;
    padding: 6px 6px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mob-thumb-strip::-webkit-scrollbar {
    display: none;
  }

  .mob-thumb-card {
    position: relative;
    min-width: 82%;
    /* 🔥 big cards like ref */
    height: 165px;
    border-radius: 18px;
    overflow: hidden;
    scroll-snap-align: start;
    /* 🔥 one swipe = one card */
    flex-shrink: 0;
  }

  .mob-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ===== TEXT INSIDE IMAGE ===== */
  .mob-thumb-text {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
  }

  /* ===== TITLE + LOCATION COMPACT ===== */
  .property-title {
    font-size: 22px;
    margin-top: 6px;
  }

  .location-row {
    margin-top: 4px;
  }

  /* ===== REMOVE EXTRA WHITE SPACE ===== */
  .show-wrapper {
    margin-top: 12px;
  }
}


/* ================= MOBILE IMAGE THUMB STRIP ================= */
@media (max-width: 768px) {

  /* horizontal image strip */
  .mob-thumb-strip {
    display: flex;
    gap: 8px;
    /* small space like ref */
    overflow-x: auto;
    padding: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .mob-thumb-strip::-webkit-scrollbar {
    display: none;
  }

  /* image card */
  .mob-thumb-card {
    position: relative;
    flex-shrink: 0;
    width: 72%;
    /* narrower */
    height: 230px;
    /* taller */
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
  }

  .mob-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* transparent overlay text */
  .mob-thumb-text {
    position: absolute;
    left: 12px;
    bottom: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    background: none;
    /* no background */
    padding: 0;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }

}










/* lhkhughjg */



/* ===== MOBILE HERO TITLE OVERLAY ===== */
@media (max-width: 768px) {

  .mobile-hero::after {
    content: "";
    /* position: absolute; */
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.15),
        transparent);
    /* z-index: 1; */
  }

  .mobile-hero-title {
    position: absolute;
    left: 14px;
    bottom: 18px;
    z-index: 2;

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 85%;

    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  }
}




/* /lkhkhk */

@media (max-width: 768px) {

  .mobile-hero {
    position: relative;
    margin: 12px;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    /* ✅ FIXED HEIGHT */
    touch-action: pan-y;
  }

  .mobile-slider {
    position: relative;
    height: 100%;
    width: 100%;
    touch-action: pan-x pan-y;
  }

  .mobile-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.95s ease;
  }

  .mobile-slide.active {
    opacity: 1;
  }

  /* GRADIENT */
  .mobile-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.25),
        transparent);
    z-index: 1;
    pointer-events: none;
  }

  /* TITLE TEXT */
  .mobile-hero-title {
    position: absolute;
    left: 16px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 80%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  .mobile-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
  }

  .mobile-dots span.active {
    background: #fff;
  }

  /* TOP RIGHT ICONS */
  .mobile-hero-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    gap: 14px;
  }

  .hero-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
}


/* .mobile-dots {
  position: absolute;
  right: 16px;
  bottom: 20px;
  left: auto;
  transform: none;
  z-index: 3;
  display: flex;
  gap: 6px;
} */

@media (max-width: 768px) {

  .mobile-slide {
    transition:
      opacity 0.45s ease,
      transform 0.45s ease;
    transform: translateX(0);
  }

  /* next image coming from right */
  .mobile-slide.enter-from-right {
    transform: translateX(40px);
    opacity: 0;
  }

  /* next image coming from left */
  .mobile-slide.enter-from-left {
    transform: translateX(-40px);
    opacity: 0;
  }

  /* old image leaving left */
  .mobile-slide.exit-to-left {
    transform: translateX(-40px);
    opacity: 0;
  }

  /* old image leaving right */
  .mobile-slide.exit-to-right {
    transform: translateX(40px);
    opacity: 0;
  }
}




/* llocations */





/* ================= FREE MEMBERS BADGE ================= */
.free-badge {
  display: inline-block;
  background: #5b3a00;
  color: #fff;
  font-size: 12px;
  padding: 0px 12px;
  border-radius: 4px;
  margin: 12px;
  font-weight: 100;
}

/* ================= SECTION HEADING ================= */
.section-heading {
  font-size: 14px;
  /* font-weight: 700; */
  margin: 16px 12px 10px;
}

/* ================= LOCATION CARD ================= */
.location-card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #fff;
  border-radius: 20px;
  padding: 16px;

  /* 🔥 MOST IMPORTANT */
  overflow: hidden;

  width: 100%;
}


/* LEFT 60% */
.location-left {
  flex: 0 0 60%;
}

.farm-title {
  font-size: 10px;
  /* font-weight: 700; */
  margin-bottom: 8px;
  margin-top: 6px;
}

.farm-sub {
  font-size: 10px;
  color: #555;
  margin-bottom: 10px;
}

.farm-time {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.farm-time .time {
  font-size: 24px;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
}

.farm-time .near {
  font-size: 14px;
  color: #555;
}

/* RIGHT 40% */
.location-right {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef0fd;
  border-radius: 0.7rem;
}

.location-svg {
  width: 100%;
  max-width: 140px;
}

/* ================= DESKTOP SAFE ================= */
@media (min-width: 769px) {
  .location-card {
    max-width: 520px;
  }
}



/* ===== AVAILABLE DATES ===== */

.dates-box {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  padding: 8px 10px;
  /* 🔥 height reduced */
  gap: 8px;
  border-radius: 16px;
  background: #fff;
}

.dates-row {
  display: flex;
  gap: 12px;
  flex: 1;
  overflow: hidden;
  /* 🔥 important */
}


.date-item {
  width: 40px;
  /* 🔥 smaller */
  text-align: center;
  font-weight: 300;
  /* 🔥 lighter */
  cursor: pointer;
  flex-shrink: 0;
}


.date-item .day {
  font-size: 10px;
  color: #6b7280;
  margin-bottom: 4px;
}

.date-item .date {
  width: 23px;
  height: 23px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ACTIVE DATE (sirf date circle) */
.date-item.active .date {
  background: #4f6df5;
  color: #fff;
}

/* DISABLED */
.date-item.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* CALENDAR ICON */
.calendar-btn {
  width: 40px;
  /* 🔥 smaller */
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.75;
}



/* ===== CALENDAR BOTTOM SHEET ===== */

.calendar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}

.calendar-sheet {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 90vh;
  background: #fff;
  border-radius: 22px 22px 0 0;
  transition: 0.35s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

/* ACTIVE STATE */
.calendar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.calendar-sheet.active {
  bottom: 0;
}

/* HEADER */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 600;
}

.calendar-header button {
  background: none;
  border: none;
  font-size: 20px;
}

/* BODY */
.calendar-body {
  flex: 1;
  overflow-y: auto;
}


/* ===== FULL CALENDAR GRID ===== */

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-weight: 600;
}

.calendar-nav button {
  border: none;
  background: none;
  font-size: 22px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 14px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 14px;
}

.calendar-date {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  cursor: pointer;
}

.calendar-date:hover {
  background: #eef2ff;
}

.calendar-date.active {
  background: #4f6df5;
  color: #fff;
}

.calendar-date.disabled {
  color: #c7c7c7;
  pointer-events: none;
}


/* ===== CALENDAR CONTINUE ===== */

.calendar-footer {
  padding: 14px;
  border-top: 1px solid #e5e7eb;
  display: none;
}

.calendar-footer.active {
  display: block;
}

#calendarContinue {
  width: 100%;
  padding: 14px;
  background: #4f6df5;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
}


/* ===== CALENDAR SUMMARY ===== */

.calendar-summary {
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  display: none;
  color: #111827;
}

.calendar-summary.active {
  display: none;
}


/* ===== BLOCKED DATES LOOK ===== */
.calendar-date.disabled,
.date-item.disabled {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

/* ===== TOAST (FORCE VISIBLE) ===== */
#dateUnavailableToast {
  position: fixed;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
  background: #111827;
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  z-index: 999999;
  /* 🔥 overlay se bhi upar */
  opacity: 0;
  transition: all 0.35s ease;
  pointer-events: none;
}

#dateUnavailableToast.show {
  bottom: 40px;
  opacity: 1;
}



/* //ux ui fix */


/* ===== CALENDAR CELL ===== */
.calendar-date {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
}

/* ===== START / END ===== */
.calendar-date.active {
  background: #4f6df5;
  color: #fff;
  z-index: 2;
}

/* ===== RANGE MIDDLE ===== */
.calendar-date.in-range {
  background: #e8edff;
  color: #111827;
  border-radius: 0;
}

/* range continuity */
.calendar-date.in-range::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8edff;
  z-index: -1;
}

/* ===== CALENDAR CELL ===== */
.calendar-date {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  position: relative;
}

/* ===== START / END ===== */
.calendar-date.active {
  background: #4f6df5;
  color: #fff;
  z-index: 2;
}

/* ===== RANGE MIDDLE ===== */
.calendar-date.in-range {
  background: #e8edff;
  color: #111827;
  border-radius: 0;
}

/* range continuity */
.calendar-date.in-range::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e8edff;
  z-index: -1;
}

.calendar-date.disabled,
.date-item.disabled {
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  cursor: not-allowed;
}




/* ===== CHOOSE TIME ===== */

.mobile-time-section {
  margin-top: 26px;
  display: none;
}

.mobile-time-section h3 {
  font-size: 18px;
  font-weight: 600;
}

.required {
  color: red;
  font-size: 14px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}


.time-box {
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  /* min-height: 78px;   🔥 small height */
}



.time-box.active {
  border-color: #4f6df5;
  background: #eef2ff;
}

.time-title {
  font-size: 10px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;

  display: flex;
  gap: 6px;
  align-items: center;
  white-space: nowrap;
}

.time-title span {
  font-size: 10px;
  font-weight: 400;
  color: #6b7280;
  white-space: nowrap;
}



.time-price {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #111827;
}


.time-box.active {
  border-color: #4f6df5;
  background: #f7f9ff;
}

.time-box.active .time-title,
.time-box.active .time-price {
  color: #4f6df5;
}


/* ===== CHECK IN OUT CARD ===== */

.mobile-check-card {
  margin-top: 22px;
  background: #f3f4f6;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.check-block span {
  display: block;
  font-size: 14px;
  color: #6b7280;
}

.check-block b {
  font-size: 12px;
  font-weight: 600;
}

.divider {
  width: 1px;
  height: 40px;
  background: #d1d5db;
}


/* ===== BOOKING DETAILS (CALENDAR TOP) ===== */

.calendar-booking-card {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px;
}

.calendar-booking-card .check-block span {
  font-size: 13px;
  color: #6b7280;
}

.calendar-booking-card .check-block b {
  font-size: 16px;
  font-weight: 600;
}

/* ===== CALENDAR CHOOSE TIME ===== */

.calendar-time-section {
  padding: 14px;
  display: none;
}

.calendar-time-section.active {
  display: block;
}

.calendar-slot.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}


/* ================= BOOKING POLICY ================= */

.booking-policy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 2000;
}

.booking-policy-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Bottom Sheet */
.booking-policy-sheet {
  position: fixed;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 85vh;
  background: #fff;
  border-radius: 22px 22px 0 0;
  z-index: 2001;
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
}

.booking-policy-sheet.active {
  bottom: 0;
}

/* Header */
.policy-header {
  background: #4f6df5;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 22px 22px 0 0;
}

/* Body */
.policy-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

.policy-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 10px;
}

.policy-body h3 {
  font-size: 18px;
  margin: 16px 0 10px;
  color: #111827;
}

.policy-list {
  padding-left: 18px;
  color: #374151;
  font-size: 15px;
}

.policy-list li {
  margin-bottom: 10px;
  line-height: 1.4;
}

.remaining-text {
  font-size: 15px;
  color: #374151;
  margin-top: 6px;
}

.note-text {
  margin-top: 8px;
  color: #dc2626;
  font-size: 14px;
}

/* Footer */
.policy-footer {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid #e5e7eb;
}

.policy-footer button {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
}

.policy-back-btn {
  background: #e5e7eb;
  color: #374151;
}

.policy-agree-btn {
  background: #4f6df5;
  color: #fff;
}

/* CTA Button polish */
.mobile-cta button {
  width: 100%;
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 16px;
}

.confirm-booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 3000;
}

.confirm-booking-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.confirm-booking-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 80vh;
  background: #fff;
  border-radius: 22px 22px 0 0;
  transition: 0.35s ease;
  z-index: 3001;
}

.confirm-booking-sheet.active {
  bottom: 0;
}

/* ================= CONFIRM BOOKING POPUP ================= */

/* overlay */
.confirm-booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.confirm-booking-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* bottom sheet */
.confirm-booking-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #fff;
  z-index: 1000;
  border-radius: 18px 18px 0 0;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transition: bottom 0.35s ease;
}

.confirm-booking-sheet.active {
  bottom: 0;
}

/* header */
.confirm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.confirm-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.confirm-header .close-btn {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* body */
.confirm-body {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.confirm-section {
  margin-bottom: 14px;
}

.confirm-section small {
  color: #777;
  font-size: 12px;
}

.confirm-section h4 {
  margin: 4px 0;
  font-size: 15px;
}

.confirm-section .tag {
  display: inline-block;
  background: #f1f5ff;
  color: #2b5cff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
}

/* rows */
.confirm-section .row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 6px;
}

.duration {
  margin-top: 6px;
  font-size: 13px;
}

/* total box */
.total-box {
  background: #f6f9ff;
  border-radius: 12px;
  padding: 12px;
  margin-top: 14px;
  text-align: center;
}

.total-box span {
  font-size: 12px;
  color: #666;
}

.total-box h2 {
  margin: 4px 0 0;
  font-size: 22px;
  color: #2b5cff;
}

/* footer */
.confirm-footer {
  padding: 14px 16px;
  border-top: 1px solid #eee;
}

.confirm-btn {
  width: 100%;
  background: #2b5cff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.confirm-btn:active {
  transform: scale(0.98);
}

/* desktop center modal */
@media (min-width: 768px) {
  .confirm-booking-sheet {
    width: 420px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -120%;
    border-radius: 18px;
  }

  .confirm-booking-sheet.active {
    bottom: 50%;
    transform: translate(-50%, 50%);
  }
}



/* ========== AMENITIES OVERLAY ========== */
.amenities-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.amenities-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ========== AMENITIES SHEET ========== */
.amenities-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

.amenities-sheet.active {
  transform: translateY(0);
}

/* HEADER */
.amenities-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.amenities-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.amenities-header button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

/* BODY */
.amenities-body {
  overflow-y: auto;
}

.amenity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #f2f2f2;
}

.amenity-row i {
  min-width: 22px;
  text-align: center;
}

/* ================= DISCOUNT SECTION ================= */

.mobile-discount {
  margin: 12px 0 20px;
}

/* View / Apply Coupon Card */
.discount-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1.5px solid #000;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
}

.discount-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.discount-left i {
  font-size: 18px;
  color: #1a8f00;
}

.discount-left span {
  font-size: 15px;
  font-weight: 600;
}

.discount-action .fa-chevron-right {
  font-size: 14px;
}

/* ================= APPLIED DISCOUNT BANNER ================= */

.discount-applied {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(90deg, #fff3a0, #ffd400);
}

.applied-left i {
  font-size: 20px;
  color: #222;
}

.applied-text h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.applied-text p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #333;
}

/* ================= BIRTHDAY OFFER ================= */

.birthday-offer {
  display: flex;
  gap: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.birthday-left img {
  width: 90px;
  height: 100%;
  object-fit: cover;
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
}

.birthday-right h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.birthday-right p {
  font-size: 13px;
  margin: 6px 0 10px;
  color: #444;
  line-height: 1.4;
}

.birthday-right button {
  background: #4f6ef7;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Button active feel */
.birthday-right button:active {
  transform: scale(0.97);
}

/* ================= COUPON SHEET ================= */

.coupon-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 999;
}

.coupon-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.coupon-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #fff;
  border-radius: 18px 18px 0 0;
  transition: 0.35s ease;
  z-index: 1000;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.coupon-sheet.active {
  bottom: 0;
}

.coupon-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid #eee;
}

.coupon-header button {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.coupon-body {
  padding: 14px;
  overflow-y: auto;
}

.coupon-input-box {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.coupon-input-box input {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.coupon-input-box button {
  background: #4f6ef7;
  color: #fff;
  border: none;
  padding: 0 16px;
  border-radius: 10px;
  font-weight: 600;
}

.coupon-applied {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #e8ffe8;
  margin-bottom: 14px;
}

.coupon-applied i {
  color: #1a8f00;
  font-size: 18px;
}

.coupon-title {
  font-size: 14px;
  margin: 10px 0;
}

.coupon-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eee;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.coupon-card p {
  font-size: 13px;
  color: #555;
  margin: 4px 0 0;
}

.coupon-card button {
  border: none;
  background: #000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.remove-discount-btn {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.verified-text {
  color: #28a745;
  font-weight: 600;
  margin-top: 6px;
}

.verified-badge {
  display: inline-block;
  background: #e6f9ee;
  color: #0f9d58;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.verification-error {
  background: #ffe6e6;
  color: #c62828;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 12px;
}



/* ================= SHARE & EARN ================= */

.share-earn-card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: linear-gradient(135deg, #fff6df, #fff);
  border-radius: 20px;

  padding: 18px;
  margin: 14px 0 22px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.share-earn-content {
  width: 60%;
}

.share-earn-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.share-earn-content p {
  font-size: 13.5px;
  margin: 4px 0;
  color: #333;
  line-height: 1.4;
}

.share-now-btn {
  margin-top: 14px;
  background: #5f7cff;
  color: #fff;
  border: none;

  padding: 12px 26px;
  border-radius: 14px;

  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 6px 14px rgba(95, 124, 255, 0.35);
}

.share-earn-image {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-earn-image img {
  width: 110px;
  max-width: 100%;
}


/* ================= SHARE COMING SOON MODAL ================= */

.share-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}

.share-modal {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 380px;

  background: #ffffff;
  border-radius: 22px 22px 0 0;
  padding: 26px 22px 30px;

  text-align: center;
  z-index: 9999;

  transition: bottom 0.35s ease;
}

.share-modal.active {
  bottom: 0;
}

.share-emoji {
  font-size: 42px;
  margin-bottom: 10px;
}

.share-modal h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.share-modal p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.share-modal button {
  margin-top: 18px;
  width: 100%;
  padding: 14px;

  border-radius: 14px;
  border: none;

  background: #5f73ff;
  color: #fff;

  font-size: 16px;
  font-weight: 600;
}


/* ================= TERMS & CONDITIONS ================= */

.terms-wrapper {
  margin: 18px 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.terms-header {
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
}

.terms-title {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
}

.terms-arrow {
  margin-right: 7rem;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.terms-arrow.open {
  transform: rotate(180deg);
}

.terms-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.terms-checkbox.checked {
  background: #4f6bed;
  border-color: #4f6bed;
}

.terms-checkbox.checked::after {
  content: "✓";
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

/* CONTENT */
.terms-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 16px;
}

.terms-content.open {
  max-height: 600px;
  padding-bottom: 16px;
}

.terms-content ol {
  padding-left: 18px;
  font-size: 13px;
  color: #444;
}

.terms-content li {
  margin-bottom: 8px;
}

.terms-content ul {
  margin-top: 6px;
  padding-left: 16px;
}


/* ===== HIDE FOOTER ONLY ON MOBILE VERSION ===== */
@media (max-width: 768px) {
  footer, 
  .show-mobile ~ footer {
    display: none !important;
  }
}

/* ===== IMAGE LABEL MODAL ===== */
.img-label-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 999;
}

.img-label-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 16px;
  width: 90%;
  max-width: 320px;
  border-radius: 10px;
  display: none;
  z-index: 1000;
}

.img-label-modal h3 {
  margin-bottom: 10px;
}

.img-label-modal input {
  width: 100%;
  padding: 8px;
  margin-bottom: 14px;
}

.img-label-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.img-label-actions button {
  min-width: 90px;
  padding: 8px 14px;
  font-size: 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}


/* CANCEL BUTTON */
#cancelImgLabelBtn {
  background: #f1f1f1;
  color: #333;
}

#cancelImgLabelBtn:hover {
  background: #e0e0e0;
}

/* SAVE BUTTON */
#saveImgLabelBtn {
  background: #2563eb;   /* blue */
  color: #fff;
}

#saveImgLabelBtn:hover {
  background: #1e40af;
}

#saveImgLabelBtn:active,
#cancelImgLabelBtn:active {
  transform: scale(0.96);
}

.mob-thumb-card {
  position: relative;
}

.edit-img-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.free-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
}

.free-badge {
  background: #6b4f1d;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.edit-listing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.edit-listing-btn:active {
  transform: scale(0.95);
}
