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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f7f7;
  min-height: 100vh;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 1000;
}

/* Logo */
.navbar .logo {
  font-size: 28px;
  font-weight: 900;
  color: #ff385c;
  letter-spacing: 2px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar .logo i {
  font-size: 30px;
}

/* Tabs container */
.navbar .tabs {
  display: flex;
  gap: 28px;
  align-items: center;
}

/* Individual tab buttons */
.navbar .tabs button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #484848;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 600;
  user-select: none;
}

.navbar .tabs button i {
  font-size: 18px;
  color: #ff385c;
  transition: color 0.3s;
}

.navbar .tabs button:hover {
  background-color: #ffe6ea;
  color: #ff385c;
}

/* Active tab styling */
.navbar .tabs button.active {
  background-color: #ff385c;
  color: white;
}

.navbar .tabs button.active i {
  color: white;
}

/* Become a host with icon */
.navbar .host {
  margin-left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #484848;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  transition: color 0.3s;
}

.navbar .host i {
  font-size: 18px;
  color: #484848;
}

.navbar .host:hover {
  color: #ff385c;
}

.navbar .host:hover i {
  color: #ff385c;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #ff385c;
}

/* Sidebar overlay & menu */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 900;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: left 0.3s;
  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

.sidebar .close-btn {
  align-self: flex-end;
  font-size: 28px;
  cursor: pointer;
  color: #ff385c;
  margin-bottom: 10px;
  background: none;
  border: none;
}

.sidebar .tabs {
  flex-direction: column;
  gap: 20px;
}

.sidebar .tabs button {
  width: 100%;
  justify-content: flex-start;
  font-size: 18px;
  padding: 12px 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #484848;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: 600;
  user-select: none;
}

.sidebar .tabs button i {
  font-size: 20px;
  color: #ff385c;
  transition: color 0.3s;
}

.sidebar .tabs button:hover {
  background-color: #ffe6ea;
  color: #ff385c;
}

.sidebar .tabs button.active {
  background-color: #ff385c;
  color: white;
}

.sidebar .tabs button.active i {
  color: white;
}

.sidebar .host {
  font-size: 18px;
  margin-top: auto;
  cursor: pointer;
  gap: 10px;
  justify-content: flex-start;
  display: flex;
  align-items: center;
  color: #484848;
  font-weight: 600;
  user-select: none;
  transition: color 0.3s;
}

.sidebar .host i {
  font-size: 20px;
  color: #484848;
  transition: color 0.3s;
}

.sidebar .host:hover {
  color: #ff385c;
}

.sidebar .host:hover i {
  color: #ff385c;
}
/* 👤 User dropdown container */
.user-dropdown {
  position: relative;
  display: none; /* only show on desktop */
  margin-left: 16px;
  cursor: pointer;
}

.user-icon {
  font-size: 18px;
  padding: 10px;
  border-radius: 50%;
  background-color: #f7f7f7;
  color: #484848;
  transition: background-color 0.3s;
}

.user-icon:hover {
  background-color: #ffe6ea;
  color: #ff385c;
}

/* 📋 Dropdown menu styling */
.dropdown-menu {
  position: absolute;
  top: 48px;
  right: 0;
  width: 260px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 14px;
  display: none;
  z-index: 1000;
}

.user-dropdown:hover .dropdown-menu,
.user-dropdown:focus-within .dropdown-menu {
  display: block;
}

/* 📎 Dropdown links */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-size: 14px;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s;
}

.dropdown-menu a:hover {
  color: #ff385c;
}

/* 🔔 Badge style */
.dropdown-menu .badge {
  background-color: red;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 20px;
  margin-left: auto;
}

/* 🧾 Section for hosting prompt */
.become-host-section {
  padding: 5px 0;
}

.become-host-section strong {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.become-host-section p {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}

/* 🧱 Divider */
.dropdown-menu hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 10px 0;
}

/* 📱 Show only on desktop */
@media (min-width: 768px) {
  .user-dropdown {
    display: block;
  }
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
/* Responsive styles */
@media (max-width: 900px) {
  .navbar .tabs,
  .navbar .host {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* Content section */
.content {
  padding: 20px 24px;
  margin: 0 auto;
}

/* Section headings inside each tab panel */
main .content > section h2 {
  margin-bottom: 20px;
  color: #484848;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}

/* Slider wrapper */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 20px;
}

.cards-container {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  width: max-content;
  margin-bottom: 60px;
  margin-top: 15px;
}

/* Card */
.card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 285px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  outline-offset: 3px;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Image wrapper to position badge and wishlist */
.image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge styling */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #ff385c;
  color: white;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 2;
}

/* Wishlist icon button */
.wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #ff385c;
  z-index: 2;
}

.wishlist:hover {
  background-color: #ff385c;
  color: white;
}

.wishlist.active {
  background-color: #ff385c;
  color: white;
}

.wishlist.active i {
  color: white;
}

/* Card info */
.card-info {
  padding: 12px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.card-title {
  font-weight: 700;
  font-size: 17px;
  color: #222;
  user-select: none;
}

.card-price {
  font-weight: 600;
  font-size: 14px;
  color: #484848;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #ff385c;
  font-weight: 600;
  user-select: none;
}

.card-rating i {
  color: #ff385c;
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
}

.slider-prev,
.slider-next {
  background-color: #ff385c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: #e63939;
}

/* Search bar */
.search-bar {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  background: white;
  border-radius: 40px;
  padding: 20px;
  margin: 50px auto;
  max-width: 1100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-wrap: nowrap;
}

.search-item {
  position: relative;
  flex: 1;
  padding: 10px 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s;
  background: #ffcccc6b;
}

.search-item:hover {
  background: #f0f0f0;
}

.dropdown {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 20px;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.calendar-wrapper {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 217%;
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 20px;
  z-index: 100;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.search-item.active > .dropdown,
.search-item.active > .calendar-wrapper,
.search-item.active > .who-section {
  display: block;
}

.sub-items {
  padding-left: 23px;
  color: gray;
}

.icon {
  margin-right: 8px;
  color: #ff385c;
}

.search-button {
  background-color: #ff385c;
  border: none;
  border-radius: 50%;
  padding: 14px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  align-self: center;
}

.flex-options {
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
  display: flex;
}

.flex-options button {
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 30px;
  background: white;
  cursor: pointer;
  transition: background 0.2s;
}

.flex-options button:hover {
  background: #f0f0f0;
}

.destination-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.destination-title {
  font-weight: bold;
}

.who-section .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.who-section .row:last-child {
  border-bottom: none;
}

.counter {
  display: flex;
  gap: 10px;
  align-items: center;
}

.counter button {
  width: 30px;
  height: 30px;
  background: #eee;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
}

.zoomBannerCalendarPopup {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.zoomBannerMonth {
  flex: 1;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zoomBannerMonthHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.zoomBannerMonthHeader button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #ff385c;
  transition: color 0.3s ease;
}

.zoomBannerMonthHeader button:hover {
  color: #e63939;
}

.zoomBannerDaysHeader,
.zoomBannerDays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.zoomBannerDaysHeader div {
  font-weight: 600;
  color: #666;
  font-size: 0.85rem;
}

.zoomBannerDay {
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.zoomBannerDay:hover {
  background-color: #ffcccc;
}

.zoomBannerDay.zoomBannerSelected {
  background-color: #ff385c;
  color: white;
  font-weight: 600;
}

.zoomBannerSelectedRange {
  background-color: #ffcccc6b;
  border-radius: 4px;
}

.zoomBannerPopupHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.zoomBannerPopupHeader .zoomBannerDateDisplay {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
}

.zoomBannerPopupHeader .zoomBannerDateDisplay .zoomBannerCalendarIcon {
  width: 22px;
  height: 22px;
  background: url("https://via.placeholder.com/20x20?text=📅") center/cover
    no-repeat;
}

.zoomBannerPopupHeader .zoomBannerResetButton {
  background: linear-gradient(90deg, #ff385c, #e63939);
  border: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.zoomBannerPopupHeader .zoomBannerResetButton:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #e63939, #ff4d4d);
}

.zoomBannerContinueButton {
  text-align: right;
}

.zoomBannerContinueButton button {
  background: linear-gradient(90deg, #ff385c, #e63939);
  border: none;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.3s ease;
}

.zoomBannerContinueButton button:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #e63939, #ff4d4d);
}

@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px;
    border-radius: 20px;
    margin: 20px;
  }
  .search-item {
    width: 100%;
    border-radius: 20px;
    padding: 12px;
  }
  .calendar-wrapper,
  .dropdown {
    position: static;
    width: 100% !important;
    margin-top: 10px;
    box-shadow: none;
    border-radius: 10px;
  }
  .search-button {
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    padding: 12px;
  }
  .flex-options {
    justify-content: start;
    gap: 6px;
  }
  .flex-options button {
    font-size: 12px;
    padding: 5px 10px;
  }
  .zoomBannerCalendarPopup {
    flex-direction: column;
    gap: 10px;
  }
  .zoomBannerMonth {
    width: 100%;
  }
  .slider-wrapper {
    max-width: 100%;
  }
  .cards-container {
    flex-wrap: nowrap;
  }
}
/* footer  */
.footer {
  background: #e3e3e3;
  padding: 20px 2%;
  font-size: 14px;
  color: #333;
}
.footer-top {
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}
.footer-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.footer-tab {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}
.footer-tab.active {
  border-color: #000;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  flex: 1;
}
.footer-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
}
.footer-list li {
  margin-bottom: 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 40px;
}
.footer-column {
  /* flex: 1 1 30%; */
  margin-bottom: 20px;
}
.footer-column strong {
  display: block;
  margin-bottom: 10px;
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column li {
  margin-bottom: 8px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 13px;
  color: #666;
}
.footer-legal a {
  margin-left: 15px;
  color: inherit;
  text-decoration: none;
}
.footer-locale,
.footer-social {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* profile page ############################### */

.profile-container {
  display: flex;
  min-height: 100vh;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
}

.profile-sidebar {
  width: 260px;
  background-color: #f7f7f7;
  padding: 30px 25px;
  border-right: 1px solid #ddd;
  box-sizing: border-box;
}

.profile-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
  user-select: none;
}

.profile-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-tab {
  padding: 14px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 600;
  color: #555;
  transition: background-color 0.25s, color 0.25s;
  user-select: none;
  border: 2px solid transparent;
}

.profile-tab:hover {
  background-color: #eaeaea;
}

.profile-tab.active {
  background-color: #ff385c;
  color: white;
  border-color: #ff385c;
  box-shadow: 0 4px 10px rgb(255 56 92 / 0.3);
}

.profile-content {
  flex: 1;
  padding: 40px 50px;
  box-sizing: border-box;
}

.profile-section {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.profile-section.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header of each section */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-header h2 {
  font-weight: 700;
  font-size: 28px;
  color: #222;
}

.profile-edit-btn {
  background-color: #eee;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #444;
  transition: background-color 0.25s;
  user-select: none;
}

.profile-edit-btn:hover {
  background-color: #ddd;
}

/* Profile card */
.profile-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 35px 25px;
  max-width: 320px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.05);
  margin-bottom: 30px;
}

.profile-avatar {
  background: #ff385c;
  color: #fff;
  font-size: 48px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  font-weight: 700;
  user-select: none;
  box-shadow: 0 0 10px rgb(255 56 92 / 0.4);
}

.profile-card h3 {
  margin: 0 0 6px 0;
  font-size: 24px;
  font-weight: 700;
  color: #222;
}

.profile-card p {
  margin: 0;
  font-weight: 500;
  color: #777;
  font-size: 16px;
}

/* Text content blocks */
.profile-text-block {
  background: #fff0f3;
  border: 1px solid #ffccd7;
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 600px;
  font-size: 17px;
  color: #333;
  line-height: 1.5;
  user-select: text;
  margin-bottom: 20px;
}

.profile-text-block strong {
  font-weight: 700;
  color: #ff385c;
}

.profile-text-block a {
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: #ff385c;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  cursor: pointer;
  user-select: text;
}

.profile-text-block a:hover {
  border-color: #ff385c;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .profile-container {
    flex-direction: column;
    margin: 20px;
    border-radius: 10px;
    max-width: 100%;
    box-shadow: none;
  }

  .profile-sidebar {
    width: 100%;
    padding: 20px 15px;
    border-right: none;
    border-bottom: 1px solid #ddd;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .profile-heading {
    font-size: 22px;
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
    align-self: center;
  }

  .profile-tabs {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
  }

  .profile-tab {
    flex: 0 0 auto;
    margin: 0 10px 0 0;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 30px;
    white-space: nowrap;
    border: 2px solid transparent;
  }

  .profile-tab.active {
    box-shadow: none;
  }

  .profile-content {
    padding: 30px 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .profile-edit-btn {
    align-self: flex-start;
    padding: 8px 14px;
  }

  .profile-card {
    margin: 0 auto 25px auto;
    max-width: 100%;
    width: 100%;
  }

  .profile-text-block {
    max-width: 100%;
    padding: 20px;
  }
}

/* ######## payment poage
     */

.paymenet-container {
  display: flex;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
}

.paymenet-left {
  flex: 2;
}
.paymenet-left h2 {
  padding-bottom: 10px;
}
.paymenet-right {
  flex: 1;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.paymenet-section {
  margin-bottom: 30px;
}

.paymenet-section h2 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.paymenet-box {
  background: #fff0f1;
  padding: 20px;
  border-left: 5px solid #ff385c;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #d12c4a;
}

.paymenet-label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.paymenet-payment-option {
  margin-top: 10px;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
}

.paymenet-input {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.paymenet-add-btn {
  margin-top: 12px;
  padding: 10px 16px;
  background: #eeeeee;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.paymenet-add-btn:hover {
  background: #ddd;
}

.paymenet-policy,
.paymenet-rules {
  font-size: 14px;
  line-height: 1.6;
}

.paymenet-confirm-btn {
  padding: 14px 22px;
  background: #ff385c;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.3s;
}

.paymenet-confirm-btn:hover {
  background: #e12c50;
}

.paymenet-right img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.paymenet-summary {
  margin-top: 15px;
  font-size: 14px;
}

.paymenet-summary p {
  margin: 5px 0;
  display: flex;
  justify-content: space-between;
}

.paymenet-total {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 10px;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .paymenet-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 25px;
  }

  .paymenet-left,
  .paymenet-right {
    flex: unset;
    width: 100%;
  }

  .paymenet-section h2 {
    font-size: 20px;
  }

  .paymenet-box {
    font-size: 14px;
    padding: 16px;
  }

  .paymenet-input {
    padding: 9px;
  }

  .paymenet-add-btn,
  .paymenet-confirm-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 0;
  }

  .paymenet-summary p {
    flex-direction: column;
    align-items: flex-start;
  }

  .paymenet-summary p span {
    margin-top: 4px;
  }
}
/* ##############################  edit profiole page  */

.profile-edit-container {
  display: flex;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-edit-left {
  width: 280px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  padding: 40px 20px;
  border-right: 1px solid #ddd;
}

.profile-edit-avatar {
  background: #222;
  color: white;
  font-size: 42px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 10px;
}

.profile-edit-add-btn {
  margin-top: 10px;
  padding: 6px 12px;
  background: white;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 14px;
  cursor: pointer;
}

.profile-edit-right {
  flex: 1;
  padding: 40px;
}

.profile-edit-section h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.profile-edit-subtext {
  color: #555;
  margin-bottom: 30px;
  font-size: 14px;
}

.profile-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.profile-edit-item {
  display: flex;
  flex-direction: column;
}

.profile-edit-item label {
  font-size: 14px;
  margin-bottom: 4px;
}

.profile-edit-item input {
  padding: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  background: transparent;
}

.profile-edit-about {
  margin-top: 40px;
}

.profile-edit-about textarea {
  width: 100%;
  height: 80px;
  border: 1px dashed #ccc;
  padding: 10px;
  resize: none;
  font-size: 14px;
}

.profile-edit-badges,
.profile-edit-interests {
  margin-top: 40px;
}

.badge-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.badge-box {
  width: 80px;
  height: 80px;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
}

.interest-add-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.interest-box {
  border: 1px dashed #bbb;
  padding: 8px 16px;
  border-radius: 25px;
  background: #f9f9f9;
  font-size: 14px;
  cursor: pointer;
}

.profile-edit-btn-done {
  margin-top: 30px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* amenities page  #########################################*/
.amenities-container {
  display: flex;
  width: 100%;
  height: auto;
  padding: 30px 5%;
  background: #fff;
  gap: 20px;
}
.amenities-image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.amenities-images {
  display: flex;
  transition: transform 0.4s ease;
}

.amenities-images img {
  width: 100%;
  flex-shrink: 0;
  display: none;
  border-radius: 10px;
}

.amenities-images img.active {
  display: block;
}

.amenities-prev,
.amenities-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 14px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

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

.amenities-left {
  width: 100%;
}

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

.amenities-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.amenities-box:hover {
  transform: translateY(-5px);
}

.amenities-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.amenities-info {
  padding: 12px 15px;
}

.amenities-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.amenities-info p {
  font-size: 14px;
  color: #555;
  margin: 0 0 4px;
}

.amenities-info small {
  color: #777;
}

.amenities-price {
  margin-top: 6px;
  font-weight: bold;
}

.amenities-map {
  width: 30%;
  height: auto;
  position: sticky;
  top: 100px;
}

.amenities-map img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.wishlist-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.wishlist-popup {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wishlist-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

.wishlist-input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
}

.wishlist-hint {
  font-size: 12px;
  color: #888;
  margin: 4px 0 12px;
  text-align: left;
}

.wishlist-checkbox {
  display: flex;
  align-items: center;
  margin: 10px 0 20px;
  font-size: 13px;
  color: #444;
  text-align: left;
}

.wishlist-checkbox input {
  margin-right: 8px;
}

.wishlist-note {
  font-size: 12px;
  color: #717171;
  margin: 10px 0;
  text-align: left;
}

.wishlist-note a {
  color: #007bff;
  text-decoration: none;
}

.wishlist-continue {
  width: 100%;
  padding: 12px;
  background: #ff385c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s ease;
}

.wishlist-continue:hover {
  background: #e31b4d;
}

/* model popup   */
.wishlist {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.wishlist-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.wishlist-popup {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
}

.wishlist-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.wishlist-popup h3 {
  font-weight: bold;
  margin-bottom: 5px;
}

.wishlist-popup h2 {
  font-size: 22px;
  margin: 10px 0 20px;
}

.wishlist-country,
.wishlist-phone {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.wishlist-note {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.wishlist-note a {
  color: #000;
  text-decoration: underline;
}

.wishlist-continue {
  background: linear-gradient(to right, #ff385c, #bd1e59);
  color: #fff;
  border: none;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  margin-bottom: 20px;
}

.wishlist-divider {
  text-align: center;
  margin: 10px 0;
  color: #999;
  position: relative;
}

.wishlist-divider::before,
.wishlist-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #ddd;
}

.wishlist-divider::before {
  left: 0;
}

.wishlist-divider::after {
  right: 0;
}

.wishlist-divider span {
  background: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.wishlist-social {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.wishlist-social i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* detail page #################   */
.detail-container {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.detail-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.detail-gallery {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  height: 420px;
}

.detail-gallery-left {
  flex: 2;
  cursor: pointer;
}

.detail-gallery-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.detail-gallery-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.detail-gallery-right img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
}

.detail-gallery-right img:nth-child(1) {
  border-top-right-radius: 12px;
}

.detail-gallery-right img:nth-child(2) {
  border-top-left-radius: 0;
}

.detail-gallery-right img:nth-child(3) {
  border-bottom-left-radius: 0;
}

.detail-gallery-right img:nth-child(4) {
  border-bottom-right-radius: 12px;
}

.detail-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.detail-meta {
  margin-top: 20px;
}
.detail-meta h2 {
  margin: 10px 0;
  font-size: 18px;
}
.detail-meta p {
  margin: 0;
  color: #555;
}
.detail-rating {
  margin: 10px 0;
  font-size: 14px;
  color: #222;
}
.detail-host {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.detail-icon-list {
  margin: 20px 0;
}
.detail-icon-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 15px;
}
.detail-booking-box {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 20px;
  width: 350px;
  position: sticky;
  top: 20px;
  margin-left: 30px;
}
.detail-booking-box .detail-price {
  font-size: 16px;
  margin-bottom: 10px;
}
.detail-booking-box del {
  color: #888;
}
.detail-booking-box strong {
  color: #000;
}
.detail-inputs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}
.detail-inputs input,
.detail-inputs select {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.detail-reserve {
  background: #ff385c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}
.detail-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.detail-left {
  flex: 1 1 60%;
}
.detail-right {
  flex: 1 1 30%;
}
.detail-note {
  font-size: 13px;
  color: #555;
  margin-top: 10px;
}

.detail-section-title {
  font-size: 22px;
  margin-bottom: 20px;
}

.detail-sleep-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.detail-sleep-card {
  border-radius: 12px;
  overflow: hidden;
  background: #f7f7f7;
  width: 260px;
}

.detail-sleep-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.detail-sleep-card h4 {
  /* margin: 12px 16px 4px; */
  font-size: 16px;
}

.detail-sleep-card p {
  margin: 0 16px 16px;
  font-size: 14px;
  color: #555;
}

.detail-amenities {
  margin-top: 40px;
}

.detail-amenities-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.detail-amenities-grid ul {
  list-style: none;
  padding: 0;
  margin: 0 20px 0 0;
  flex: 1;
  min-width: 220px;
}

.detail-amenities-grid li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 15px;
  color: #333;
}

.detail-amenities-grid li i {
  margin-right: 12px;
  font-size: 16px;
  color: #222;
}

.detail-show-btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  font-weight: 600;
  cursor: pointer;
}

/* Gallery Popup Styles */
.gallery-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.gallery-popup img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 8px;
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 40px;
  cursor: pointer;
  user-select: none;
}

.gallery-prev {
  left: 20px;
}

.gallery-next {
  right: 20px;
}

/* Enquiry Form Styles */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.enquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.enquiry-form button {
  background: #0066cc;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}

.enquiry-form button:hover {
  background: #0052a3;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .detail-wrapper {
    flex-direction: column;
  }
  .detail-right {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .detail-booking-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .detail-gallery {
    flex-direction: column;
    height: auto;
  }

  .detail-gallery-left,
  .detail-gallery-right {
    flex: 1 1 100%;
    width: 100%;
  }

  .detail-gallery-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .detail-gallery-right img {
    height: 140px;
  }

  .detail-sleep-grid {
    flex-direction: column;
    gap: 16px;
  }

  .detail-sleep-card {
    width: 100%;
  }

  .detail-amenities-grid {
    flex-direction: column;
  }

  .detail-amenities-grid ul {
    margin-bottom: 20px;
  }

  .detail-container {
    padding: 16px;
  }

  .detail-title {
    font-size: 20px;
  }

  .detail-section-title {
    font-size: 18px;
  }

  .detail-meta h2 {
    font-size: 16px;
  }

  .detail-booking-box {
    padding: 16px;
  }

  .detail-price {
    font-size: 14px;
  }

  .gallery-popup img {
    max-width: 95%;
    max-height: 70%;
  }
}
