@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap");

:root {
  /* Brand Colors from GRDA Logo */
  --green-dark: #143b17;
  /* Deep forest green */
  --green-mid: #307b37;
  /* Mid tree green */
  --green-light: #64a346;
  /* Lighter grass green */
  --blue-river: #76c2f3;
  /* Illinois river blue */
  --blue-river-bg: #eaf6fe;
  /* Very light river blue background */
  --blue-river-txt: #0a7db9;
  /* Darker river blue text */
  --amber: #fad02c;
  /* Sun yellow */
  --amber-light: #fce278;
  /* Light sun yellow */
  --amber-dark: #d6ae15;
  /* Darker amber */

  --cream: #fdfbf7;
  /* Clean, warm background */
  --cream-dark: #f2f0de;
  /* Accent background */
  --brown: #5c4a3d;
  --text: #2a2825;
  /* Soft black/dark brown */
  --muted: #7c766c;
  /* Muted brown-grey */
  --white: #ffffff;

  /* Status Colors */
  --avail: #10b981;
  --unavail: #ef4444;
  --avail-bg: #d1fae5;
  --unavail-bg: #fee2e2;

  /* Modern UI Tokens */
  --shadow-sm: 0 4px 12px rgba(20, 59, 23, 0.04);
  --shadow-md: 0 12px 28px rgba(20, 59, 23, 0.08);
  --shadow-lg: 0 24px 50px rgba(20, 59, 23, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --transition: all 500ms ease;
}

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

body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif !important;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

span,
b,
p,
strong,
em,
label,
input,
textarea,
button,
select,
ul li,
ol li,
ul li a,
sub,
sup,
samp,
.form-control,
input,
select,
table tr th,
table tr td,
button,
a {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif !important;
}

#dynamic_page_contents {
  margin: 0;
}

/* ── MAIN HEADER ── */
.main-header {
  background: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 24px;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}

.logo-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header-logo-text {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.header-logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.nav-item-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.25;
}

.nav-item-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.cart-btn {
  background: var(--amber) !important;
  color: var(--text) !important;
  box-shadow: 0 4px 15px rgba(250, 208, 44, 0.25);
}

.cart-btn:hover {
  background: var(--amber-light) !important;
  box-shadow: 0 8px 25px rgba(250, 208, 44, 0.35);
  transform: translateY(-2px);
}

.cart-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
}

/* ── PAGES ── */
.page {
  display: none;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ── HERO BANNER ── */
.hero {
  background: url("https://images.unsplash.com/photo-1504280390367-361c6d9f38f4?auto=format&fit=crop&w=1920&q=80")
    center center / cover no-repeat;
  color: var(--white);
  padding: 140px 24px 95px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 59, 23, 0.85) 0%,
    rgba(48, 123, 55, 0.75) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.95;
  max-width: 680px;
  margin: 0 auto 48px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ── RENTMY HEADER POLISH ── */

.rentmy-header-wrap .nav-submenu {
  position: absolute;
  min-width: 320px;
  height: auto;
  padding: 20px 0px;
  background-color: #fff;
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0 0;
  left: 0;
  right: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 99;
  top: 100%;
  text-align: left;
  border-top: 2px solid #9c5a36;
}

@media (max-width: 991px) {
  .rentmy-header
    .rentmy-menu-header
    .rentmy-menu-area
    .rentmy-menu
    .rentmy-nav-manu {
    display: none;
    position: fixed;
    left: 50%;
    top: 86px;
    margin: 0 auto;
    width: 85%;
    transform: translateX(-50%);
    background-color: #fff;
    box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.08);
    border-top: 1px solid var(--linecolor-primary);
    z-index: 9;
    overflow: hidden;
    border-radius: 6px;
  }

  .footer-carticon path {
    stroke: var(--green-dark) !important;
  }

  .rentmy-header-wrap .RentMyMiniCart .count,
  .rentmy-header-wrap .rentmy-mobile-device .count {
    top: -10px !important;
  }

  .rm-desktop-search-bar,
  .rm-desktop-sidebar-menu {
    display: none !important;
  }
}

.rm-desktop-user-bar:hover .nav-submenu {
  visibility: visible;
  opacity: 1;
  transform: perspective(600px) rotateX(0);
}

.rentmy-header-wrap {
  position: relative;
  z-index: 3000;
}

.rentmy-header-wrap .rentmy-menu-header {
  background:
    linear-gradient(
      135deg,
      rgba(253, 251, 247, 0.98) 0%,
      rgba(242, 240, 222, 0.96) 100%
    ),
    var(--white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(20, 59, 23, 0.08);
  box-shadow: 0 20px 40px rgba(20, 59, 23, 0.08);
  height: 74px;
}

/* .rentmy-header-wrap .rentmy-menu-header::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid) 0%, var(--amber) 55%, var(--blue-river) 100%);
  opacity: 0.9;
} */

.rentmy-header-wrap .rentmy-menu-header .container,
.rentmy-header-wrap .rentmy-menu-header .container-inner,
.rentmy-header-wrap .rentmy-menu-header .row {
  height: 100%;
}

.rentmy-header-wrap .logo-area,
.rentmy-header-wrap .rentmy-menu-area {
  display: flex;
  align-items: center;
  margin-left: auto;
  height: 100%;
}

.rentmy-header
  .rentmy-menu-header
  .rentmy-menu-area
  .rentmy-menu
  .rentmy-nav-manu
  ul {
  height: 100%;
}

.rentmy-header-wrap .rentmy-logo-area {
  display: flex;
  align-items: center;
  height: 100%;
}

.rentmy-header-wrap .rentmy-logo-area a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 22px;
}

.rentmy-header-wrap #RENTMY_STORE_LOGO {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.rentmy-header-wrap .rentmy-menu {
  width: 100%;
}

.rentmy-header-wrap .rentmy-nav-manu > ul,
.rentmy-header-wrap .rentmy-nav-manu-desktop > ul,
.rentmy-header-wrap #RENTMY_DYNAMIC_MAIN_MENU_UL {
  gap: 10px;
  justify-content: flex-end;
  margin-bottom: 0;
}

.rentmy-header-wrap .rentmy-nav-manu ul li {
  margin: 0;
}

.rentmy-header-wrap .rentmy-nav-manu ul li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.1 !important;
  padding: 12px 18px !important;
  border-radius: 999px;
  color: var(--green-dark) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

/* .rentmy-header-wrap .rentmy-nav-manu ul li.menu-item>a:hover,
.rentmy-header-wrap .rentmy-nav-manu ul li.menu-item:hover>a,
.rentmy-header-wrap .rentmy-nav-manu ul li>a.rentmy-active-menu {
  color: var(--green-dark) !important;
  background: rgba(20, 59, 23, 0.08);
} */

.rentmy-header-wrap .rm-desktop-user-bar > a,
.rentmy-header-wrap .rm-desktop-wishlist-bar > a,
.rentmy-header-wrap .rm-desktop-cart-bar > a,
.rentmy-header-wrap .rentmy-mobile-device ul li > a {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0 !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 59, 23, 0.1);
  box-shadow: 0 10px 24px rgba(20, 59, 23, 0.08);
}

.rentmy-header-wrap .rm-desktop-cart-bar > a {
  width: auto;
  min-width: 48px;
  padding: 0 14px !important;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  );
  border-color: transparent;
}

.rentmy-header-wrap .rm-desktop-cart-bar > a i,
.rentmy-header-wrap .rm-desktop-cart-bar > a .icon-area {
  color: var(--white);
}

.rentmy-header-wrap .rentmy-nav-manu .icon-area,
.rentmy-header-wrap .rentmy-mobile-device .icon-area {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rentmy-header-wrap .rm-desktop-user-bar i,
.rentmy-header-wrap .rm-cart-bar i,
.rentmy-header-wrap .rentmy-mobile-device i {
  font-size: 18px !important;
  margin: 0 !important;
}

.rentmy-header-wrap .RentMyWishlistCounter .count,
.rentmy-header-wrap .RentMyMiniCart .count,
.rentmy-header-wrap .rentmy-mobile-device .count {
  position: absolute;
  top: -8px;
  right: -9px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--amber);
  color: var(--text);
  border: 2px solid var(--white);
  box-shadow: 0 8px 18px rgba(214, 174, 21, 0.28);
}

.rentmy-header-wrap .RentMyWishlistCounter .count span,
.rentmy-header-wrap .RentMyMiniCart .count span,
.rentmy-header-wrap .rentmy-mobile-device .count span {
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.rentmy-header-wrap .nav-submenu {
  min-width: 240px !important;
  margin-top: 12px;
  padding: 12px !important;
  border: 1px solid rgba(20, 59, 23, 0.08) !important;
  border-top: 3px solid var(--green-mid) !important;
  border-radius: 18px;
  box-shadow: 0 24px 45px rgba(20, 59, 23, 0.14);
}

.rentmy-header-wrap .nav-submenu ul {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
}

.rentmy-header-wrap .nav-submenu ul li {
  width: 100%;
}

.rentmy-header-wrap .nav-submenu ul li a {
  border: 0 !important;
  border-radius: 12px;
  line-height: 1.35 !important;
  padding: 12px 14px !important;
  color: var(--text) !important;
  font-weight: 600 !important;
  width: 100%;
  height: auto;
  justify-content: flex-start;
}

.rentmy-header-wrap .nav-submenu ul li a:hover {
  background: rgba(20, 59, 23, 0.06);
  color: var(--green-dark) !important;
}

.rentmy-header-wrap .RentMyMiniCart .RentMyCartBody {
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(20, 59, 23, 0.08);
  box-shadow: 0 24px 45px rgba(20, 59, 23, 0.14);
}

.rentmy-header-wrap .RentMyMiniCart .RentMyTopArrow {
  color: var(--white);
}

@media (max-width: 991px) {
  .rentmy-header-wrap .rentmy-menu-header {
    height: 86px;
  }

  .rentmy-header-wrap .rentmy-logo-area a {
    padding: 8px 14px;
    border-radius: 18px;
  }

  .rentmy-header-wrap #RENTMY_STORE_LOGO {
    max-height: 46px;
  }

  .rentmy-header-wrap .rentmy-mobile-device ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
  }

  .rentmy-header-wrap .rentmy-mobile-device ul li {
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 767px) {
  main.position-relative {
    padding-top: 0px;
  }

  .rentmy-header
    .rentmy-menu-header
    .rentmy-menu-area
    .rentmy-menu
    .rentmy-nav-manu {
    top: 78px !important;
  }

  .rentmy-header-wrap .rentmy-menu-header {
    height: 78px;
  }

  .rentmy-header-wrap .logo-area {
    padding-right: 0;
  }

  .rentmy-header-wrap .rentmy-menu-area {
    justify-content: flex-end;
  }

  .rentmy-header-wrap .rentmy-mobile-device ul {
    gap: 6px;
  }

  .rentmy-header-wrap .rm-desktop-user-bar > a,
  .rentmy-header-wrap .rm-desktop-wishlist-bar > a,
  .rentmy-header-wrap .rm-desktop-cart-bar > a,
  .rentmy-header-wrap .rentmy-mobile-device ul li > a {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
  }

  .rentmy-header-wrap .rm-desktop-cart-bar > a {
    padding: 0 12px !important;
  }

  .rentmy-header-wrap .rm-desktop-user-bar i,
  .rentmy-header-wrap .rm-cart-bar i,
  .rentmy-header-wrap .rentmy-mobile-device i {
    font-size: 16px !important;
  }
}

.hero-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px 12px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.filter-item {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 8px 20px;
  gap: 12px;
}

.filter-icon {
  width: 22px;
  height: 22px;
  color: var(--green-mid);
  flex-shrink: 0;
}

.filter-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
  flex-shrink: 0;
}

.filter-item.date-item {
  min-width: 200px;
}

.filter-item.date-item input {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.filter-item input,
.filter-item select {
  width: 100%;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  background: transparent;
  color: var(--text);
  padding: 8px 0;
  cursor: pointer;
  margin: 0;
}

.filter-item input::placeholder {
  color: var(--muted);
  font-weight: 500;
}

.filter-item select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Ccircle cx='8' cy='14' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='12' cy='14' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='16' cy='14' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='8' cy='18' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='12' cy='18' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='16' cy='18' r='1' fill='%23707070' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 18px;
  padding-right: 24px;
}

/* ── LISTING LAYOUT ── */
.listing-wrapper {
  display: flex;
  width: 100%;
  margin: 0;
}

.parks-list-wrap {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  padding: 32px 32px 40px;
  gap: 24px;
  min-width: 0;
}

.parks-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Scrollbar styling */
.parks-list::-webkit-scrollbar {
  width: 8px;
}

.parks-list::-webkit-scrollbar-track {
  background: transparent;
}

.parks-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.parks-list::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

.map-panel {
  flex: 0 0 50%;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  background:
    radial-gradient(
      circle at top left,
      rgba(118, 194, 243, 0.28),
      transparent 32%
    ),
    linear-gradient(180deg, #edf7fb 0%, #dceee1 100%);
  border-left: 1px solid rgba(20, 59, 23, 0.08);
  overflow: hidden;
}

.map-search-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(140px, 0.8fr) auto;
  gap: 12px;
  align-items: end;
  padding: 18px !important;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 59, 23, 0.08);
  box-shadow: 0 20px 38px rgba(20, 59, 23, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
}

.map-search-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.map-search-field label {
  font-size: 11px;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.map-search-field input,
.map-search-field select {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(20, 59, 23, 0.12);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(253, 251, 247, 0.96),
    rgba(255, 255, 255, 1)
  );
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.map-search-field input:focus,
.map-search-field select:focus {
  border-color: rgba(48, 123, 55, 0.34);
  box-shadow: 0 0 0 4px rgba(100, 163, 70, 0.12);
}

.map-search-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23143B17' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.search-clear-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 8px;
}

.search-clear-btn:hover {
  background: var(--cream-dark);
  color: var(--text);
}

.map-search-btn {
  min-width: 132px;
  height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 24px;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  );
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
}

#mainMap {
  width: 100%;
  height: 100%;
}

#mainMap .leaflet-control-zoom {
  border: none;
  box-shadow: 0 18px 36px rgba(20, 59, 23, 0.14);
  overflow: hidden;
  border-radius: 18px;
}

#mainMap .leaflet-control-zoom a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: none;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.94);
  transition: var(--transition);
}

#mainMap .leaflet-control-zoom a:hover {
  background: var(--green-dark);
  color: var(--white);
}

#mainMap .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  border-radius: 12px 0 0 0;
  padding: 6px 10px;
}

.rm-map-marker-wrap {
  background: transparent;
  border: 0;
}

.leaflet-zoom-level-display {
  background: #fff;
  border-top: none;
  border-radius: 4px;
  width: 26px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  padding: 5px 8px;
  line-height: 1;
  pointer-events: none;
  transform: translateX(6px);
}

.map-back-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  font-size: 13px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: background 0.15s;
}

.map-back-btn:hover {
  background: #f0f0f0;
}

.rm-asset-marker {
  width: 30px;
  height: 30px;
  background: #fff;
  /* border: 2px solid #c0392b; */
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #c0392b;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.rm-asset-marker--reserved {
  background: #f0f0f0;
  color: #aaa;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.rm-map-popup-reserved {
  width: 100%;
  padding: 10px 0 2px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: #c0392b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rm-map-marker {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.rm-map-marker-ring {
  display: none;
}

.rm-map-marker-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.35));
}

.rm-map-marker-pin svg {
  width: 32px;
  height: 42px;
}

.rm-map-marker.is-park .rm-map-marker-pin svg {
  color: #2b7a43;
}

.rm-map-marker.is-paa .rm-map-marker-pin svg {
  color: #0a7db9;
}

.leaflet-marker-icon:hover .rm-map-marker,
.leaflet-marker-icon:focus .rm-map-marker {
  transform: translateY(-3px);
}

.leaflet-popup.rm-map-popup-shell .leaflet-popup-content-wrapper {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 24px;
  position: relative;
  z-index: 1200 !important;
}

.map-panel .leaflet-popup-pane,
.map-panel .leaflet-popup {
  z-index: 1200 !important;
}

.map-panel .leaflet-map-pane,
.map-panel .leaflet-pane,
.map-panel .leaflet-top,
.map-panel .leaflet-bottom {
  z-index: auto;
}

.leaflet-popup.rm-map-popup-shell .leaflet-popup-content {
  margin: 0;
  width: 292px !important;
}

.leaflet-popup.rm-map-popup-shell .leaflet-popup-tip-container {
  margin-top: -2px;
  margin-left: 0;
  z-index: 99999;
}

.leaflet-popup.rm-map-popup-shell .leaflet-popup-tip {
  background: #eee;
  box-shadow: none;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: calc(50% - 19px);
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.rm-map-popup-card {
  background:
    radial-gradient(
      circle at top right,
      rgba(118, 194, 243, 0.2),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(253, 251, 247, 0.98), rgba(255, 255, 255, 1));
  border: 1px solid rgba(20, 59, 23, 0.08);
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(20, 59, 23, 0.14);
  padding: 16px;
  width: 100%;
  overflow: hidden;
}

.rm-map-popup-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  gap: 8px;
  margin-bottom: 10px;
}

.rm-map-popup-badge,
.rm-map-popup-water {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.rm-map-popup-badge.is-park {
  background: rgba(20, 59, 23, 0.1);
  color: var(--green-dark);
}

.rm-map-popup-badge.is-paa {
  background: rgba(10, 125, 185, 0.12);
  color: var(--blue-river-txt);
}

.rm-map-popup-water {
  background: var(--blue-river-bg);
  color: var(--blue-river-txt);
  letter-spacing: 0.03em;
  text-transform: none;
}

.rm-map-popup-title {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  word-break: break-word;
}

.rm-map-popup-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 10px 0 14px;
  overflow-wrap: anywhere;
}

.rm-map-popup-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
  padding: 4px 0;
}

.rm-map-popup-meta-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 59, 23, 0.08);
}

.rm-map-popup-meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rm-map-popup-meta-item:first-child {
  padding-top: 0;
}

.rm-map-popup-meta-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex: 1 1 110px;
}

.rm-map-popup-meta-value {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  text-align: right;
  flex: 1 1 120px;
  overflow-wrap: anywhere;
}

.rm-map-popup-stat {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(250, 252, 248, 0.92) 100%
  );
  border: 1px solid rgba(20, 59, 23, 0.1);
  border-radius: 18px;
  padding: 13px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 86px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.rm-map-popup-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  opacity: 0.95;
}

.rm-map-popup-stat:first-child::before {
  background: linear-gradient(90deg, var(--green-mid) 0%, #8ccf68 100%);
}

.rm-map-popup-stat:last-child::before {
  background: linear-gradient(
    90deg,
    var(--blue-river-txt) 0%,
    var(--blue-river) 100%
  );
}

.rm-map-popup-stat strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--green-dark);
  letter-spacing: -0.01em;
}

.rm-map-popup-stat span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rm-map-popup-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  );
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(20, 59, 23, 0.18);
  transition: var(--transition);
}

.rm-map-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 32px rgba(20, 59, 23, 0.24);
}

.rm-map-popup-btn-secondary {
  background: linear-gradient(135deg, #2c6e8a 0%, #3a8fb5 100%);
  box-shadow: 0 14px 24px rgba(20, 80, 110, 0.18);
  margin-bottom: 8px;
}

.rm-map-popup-btn-secondary:hover {
  box-shadow: 0 22px 32px rgba(20, 80, 110, 0.24);
}

.rm-popup-asset-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0 10px;
  max-height: 180px;
  overflow-y: auto;
}

.rm-popup-asset-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  background: #f7f7f7;
  border-radius: 6px;
  font-size: 12px;
}

.rm-popup-asset-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #c0392b;
  color: #fff;
  border-radius: 3px;
  font-weight: 700;
  flex-shrink: 0;
}

.rm-popup-asset-name {
  font-weight: 600;
  color: #222;
  flex: 1;
}

.rm-popup-asset-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 6px;
}

/* ── PARK CARD (CUSTOMIZED UI) ── */
.rm-park-list-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  align-items: stretch;
  min-height: 240px;
}

.rm-park-list-item {
  position: relative;
}

.rm-pin-icon {
  position: absolute;
  top: 23px;
  right: 8px;
  z-index: 10;
  cursor: pointer;
  line-height: 1;
  display: flex;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
  transition: transform 0.15s ease;
}

.rm-pin-icon:hover {
  transform: scale(1.2);
}

.rm-park-list-item:hover {
  transform: translateY(-4px);
}

.rm-park-list-item.highlighted {
  border-color: var(--amber);
  box-shadow:
    0 0 0 2px var(--amber),
    var(--shadow-md);
}

.rm-park-cover-wrapper {
  position: relative;
  width: 280px;
  min-width: 280px;
  overflow: hidden;
}

.rm-park-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--cream-dark);
}

.rm-park-list-item:hover .rm-park-cover-img {
  transform: scale(1.05);
}

.rm-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rm-tag-park {
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
}

.rm-tag-paa {
  background: rgba(22, 163, 74, 0.9);
  color: var(--white);
}

.rm-park-content {
  padding: 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  overflow: auto;
}

.rm-park-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rm-park-heading {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.rm-water-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-river-txt);
  background: var(--blue-river-bg);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.rm-amenities-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: auto;
}

.rm-amenity {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream-dark);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.rm-park-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--cream-dark);
  padding-top: 24px;
}

.rm-pricing-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rm-prices-group {
  display: flex;
  gap: 24px;
}

.rm-price-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rm-price-amount {
  font-size: 24px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.rm-price-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rm-availability-info {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.rm-availability-info p {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0;
}

.rm-action-book {
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  );
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(250, 208, 44, 0.2);
  flex-shrink: 0;
}

.rm-action-book:hover {
  /* background: var(--amber-light); */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(250, 208, 44, 0.3);
}

.RentMyWrapper .RentMyBtn,
.RentMyMiniCart .MiniContinueShoppingBtn,
.RentMyMiniCart .MiniCartBtn {
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  ) !important;
}
.clear-cart {
  background-color: var(--unavail) !important;
}
.RentMyBtnBlack:disabled {
  background: linear-gradient(135deg, #acacac 0%, #acacac 100%) !important;
}

#WIDGET_START_DATE,
#WIDGET_END_DATE {
  position: relative;
}

#WIDGET_START_DATE::after,
#WIDGET_END_DATE::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23707070' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3Ccircle cx='8' cy='14' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='12' cy='14' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='16' cy='14' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='8' cy='18' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='12' cy='18' r='1' fill='%23707070' stroke='none'/%3E%3Ccircle cx='16' cy='18' r='1' fill='%23707070' stroke='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── BOOKING MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 59, 23, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.3s ease forwards;
}

.modal-overlay.open .modal {
  display: block;
}
.RentMyOrderDetails {
  z-index: 9999;
}

.modal-overlay .modal {
  background: var(--white) !important;
  border-radius: var(--radius-lg);
  width: 100%;
  height: auto;
  max-width: 760px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.1s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-hero {
  height: 220px;
  background: var(--green-mid);
  position: relative;
  overflow: hidden;
}

.modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 59, 23, 0.8) 0%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px 32px;
}

.modal-hero-overlay h2 {
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--unavail);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  line-height: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
  z-index: 30;
  pointer-events: auto;
  touch-action: manipulation;
}

.modal-close:hover {
  transform: scale(1.05);
}

.modal-body {
  padding: 32px;
  max-height: 60vh;
  overflow-y: auto;
}

/* Date picker */
.date-row {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.date-field {
  flex: 1;
  min-width: 180px;
}

.date-field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.date-field input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  color: var(--text);
  transition: var(--transition);
  background: var(--cream);
}

.date-field input:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(48, 123, 55, 0.1);
}

.booking-summary {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-summary span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.booking-summary strong {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 800;
}

/* Type toggle */
.type-toggle {
  display: flex;
  background: var(--cream-dark);
  padding: 6px;
  border-radius: var(--radius-md);
  gap: 6px;
  margin-bottom: 28px;
}

.type-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  color: var(--muted);
}

.type-btn .rm-site-type-icon {
  flex-shrink: 0;
}

.type-btn span:not(.rm-site-type-icon) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.type-btn em {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
  opacity: 0.72;
}

.type-btn.active {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

.type-btn:not(.active):hover {
  color: var(--text);
}

/* Duration / Start Time pill selectors */
.rm-pill-selector-section {
  margin-bottom: 18px;
}

.rm-pill-selector-label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.rm-pill-selector-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rm-pill {
  padding: 10px 20px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}

.rm-pill:hover {
  border-color: #aaa;
}

.rm-pill.active {
  border-color: #2b7a43;
  background: #2b7a43;
  color: #fff;
}

/* Availability grid */
.avail-section h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.avail-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.avail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.site-btn {
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  border: 2px solid;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: var(--transition);
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.rm-site-btn-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.rm-site-btn-icon-wrap:hover {
  transform: scale(1.12);
  background: rgba(20, 59, 23, 0.08);
}

.rm-site-btn-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.site-btn.avail {
  border-color: var(--avail);
  color: var(--text);
}

.site-btn.unavail {
  border-color: var(--unavail-bg);
  background: var(--unavail-bg);
  color: var(--unavail);
  cursor: not-allowed;
  opacity: 0.7;
}

.site-btn.reserved,
#AssetAvalilabilityAreaInModal .site-btn.reserved {
  border-color: #d4d4d4;
  background: #f5f5f5;
  color: #bbb;
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
}

.rm-site-reserved-badge {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #c0392b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-btn.selected {
  border-color: var(--amber-dark);
  background: var(--amber-light);
  color: var(--text);
  box-shadow: 0 4px 12px rgba(250, 208, 44, 0.3);
  transform: translateY(-2px);
}

.site-btn.avail:not(.selected):hover {
  border-color: var(--green-mid);
  background: var(--avail-bg);
  transform: translateY(-2px);
}

.add-cart-bar {
  background:
    radial-gradient(
      circle at top right,
      rgba(118, 194, 243, 0.14),
      transparent 34%
    ),
    linear-gradient(135deg, #143b17 0%, #1f5124 58%, #112f14 100%);
  border-radius: 24px;
  padding: 18px 18px 18px 20px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 24px 40px rgba(20, 59, 23, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.add-cart-bar .sel-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.74);
}

.add-cart-bar .sel-info-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(252, 226, 120, 0.9);
}

.add-cart-bar .sel-info strong {
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.add-cart-bar .sel-info-meta {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.add-cart-bar .sel-info-total {
  color: var(--amber-light);
  font-weight: 800;
}

.rm-site-type-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  background: rgba(20, 59, 23, 0.08);
  border: 1px solid rgba(20, 59, 23, 0.08);
}

.rm-site-type-icon svg {
  width: 18px;
  height: 18px;
}

.rm-site-type-icon.is-tent {
  background: rgba(48, 123, 55, 0.12);
  color: var(--green-dark);
}

.rm-site-type-icon.is-rv {
  background: rgba(10, 125, 185, 0.12);
  color: var(--blue-river-txt);
}

.type-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.type-btn.active .rm-site-type-icon {
  background: rgba(20, 59, 23, 0.1);
  border-color: rgba(20, 59, 23, 0.1);
}

.site-btn .rm-site-type-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  cursor: pointer;
  touch-action: manipulation;
}

.site-btn .rm-site-type-icon svg {
  width: 17px;
  height: 17px;
}

.site-btn.selected .rm-site-type-icon {
  background: rgba(255, 255, 255, 0.5);
}

.add-cart-bar .sel-info .rm-site-type-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.add-cart-bar .sel-info .rm-site-type-icon svg {
  width: 16px;
  height: 16px;
}

.btn-addcart {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
  color: var(--text);
  border: none;
  font-family: inherit;
  padding: 16px 28px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
  min-width: 180px;
  align-self: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 16px 30px rgba(250, 208, 44, 0.22);
}

.btn-addcart:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(250, 208, 44, 0.28);
}

.btn-addcart:disabled {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.44);
  box-shadow: none;
  cursor: not-allowed;
}

/* ── CART PAGE ── */
.page-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
}

.page-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 32px;
}

.cart-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.cart-empty .empty-icon {
  font-size: 72px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.cart-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  flex-wrap: wrap;
  transition: var(--transition);
}

.cart-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ci-icon {
  font-size: 36px;
  background: var(--cream);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.ci-info {
  flex: 1;
  min-width: 200px;
}

.ci-name {
  font-weight: 800;
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.ci-detail {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.ci-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-align: right;
  line-height: 1;
  margin-bottom: 6px;
}

.ci-nights {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}

.btn-remove {
  background: transparent;
  color: var(--unavail);
  border: 2px solid var(--unavail-bg);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  margin-left: auto;
}

.btn-remove:hover {
  background: var(--unavail-bg);
}

.cart-summary {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.summary-row:last-child {
  border: none;
  font-size: 24px;
  font-weight: 800;
  color: var(--amber);
  margin-top: 8px;
  padding-bottom: 0;
}

.cart-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--cream-dark);
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--cream-dark);
}

.btn-primary {
  background: var(--amber);
  color: var(--text);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  text-align: center;
  box-shadow: 0 4px 16px rgba(250, 208, 44, 0.3);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(250, 208, 44, 0.4);
}

/* ── CHECKOUT PAGE ── */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 32px;
  align-items: start;
}

@media (max-width: 860px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: var(--transition);
}

.form-card:hover {
  box-shadow: var(--shadow-md);
}

.form-section-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  outline: none;
  color: var(--text);
  width: 100%;
  transition: var(--transition);
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(48, 123, 55, 0.1);
}

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

.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.form-divider {
  height: 1px;
  background: var(--cream-dark);
  margin: 28px 0;
}

.order-sidebar {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.order-sidebar h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  font-weight: 600;
}

.order-item:last-child {
  border: none;
}

.order-item small {
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.order-total {
  /* display: flex;
  justify-content: space-between; */
  font-weight: 800;
  font-size: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  color: var(--green-dark);
}

.notice-box {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #92400e;
  margin-top: 24px;
  line-height: 1.6;
}

/* ── CONFIRMATION PAGE ── */
.confirm-wrapper {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.confirm-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  transform: scale(0);
}

@keyframes scaleIn {
  to {
    transform: scale(1);
  }
}

.confirm-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.confirm-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 40px;
}

.confirm-ref {
  background: var(--green-dark);
  color: var(--amber);
  border-radius: var(--radius-md);
  padding: 24px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.confirm-ref small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.confirm-details {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  padding: 32px;
  text-align: left;
  margin-bottom: 32px;
}

.confirm-details h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream-dark);
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

.remind-box {
  background: var(--avail-bg);
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 40px;
}

.remind-box h4 {
  font-weight: 800;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--green-dark);
}

/* ── RESPONSIVE ── */
@media (max-width: 1224px) {
  .rm-park-bottom {
    flex-wrap: wrap;
  }
}
@media (max-width: 1024px) {
  .rm-park-list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .rm-park-cover-wrapper {
    width: 100%;
    min-width: 0;
    height: 180px;
    /* margin-bottom: 12px; */
  }
}
@media (max-width: 899px) {
  .Products---list--area {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .rm-park-list-item {
    width: 49%;
  }
  .RentMyMiniCart .RentMyCartBody {
    right: 0 !important;
    top: 60px !important;
    left: auto !important;
  }
  .RentMyMiniCart .RentMyTopArrow {
    top: -20px !important;
    right: 20px !important;
  }
}
@media (max-width: 900px) {
  .hero-filters {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 16px;
    gap: 8px;
  }

  .filter-item {
    width: 100%;
    padding: 0px 10px;
    /* background: var(--cream); */
    border-radius: var(--radius-sm);
    border: 1px solid #faf4f4;
  }
  .filter-item input,
  .filter-item select {
    font-size: 14px !important;
  }
  .filter-icon {
    width: 16px;
    height: 16px;
  }
  .filter-divider {
    display: none;
  }

  .hero-filters .map-search-btn {
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .listing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    height: auto;
  }

  .parks-list-wrap {
    flex: none;
    width: 100%;
    /* order: 2; */
    padding: 0;
  }

  .parks-list {
    width: 100%;
    padding: 0;
  }

  .map-panel {
    flex: none;
    order: 1;
    width: 100%;
    min-height: 520px;
    height: 500px;
    position: relative;
    top: auto;
    border: 1px solid rgba(20, 59, 23, 0.08);
    border-radius: 24px;
    border-left: 0;
    box-shadow: var(--shadow-md);
  }

  .map-search-card {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .map-search-guests {
    grid-column: span 1;
  }

  .map-search-btn {
    grid-column: span 1;
    width: 100%;
    min-width: 0;
  }
  .hero h1 {
    font-size: 36px;
  }
}
@media (max-width: 399px) {
  .rentmy-header-wrap .RentMyMiniCart .RentMyCartBody {
    width: 300px;
  }
}
.footer-carticon path {
  stroke: #fff;
}

@media (max-width: 600px) {
  .listing-wrapper {
    padding: 16px;
    gap: 16px;
  }
  .modal-body {
    padding: 20px;
  }

  .hero {
    padding: 65px 20px 22px;
    padding-top: 100px;
  }

  .hero h1,
  .hero > .hero-content > p {
    display: none;
  }

  .filter-divider {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .map-panel {
    min-height: 500px;
    border-radius: 20px;
  }

  .map-search-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }

  .map-search-guests,
  .map-search-btn {
    grid-column: auto;
  }

  .map-search-field label {
    font-size: 10px;
  }

  .map-search-field input,
  .map-search-field select {
    padding: 12px 13px;
    font-size: 13px;
    border-radius: 14px;
  }

  .map-search-btn {
    min-height: 42px;
    height: 42px;
    font-weight: 600;
  }

  .rm-park-cover-wrapper {
    width: 100%;
    height: 200px;
  }

  .rm-park-list-item {
    flex-direction: column;
  }

  .leaflet-popup.rm-map-popup-shell .leaflet-popup-content {
    width: min(260px, calc(100vw - 52px)) !important;
  }

  .rm-map-popup-card {
    padding: 14px;
    border-radius: 18px;
  }

  .rm-map-popup-badge,
  .rm-map-popup-water {
    width: 100%;
    justify-content: center;
    text-align: left;
    font-size: 9px;
    /* letter-spacing: 0.05em; */
  }

  .rm-map-popup-meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 6px;
  }

  .rm-map-popup-meta {
    padding-top: 0;
  }

  .rm-map-popup-meta-value {
    text-align: left;
  }

  .rm-map-popup-top {
    /* align-items: flex-start;
    flex-direction: column; */
  }

  .rm-map-popup-title {
    font-size: 18px;
    line-height: 1.2;
  }

  .rm-map-popup-desc {
    font-size: 12px;
    margin: 8px 0 12px !important;
  }

  .rm-map-popup-meta-label,
  .rm-map-popup-meta-value {
    width: 100%;
    flex: none;
  }

  .rm-map-popup-btn {
    padding: 11px 14px;
    font-size: 12px;
    min-height: 44px;
  }

  .rm-park-bottom {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }
  .date-row-wrapper {
    padding-bottom: calc(168px + env(safe-area-inset-bottom, 0px));
  }
  .add-cart-bar {
    padding: 16px;
    gap: 14px;
    position: fixed;
    bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
  }

  .add-cart-bar .sel-info strong {
    font-size: 16px;
  }

  .btn-addcart {
    width: 100%;
    min-width: 0;
  }

  .rm-action-book {
    justify-content: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .card-row {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-grid {
    gap: 24px;
  }

  .modal-hero {
    height: 160px;
  }

  .date-row {
    flex-direction: column;
    gap: 16px;
  }

  .footer-carticon path {
    stroke: #000;
  }
}
@media (max-width: 599px) {
  .Products---list--area {
    flex-direction: column;
  }
  .rm-park-list-item {
    width: 100%;
  }
  .modal-overlay {
    padding: 0;
  }
  .modal-overlay .modal {
    max-width: 100%;
    height: -webkit-fill-available;
    height: 100dvh;
    border-radius: 0;
    overscroll-behavior: none;
  }
  .modal-overlay .modal .modal-body {
    padding: 15px;
    max-height: calc(100dvh - 160px);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .modal-close {
    top: calc(14px + env(safe-area-inset-top, 0px));
    right: 14px;
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .modal-hero-overlay h2 {
    font-size: 24px;
  }
  .rm-park-content {
    padding: 20px 20px;
    width: 100%;
  }
  .rm-park-heading {
    font-size: 24px;
  }
  .rm-price-amount {
    font-size: 22px;
  }
  .rm-water-tag {
    padding: 5px 12px;
  }
  .rm-amenity {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1;
  }
  .rm-park-bottom {
    padding-top: 14px;
    gap: 8px;
  }
  .rm-action-book {
    padding: 12px 28px;
    font-weight: 700;
  }
  .rm-pill {
    padding: 8px 20px;
    border: 1px solid #ddd;
    font-size: 13px;
  }
  .date-row {
    margin-bottom: 10px;
  }
  .date-field input {
    padding: 10px 14px;
    font-size: 14px;
  }
  .rm-pill-selector-section {
    margin-bottom: 22px;
  }
  .booking-summary {
    margin-bottom: 16px;
  }
  .avail-legend {
    margin-bottom: 10px;
  }
  .site-btn {
    padding: 10px 6px;
  }
  .avail-section h3 {
    font-size: 16px;
  }
  .RentMyWrapperInpageCartWidget .SidebarInner .ButtonGroup {
    flex-direction: row !important;
    gap: 10px;
    padding: 10px 0;
  }
  .RentMyWrapperInpageCartWidget .SidebarInner .ButtonGroup .Button {
    margin: 0 !important;
    font-weight: 600 !important;
    font-size: 12px !important;
  }
  .RentMyWrapperInpageCartWidget .SidebarSummery .Button:last-child {
    margin-bottom: 0 !important;
  }
  .RentMyWrapperInpageCartWidget .SidebarSummery {
    padding: 0 12px !important;
    position: fixed;
    bottom: 10px;
  }
}

.rentmy-innerpage-overlay {
  position: relative;
  z-index: 99;
}

.rentmy-innerpage-banner {
  margin-top: 74px !important;
  background: #eee;
  background-image: url("https://images.pexels.com/photos/14025698/pexels-photo-14025698.jpeg");
  background-position: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.rentmy-innerpage-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.355);
}

.rentmy-header
  .rentmy-menu-header
  .rentmy-menu-area
  .rentmy-menu
  .rentmy-nav-manu
  ul
  li
  a {
  line-height: 1 !important;
}

.CartRemoveProduct {
  background-color: var(--unavail) !important;
}

.SidebarSummery .branded,
.SidebarSummery .branded:after,
#InpageCartWidgetLauncher .branded,
#InpageCartWidgetLauncher .branded:before {
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  ) !important;
}

.SideBarHeader .branded,
.SideBarHeader .branded:after {
  background: var(--green-dark) !important;
}

/* =============================================
   ORDER COMPLETE PAGE
   ============================================= */

.RentMyOrderCompleteWrapper {
  padding: 50px 0 80px;
}

/* ── Thank You heading ── */
.MessageTitle {
  text-align: center;
  padding: 40px 20px 30px;
}

.MessageTitle h1 {
  font-size: 52px;
  font-weight: 800;
  color: #213f60;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0;
}

.MessageTitle h1 span {
  display: block;
  font-size: 32px;
  font-weight: 400;
  color: #4585a5;
  letter-spacing: 0;
}

/* ── Three action boxes ── */
.OrderCompleteRow {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.OrderCompleteBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 2px solid #e8edf2;
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 170px;
  cursor: pointer;
  text-decoration: none;
  transition: all 500ms ease;
  box-shadow: 0 2px 12px rgba(33, 63, 96, 0.06);
}

.OrderCompleteBox:hover {
  border-color: #4585a5;
  box-shadow: 0 8px 28px rgba(69, 133, 165, 0.18);
  transform: translateY(-2px);
}

.OrderCompleteBox img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 0px;
}

.OrderCompleteBox h3 {
  font-size: 16px;
  font-weight: 700;
  color: #213f60;
  margin: 0;
  text-align: center;
}

/* ── Summary section wrapper ── */
.RentMySummaryWrapper {
  background: #f7f9fc;
  border-radius: 18px;
  border: 1px solid #e8edf2;
  padding: 32px 28px 28px;
}

/* ── Two-column layout ── */
.RentMySummaryWrapper > .container-fullwidth > .RentMyRow {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.RentMyColumn8 {
  flex: 1 1 0%;
  min-width: 0;
}

.RentMyColumn4 {
  width: 320px;
  flex-shrink: 0;
}

/* ── Order Summary title ── */
.RentOrderSummary .OrderSummaryTitle {
  font-size: 20px;
  font-weight: 700;
  color: #213f60;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e8edf2;
}

/* ── Cart / items table ── */
.RentOrderSummary .RentMyCartSummeryTable {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8edf2 !important;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(33, 63, 96, 0.05);
  margin-bottom: 18px;
}

.RentOrderSummary .RentMyCartSummeryTable thead tr th {
  background: var(--green-mid) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 13px 16px !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.RentOrderSummary .RentMyCartSummeryTable thead tr th:first-child {
  border-radius: 0 !important;
  width: 70px;
}

.RentOrderSummary .RentMyCartSummeryTable tbody tr td {
  padding: 14px 16px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #333 !important;
  border-bottom: 1px solid #f0f4f8 !important;
  vertical-align: middle;
}

.RentOrderSummary .RentMyCartSummeryTable tbody tr:last-child td {
  border-bottom: none !important;
}

.RentOrderSummary .RentMyCartSummeryTable tbody tr:hover td {
  background: #f7f9fc;
}

.RentOrderSummary .RentMyCartSummeryTable tbody tr td img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #e8edf2;
  background: #fafbfd;
  padding: 4px;
  display: block;
}

/* ── Optional Services table ── */
.RentOrderSummary .RentMyOptionalService {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8edf2 !important;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(33, 63, 96, 0.05);
}

.RentOrderSummary .RentMyOptionalService thead tr th {
  background: var(--green-mid) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 13px 16px !important;
  border: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.RentOrderSummary .RentMyOptionalService tbody tr td {
  padding: 12px 16px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #444 !important;
  border-bottom: 1px dotted #e8edf2 !important;
}

.RentOrderSummary .RentMyOptionalService tbody tr:last-child td {
  border-bottom: none !important;
}

.RentOrderSummary .RentMyOptionalService thead th:last-child {
  text-align: left !important;
}

/* ── Right summary card ── */
.RentOrderSummary .RentMyCartSummery {
  margin-top: 54px !important;
}

.RentOrderSummary .RentMyCartSummeryInner {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8edf2;
  box-shadow: 0 4px 20px rgba(33, 63, 96, 0.1);
  padding: 5px 20px 0px;
}

.RentOrderSummary .RentMySummaryDateRange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f6fb;
  border: 1px solid #d0e4ef;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: #4585a5;
  font-weight: 600;
  margin-bottom: 4px;
}

.RentOrderSummary .RentMyCartTotal {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #213f60 !important;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eef2f7;
  background: transparent !important;
}

.RentOrderSummary .RentMySummeryTable {
  width: 100%;
  border-collapse: collapse !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
  margin-bottom: 0 !important;
}

.RentOrderSummary .RentMySummeryTable tr td {
  color: #555 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-bottom: 1px solid #f0f4f8 !important;
}

.RentOrderSummary .RentMySummeryTable tr:last-child td {
  border-bottom: none !important;
  padding-top: 14px !important;
}

.RentOrderSummary .RentMySummeryTable tr:last-child td h5 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #213f60 !important;
  margin: 0;
}

.RentOrderSummary .RentMySummeryTable tr td:last-child {
  text-align: right;
  font-weight: 600 !important;
  color: #213f60 !important;
}

.RentOrderSummary .RentMySummeryTable tr td small {
  font-size: 13px !important;
}

/* ── Back button ── */
.RentOrderSummary .OrderDetailsBack {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e8edf2;
}

.RentOrderSummary .OrderDetailsBack button {
  border-radius: 8px;
  border: 2px solid #213f60;
  background: transparent;
  color: #213f60;
  font-size: 14px;
  font-weight: 700;
  height: 44px;
  padding: 0 28px;
  cursor: pointer;
  transition: all 200ms ease;
}

.OrderDetailsBack button:hover {
  background: #213f60;
  color: #fff;
}

/* ── After order footer ── */
.AfterOrderPageFooter {
  margin-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .RentMySummaryWrapper > .container-fullwidth > .RentMyRow {
    flex-direction: column;
  }

  .RentMyColumn4 {
    width: 100%;
  }

  .MessageTitle h1 {
    font-size: 40px;
  }

  .MessageTitle h1 span {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .RentMyOrderCompleteWrapper {
    padding: 30px 0 50px;
  }

  .MessageTitle h1 {
    font-size: 32px;
  }

  .MessageTitle h1 span {
    font-size: 20px;
  }

  .OrderCompleteBox {
    min-width: 140px;
    padding: 20px 18px;
  }

  .RentMySummaryWrapper {
    padding: 20px 14px 18px;
  }

  .OrderDetailsBack {
    justify-content: center;
  }

  .OrderDetailsBack button {
    width: 100%;
  }
}

/* contact us */
.contact-section {
  padding: 60px 20px;
}

.contact-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.contact-subtitle {
  font-size: 16px;
  color: #777;
  text-align: center;
  margin-bottom: 40px;
}

.contact-wrapper {
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 60px 30px rgba(0, 0, 0, 0.03);
}

.contact-info-box {
  background-color: #a9b4f042;
  padding: 30px;
  border-radius: 10px;
}

.contact-info-title {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.contact-info-desc {
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 70px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

.contact-info-item a:hover {
  color: #00a8ec;
}

.contact-info-icon {
  font-size: 18px;
  margin-right: 12px;
}

.contact-socials a {
  margin-right: 12px;
  color: #333;
  font-size: 18px;
}

.contact-form {
  padding: 60px 50px;
}

.contact-form label {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

.contact-form .form-control {
  border: none !important;
  border-bottom: 1px solid #8d8d8d !important;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  color: #8d8d8d;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: #007bff;
}

.contact-form textarea {
  resize: none;
}

.contact-form textarea.form-control {
  height: 50px;
}

.contact-form-shape {
  position: absolute;
  left: 42%;
  transform: translateX(-50%);
  bottom: -50px;
}

.send-btn {
  color: white;
  padding: 15px 48px;
  border: none;
  transition: 0.3s ease;
  border-radius: 5px;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-mid) 100%
  );
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.12);
}
.RentMyCartWrapper .RentMyDatePicker input {
  padding: 0 10px;
  border-radius: 4px;
}
@media (max-width: 999px) {
  .rentmy-innerpage-banner {
    margin-top: 85px !important;
    height: 150px !important;
  }
}

@media (max-width: 767px) {
  .rentmy-innerpage-banner {
    margin-top: 78px !important;
  }
  .contact-info-desc {
    margin-bottom: 30px;
  }

  .contact-info-title {
    font-size: 30px;
  }

  .contact-info-item {
    margin-bottom: 20px;
  }

  .contact-info-icon {
    flex-shrink: 0;
  }
  .contact-form-shape {
    display: none;
  }
  .contact-form {
    padding: 30px;
  }
  .RentMyCartWrapper .RentMyDatePicker input {
    font-size: 14px;
  }
  .clear-cart {
    padding: 5px 20px !important;
    font-size: 14px !important;
  }
  .RentMyWrapperInpageCartWidget #Sidebar {
    z-index: 9999;
  }
  .RentMyCheckoutWrapper {
    padding-top: 0;
  }
  .rentmy-innerpage-banner-order-complete {
    margin-top: 78px !important;
  }
}

@media (max-width: 399px) {
  .contact-info-box {
    padding: 20px;
  }

  .send-btn {
    padding: 12px 25px;
  }
  .contact-form {
    padding: 20px;
  }
}

.RentMyCartTableWrapper .RentMySummeryTable {
  border: 1px solid #e8edf2 !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 8px rgba(33, 63, 96, 0.05) !important;
  border-radius: 6px;
  overflow: hidden;
}

.rm-camp-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rm-camp-icon {
  font-size: 18px;
  line-height: 1;
}

.rm-camp-label {
  font-size: 11px;
  font-weight: 600;
  background: #fff;
  padding: 1px 5px;
  border-radius: 6px;
  margin-top: 2px;
  border: 1px solid #ccc;
}

.rm-camp-marker--reserved .rm-camp-icon {
  opacity: 0.4;
}

.rm-camp-marker--reserved .rm-camp-label {
  background: #eee;
  color: #999;
}

@keyframes rm-marker-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

.rm-camp-marker.highlighted .rm-camp-icon {
  animation: rm-marker-pulse 0.5s ease 3;
}

.rm-camp-marker.highlighted .rm-camp-label {
  background: #f7c948;
  border-color: #d48806;
  color: #1f2933;
  font-weight: 800;
}
.CartFooter .CartTotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.RentMyWrapperInpageCartWidget .CartItemsArea ul.CartItems .Item {
  align-items: center;
}
.RentMyWrapperInpageCartWidget
  .CartItemsArea
  ul.CartItems
  .Item
  img.bq-product-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid #e8edf2;
}
.RentMyWrapperInpageCartWidget
  .CartItemsArea
  ul.CartItems
  .Item
  .RemoveProduct {
  position: static;
  opacity: 1;
  color: oklch(0.55 0.008 90);
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.QuantityArea {
  display: inline-flex;
  align-items: center;
  border: 1px solid oklch(0.92 0.004 90);
  border-radius: 6px;
  background: rgb(255, 255, 255);
  overflow: hidden;
  height: 26px;
}
.RentMyWrapperInpageCartWidget .CartItemsArea ul.CartItems .QuantityToggler {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  background: transparent;
  cursor: not-allowed;
  color: oklch(0.7 0.006 90);
  padding: 0px;
  border-radius: 6px;
  transition:
    background 120ms,
    color 120ms;
}

.RentMyWrapperInpageCartWidget .CartItemsArea ul.CartItems .Quantity {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: oklch(0.2 0.01 90);
  font-variant-numeric: tabular-nums;
  border-left: 1px solid oklch(0.95 0.003 90);
  border-right: 1px solid oklch(0.95 0.003 90);
  padding: 5px 4px;
  margin: 0;
}
.RentMyWrapperInpageCartWidget
  .CartItemsArea
  ul.CartItems
  .Item
  .CartLine
  .ItemName {
  font-size: 15px;
  font-weight: 600;
  color: oklch(0.2 0.01 90);
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.RentMyWrapperInpageCartWidget .CartItemsArea ul.CartItems .Item .CartLine {
  margin-left: 14px;
}
.CartFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.CartItemVariantName small {
  font-size: 11px;
  font-weight: 600;
  color: oklch(0.55 0.008 90);
  margin-top: 3px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.RentMyWrapperInpageCartWidget #Sidebar {
  width: 380px;
}
.RentMyWrapperInpageCartWidget .CartItemsArea ul.CartItems .Item {
  background: rgb(255, 255, 255);
  border: 1px solid oklch(0.96 0 0);
  border-radius: 14px;
  box-shadow:
    oklch(0.2 0.02 150 / 0.02) 0px 1px 0px,
    oklch(0.2 0.02 150 / 0.05) 0px 6px 18px;
  padding: 14px;
  align-items: center;
  transition:
    box-shadow 160ms,
    transform 160ms;
}

.modal-close > span,
.mobile-map-close-btn > span {
  pointer-events: none;
}

.mobile-map-btn {
  display: none;
}

.mobile-map-close-btn {
  display: none;
}

@media (max-width: 600px) {
  .listing-wrapper .map-panel {
    display: none;
  }

  .map-back-btn{
    margin-right: 56px;
    margin-top: 10px;
  }

  .mobile-map-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(20, 59, 23, 0.25);
    z-index: 10;
  }

  .map-panel.mobile-map-open {
    display: block !important;
    position: fixed;
    inset: 0;
    z-index: 120000;
    background: #fff;
    border-radius: 0;
    width: 100vw;
    height: 100dvh;
    max-width: none;
    min-height: 0;
    border: none;
    box-shadow: none;
  }

  .map-panel.mobile-map-open.mobile-map-over-modal {
    z-index: 130000;
  }

  .map-panel.mobile-map-open #mainMap {
    height: 100%;
    border-radius: 0;
  }

  .map-panel.mobile-map-open .mobile-map-close-btn {
    display: flex;
    position: absolute;
    top: calc(14px + env(safe-area-inset-top, 0px));
    right: 14px;
    z-index: 130100;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    line-height: 1;
    background: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    touch-action: manipulation;
  }

  .modal-close {
    top: calc(14px + env(safe-area-inset-top, 0px));
    right: 14px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    font-size: 18px;
  }
}
