/* start banner  */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Desktop Grid */
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

.gallery img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* First image full width */
.gallery .large {
  grid-column: span 2;
}

/* Hide slider on desktop */
.mobile-slider {
  display: none;
}

/* MOBILE VIEW */
@media (max-width: 768px) {

  .gallery {
    display: none;
  }

  .mobile-slider {
    display: block;
  }

  .swiper {
    width: 100%;
    height: 260px;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}


/* start overview  */


/* Heading */
h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Card */
.card1 {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.card1-left {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 65%;
}

.card1-left img {
    width: 42px;
}

.card1-text {
    font-size: 13px;
    color: #444;
}

/* Divider */
.divider {
    width: 1px;
    height: 55px;
    background: #eee;
}

/* Right Section */
.card1-right {
    text-align: center;
    width: 30%;
}

.card1-right h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.card1-right a {
    font-size: 12px;
    color: #007bff;
    text-decoration: none;
}

.card1-right a:hover {
    text-decoration: underline;
}

.stars {
    color: #f5a623;
    font-size: 14px;
    margin-top: 4px;
}

/* Section Title */
.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
}



/* Mobile polish */
@media (max-width: 480px) {
    h2 {
        font-size: 18px;
    }
    .card1 {
        padding: 14px;
    }
}

/* amenties */
.ah {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    padding: 15px;
}

/* Card */
.card2 {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Amenities */
.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity {
    width: 48%;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.amenity img {
    width: 22px;
    margin-right: 8px;
}

/* Hide extra items */
.extra {
    display: none;
}

/* Button */
.btnloadmore {
    margin-top: 12px;
    display: inline-block;
    padding: 10px 14px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* House Rules FIXED ALIGNMENT */
.rules {
    padding-left: 0;
    margin: 0;
}

.rules li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.rules li::before {
    content: "✔";
    color: green;
    margin-top: 2px;
}

/* Cancellation */
.policy-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    max-height: 65px;
    overflow: hidden;
    transition: 0.3s;
}

.policy-text.expanded {
    max-height: 500px;
}

.toggle {
    color: #007bff;
    margin-top: 8px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
}

/* reviews */

.cr-wrapper {
    max-width: 500px;
    margin: auto;
    font-family: Arial, sans-serif;
}

/* CARD */
.cr-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 15px;
}

/* HEADER */
.cr-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cr-heading {
    font-size: 18px;
    font-weight: bold;
}

/* NAV */
.cr-nav button {
    border: none;
    background: #eee;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 5px;
}

/* CONTENT ROW */
.cr-content {
    display: flex;
    gap: 15px;
}

/* LEFT SLIDER */
.cr-left {
    flex: 1;
    overflow: hidden;
}

.cr-track {
    display: flex;
    transition: transform 0.5s ease;
}

.cr-slide {
    flex: 0 0 100%;
}

/* REVIEW TEXT */
.cr-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cr-name {
    font-weight: bold;
    font-size: 13px;
}

/* RIGHT STATIC CONTENT */
.cr-right {
    width: 120px;
    font-size: 13px;
    color: #444;
    border-left: 1px solid #eee;
    padding-left: 10px;
}

.cr-right strong {
    display: block;
    font-size: 16px;
    color: #000;
}

/* RATING */
.cr-rating {
    margin-top: 15px;
}

.cr-item {
    margin-bottom: 10px;
}

.cr-top {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 4px;
}

.cr-bar {
    height: 4px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.cr-fill {
    height: 100%;
    background: #39c5bb;
}

/* MOBILE */
@media(max-width:480px){
    .cr-content {
        flex-direction: column;
    }
    .cr-right {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
}

/* faq */

/* ===== Scoped Mobile FAQ Styles ===== */
.mb-faq {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f3f4f6;
  padding: 24px 16px;
  max-width: 480px;
  margin: auto;
}

.mb-faq h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.mb-faq-card {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.mb-faq-question {
  padding: 18px;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Modern circular icon */
.mb-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mb-faq-icon svg {
  width: 16px;
  height: 16px;
  stroke: #374151;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.mb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  padding: 0 18px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.mb-faq-card.active .mb-faq-answer {
  max-height: 220px;
  padding-bottom: 18px;
}

/* Animate icon */
.mb-faq-card.active .mb-faq-icon {
  background: #e0f2fe;
}

.mb-faq-card.active .mb-faq-icon svg {
  transform: rotate(180deg);
}

/* Tap highlight removal */
.mb-faq-question {
  -webkit-tap-highlight-color: transparent;
}


/* price summary slider */

.pricecontainer{max-width:400px;margin:20px auto;background:#fff;border-radius:12px;box-shadow:0 6px 16px rgba(0,0,0,0.12);overflow:hidden;padding:0 10px}
.header{padding:15px;border-bottom:1px solid #eee;font-weight:bold;font-size:18px}
.sectionpop{padding:15px 10px;border-bottom:1px solid #eee}
.input{width:100%;padding:10px;border:1px solid #ddd;border-radius:6px;margin-top:5px;box-sizing:border-box}
.btnpop{background:#ef4d5c;color:#fff;border:none;padding:12px;width:100%;border-radius:8px;margin-top:10px;font-weight:bold}
.price-link{color:#ef4d5c;cursor:pointer;font-size:14px}

/* Popup Improved */
.popup{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);display:none;align-items:center;justify-content:center}
.popup-content{background:#fff;padding:0;border-radius:14px;width:320px;overflow:hidden;animation:fadeIn .3s}
.popup-header{background:#ef4d5c;color:#fff;padding:14px;font-weight:bold;display:flex;justify-content:space-between;align-items:center}
.popup-body{padding:15px}
.price-row{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px dashed #ddd;font-size:14px}
.price-row:last-child{border:none}
.total{font-size:16px;font-weight:bold;color:#000}
.close{cursor:pointer;font-size:18px}

/* Mobile Book Button */
.book-btnpop{display:none;position:fixed;bottom:0;width:100%;background:#ef4d5c;color:#fff;padding:15px;text-align:center;font-weight:bold;z-index:99}

/* Drawer */
.overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.4);display:none;z-index:98}
.drawer{position:fixed;bottom:-100%;left:0;width:100%;height:92%;background:#fff;border-radius:22px 22px 0 0;transition:0.4s ease;overflow:auto;z-index:99}
.drawer.active{bottom:0}
.drawer-header{padding:15px;font-weight:bold;border-bottom:1px solid #eee;display:flex;justify-content:space-between;align-items:center}
.close-drawer{cursor:pointer;font-size:20px}

/* Accordion Improved */
.accordion{margin-top:10px}
.accordion-item{margin-bottom:12px;border-radius:10px;overflow:hidden;border:1px solid #eee}
.accordion-header{padding:14px;background:#fafafa;cursor:pointer;font-weight:600;display:flex;justify-content:space-between;align-items:center}
.accordion-content{max-height:0;overflow:hidden;transition:max-height 0.3s ease;padding:0 14px;background:#fff}
.accordion-content.open{padding:12px 14px}

/* Mobile Price Card */
.price-card{background:#fff5f6;border:1px solid #ffd5d8;border-radius:10px;padding:10px;margin-top:8px}
.price-card .price-row{border-bottom:1px dashed #ffc0c5;    padding: 0;}

.addon{display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px dashed #ddd}
.addon:last-child{border:none}

@keyframes fadeIn{from{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}

@media(max-width:768px){
.pricecontainer{display:none}
.book-btnpop{display:block}
}