* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      color: #222;
      background: #fff;
      line-height: 1.6;
    }

    header {
      padding: 20px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      background: white;
      z-index: 10;
    }

    .logo {
      font-size: 24px;
      font-weight: 700;
      color: #2f5d50;
    }

    nav a {
      margin-left: 25px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }

   .airbnb-section {
  max-width: 1680px;
  margin: 0 auto;
  padding: 35px 64px 60px;
}

.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.listing-header h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}

.listing-actions {
  display: flex;
  gap: 28px;
  align-items: center;
}

.listing-actions a {
  color: #222;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}

.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  height: 492px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Big left image */
.main-photo {
  grid-row: span 2;
  overflow: hidden;
  border-radius: 16px 0 0 16px;
}

/* Small images */
.small-photo {
  overflow: hidden;
  position: relative;
}

/* Right corner rounding */
.photo-grid .small-photo:nth-child(3) {
  border-radius: 0 16px 0 0;
}

.photo-grid .small-photo:nth-child(5) {
  border-radius: 0 0 16px 0;
}

/* Show photos button */
.photo-button-wrap {
  position: relative;
}

.show-photos-btn {
  position: absolute;
  right: 22px;
  bottom: 22px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.show-photos-btn span {
  margin-right: 8px;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .airbnb-section {
    padding: 24px;
  }

  .listing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .listing-header h1 {
    font-size: 26px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .main-photo,
  .small-photo {
    height: 260px;
    border-radius: 14px !important;
  }
}

.gallery-popup {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: none;
  overflow-y: auto;
}

.gallery-popup.active {
  display: block;
}

.photo-tour-wrap {
  padding: 56px 60px 100px;
  position: relative;
}

.close-btn {
  position: fixed;
  top: 24px;
  left: 24px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f2f2f2;
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
}

.tour-title {
  font-size: 34px;
  margin-bottom: 45px;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px 24px;
  margin-bottom: 80px;
}

.tour-grid a {
  text-decoration: none;
  color: #222;
}

.tour-grid img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  box-shadow: 0 3px 8px rgba(0,0,0,.18);
}

.tour-grid span {
  display: block;
  font-size: 12px;
  margin-top: 12px;
}

.photo-section {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.photo-section h2 {
  font-size: 32px;
  margin: 0;
  position: sticky;
  top: 40px;
}

.photo-section img {
  grid-column: 2;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  margin-bottom: 24px;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .tour-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-section {
    grid-template-columns: 1fr;
  }

  .photo-section img {
    grid-column: 1;
  }
}

@media (max-width: 600px) {
  .photo-tour-wrap {
    padding: 40px 20px 80px;
  }

  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tour-grid img {
    height: 110px;
  }

  .tour-grid span {
    font-size: 16px;
  }
}
.details-section {
  max-width: 1680px;
  margin: 0 auto;
  padding: 35px 64px 80px;
  display: grid;
  grid-template-columns: minmax(0, 920px) 520px;
  gap: 120px;
  align-items: start;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.property-title h2 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 6px;
  font-weight: 700;
}

.property-title p {
  font-size: 18px;
  margin: 0 0 8px;
}

.property-title .rating {
  font-size: 16px;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 45px 0;
}

.host-row,
.feature-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.host-row img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.host-row h3,
.feature-row h3 {
  font-size: 20px;
  margin: 0 0 4px;
}

.host-row p,
.feature-row p {
  font-size: 15px;
  color: #6b6b6b;
  margin: 0;
}

.feature-icon {
  width: 58px;
  font-size: 34px;
  text-align: center;
}

.description p {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.description h3 {
  font-size: 18px;
  margin: 0;
}

.booking-card {
  position: sticky;
  top: 35px;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.booking-card h2 {
  font-size: 22px;
  margin: 0 0 28px;
}

.date-box {
  border: 1px solid #777;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.date-box > div {
  padding: 18px;
}

.date-box > div:first-child {
  border-right: 1px solid #999;
}

.date-box label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.date-box span {
  font-size: 12px;
}

.date-box .muted {
  color: #777;
}

.guests-row {
  grid-column: span 2;
  border-top: 1px solid #999;
  position: relative;
}

.guests-row b {
  position: absolute;
  right: 24px;
  top: 34px;
  font-size: 24px;
}

.booking-card button {
  width: 100%;
  border: none;
  border-radius: 40px;
  padding: 20px;
  /* background: linear-gradient(90deg, #e61e4d, #d70466); */
  /* color: black; */
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.report-link {
  display: block;
  text-align: center;
  margin-top: 38px;
  color: #666;
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .details-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 24px;
  }

  .booking-card {
    position: static;
  }

  .property-title h2,
  .booking-card h2 {
    font-size: 26px;
  }

  .property-title p,
  .description p {
    font-size: 18px;
  }
}
.booking-card {
  width: 550px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
  font-family: Arial, Helvetica, sans-serif;
}

.booking-card h2 {
  margin: 0 0 30px;
  font-size: 26px;
  line-height: 1.1;
  color: #222;
}

.booking-fields {
  border: 1px solid #999;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.field {
  padding: 1px 8px;
  cursor: pointer;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}

.field span {
  display: block;
  font-size: 12px;
  color: #666;
}

.checkin,
.checkout {
  width: 50%;
  float: left;
}

.checkin {
  border-right: 1px solid #999;
}

.guests {
  clear: both;
  /* border-top: 1px solid #999; */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.guests .arrow {
  font-size: 34px;
  color: #222;
}

.availability-btn {
  width: 100%;
  border: none;
  border-radius: 40px;
  padding: 22px;
  background: linear-gradient(90deg, #e61e4d, #d70466);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 600px) {
  .booking-card {
    width: 100%;
    padding: 24px;
  }

  .booking-card h2 {
    font-size: 28px;
  }
}
.calendar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.08);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.calendar-overlay.active {
  display: flex;
}

.calendar-modal {
  width: 500px;
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  position: relative;
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 45px;
}

.calendar-top h2 {
  font-size: 20px;
  margin: 0 0 8px;
}

.calendar-top p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.calendar-inputs {
  display: grid;
  grid-template-columns: 120px 120px;
  border: 1px solid #999;
  border-radius: 12px;
  overflow: hidden;
}

.calendar-inputs div {
  padding: 7px 10px;
}

.calendar-inputs .active {
  border: 3px solid #222;
  border-radius: 12px;
}

.calendar-inputs label {
  display: block;
  font-weight: 700;
  font-size: 12px;
}

.calendar-inputs span {
  color: #777;
  font-size: 12px;
}

.calendar-nav {
  position: absolute;
  top: 100px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.calendar-nav button {
  pointer-events: auto;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.month h3 {
  text-align: center;
  font-size: 12px;
  margin-bottom: 25px;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  
}

.weekdays span {
  color: #666;font-size: 10px;
  font-weight: 600;
}

.days button {
  border: none;
  background: transparent;
  font-size: 10px;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.days button:hover,
.days button.selected {
  background: #222;
  color: #fff;
}

.days button.empty {
  visibility: hidden;
}

.calendar-actions {
 
  display: inline-flex;
 
    gap: 24px;
    margin-top: 0px;
    float: right;
}

.clear-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 600;
}

.close-calendar {
  background: transparent;
  color: #000000;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
}

.guest-wrapper{
    /* position:relative; */
}

.guest-dropdown{
    position:absolute;
    top:71%;
    left:44px;
    right:0;
    background:#fff;
    border-radius:16px;
    box-shadow:0 8px 30px rgba(0,0,0,.15);
    padding:12px 24px;
    margin-top:8px;
    display:none;
    z-index:999;    width: 460px;
}

.guest-dropdown.active{
    display:block;
}

.guest-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.guest-row:last-child{
    border-bottom:none;
}

.guest-row h4{
    margin:0;
    font-size:14px;
    font-weight:600;
}

.guest-row p{
    margin:4px 0 0;
    color:#717171;
    font-size:12px;
}

.counter{
    display:flex;
    align-items:center;
    gap:8px;
}

.counter button{
    width:25px;
    height:25px;
    border-radius:50%;
    border:1px solid #ccc;
    background:#fff;
    cursor:pointer;
    font-size:16px;
	padding:0px;
}

.counter span{
    width:20px;
    text-align:center;
    font-size:15px;
}

#guestArrow{
    font-size:30px;
}

.space-section {
  max-width: 920px;
  padding: 20px 0 60px;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.space-section h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.show-more-btn,
.amenities-btn {
  background: #f2f2f2;
  border: none;
  border-radius: 16px;
  padding: 20px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.divider {
  height: 1px;
  background: #ddd;
  margin: 70px 0;
}

.space-section h2 {
  font-size: 32px;
  margin-bottom: 34px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 90px;
  margin-bottom: 34px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
}

.amenity span {
  line-height: 1.25;
}

.amenity.unavailable span {
  text-decoration: line-through;
}

.amenities-btn {
  background: #f2f2f2;
}

/* popup */
.space-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.space-popup.active {
  display: flex;
}

.space-popup-box {
  width: 760px;
  max-width: calc(100vw - 32px);
  max-height: 88vh;
  overflow-y: auto;
  background: white;
  border-radius: 24px;
  padding: 36px 42px;
  position: relative;
}

.popup-close {
  position: sticky;
  top: 0;
  width: 38px;
  height: 38px;
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
}

.space-popup-box h2 {
  font-size: 25px;
  margin: 24px 0;
}

.space-popup-box h3 {
  font-size: 18px;
  margin: 10px 0 12px;
}

.space-popup-box p,
.space-popup-box li {
  font-size: 16px;
  line-height: 1.55;
}

.space-popup-box ul {
  padding-left: 22px;
}

@media (max-width: 700px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .space-popup-box {
    padding: 28px 24px;
  }
}
.amenities-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.amenities-popup.active {
  display: flex;
}

.amenities-box {
  width: 760px;
  max-width: calc(100vw - 30px);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 28px 34px;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.amenities-close {
  border: none;
  background: transparent;
  font-size: 34px;
  cursor: pointer;
  margin-bottom: 40px;
}

.amenities-box h2 {
  font-size: 25px;
  margin: 0px 0px 35px;
}

.amenity-group {
  margin-bottom: 20px;
}

.amenity-group h3 {
  font-size: 16px;
  margin: 0 0 10px;
}

.amenity-line {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  font-size: 16px;
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

.amenity-line span {
  display: block;
}

.amenity-line small {
  display: block;
  margin-top: 6px;
  color: #717171;
  line-height: 1.35;
}

.amenity-line.not-included span {
  text-decoration: line-through;
}

.amenity-line.not-included small {
  text-decoration: none;
}
.strike {
    text-decoration: line-through;
}

.content small {
    display: block;
    margin-top: 8px;
    text-decoration: none;
    color: #717171;
}
body.popup-open {
  overflow: hidden;
}
.location-section {
  max-width: 1680px;
  margin: 0 auto;
  padding: 50px 64px 80px;
  border-top: 1px solid #ddd;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.location-section h2 {
  font-size: 32px;
  margin: 0 0 34px;
}

.location-section p {
  font-size: 24px;
  margin: 0 0 36px;
}

.map-box {
  height: 660px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #eee;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9);
}

.map-search,
.map-expand,
.map-zoom button {
  position: absolute;
  border: none;
  background: #fff;
  color: #222;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
  cursor: pointer;
}

.map-search,
.map-expand {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 30px;
}

.map-search {
  top: 28px;
  left: 28px;
}

.map-expand {
  top: 28px;
  right: 28px;
}

.map-zoom {
  position: absolute;
  top: 130px;
  right: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 3px 12px rgba(0,0,0,.18);
}

.map-zoom button {
  position: static;
  width: 58px;
  height: 58px;
  font-size: 34px;
  box-shadow: none;
}

.map-zoom button:first-child {
  border-bottom: 1px solid #ddd;
}

.map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #e61e4d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 70px rgba(230, 30, 77, .18);
}

.map-marker span {
  width: 34px;
  height: 34px;
  background: white;
  color: #e61e4d;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .location-section {
    padding: 40px 24px;
  }

  .map-box {
    height: 420px;
  }
}



















    footer {
      padding: 30px 8%;
      background: #f7f5f0;
      text-align: center;
      color: #555;
    }

    @media (max-width: 800px) {
      nav {
        display: none;
      }

 
    }