/*==================================================================================================
  --------------------------------------------  MAPPPPPPPPP. ---------------------------------------
===================================================================================================*/
body {
  scroll-behavior: smooth;
}

html.wwt-map-page-active,
html.wwt-map-page-active body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  overflow-y: hidden;
  overflow-anchor: none;
  scroll-behavior: auto;
  overscroll-behavior-x: none;
}

#properties-section {
  scroll-behavior: smooth;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.accommodation-viewer {
  min-height: 100%;
}

/*==================================
  MARKER STYLES
==================================*/
.marker-pin {
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  background: #39471b;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  transition: all 0.3s ease;
}

.marker-pin::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: 3px 0 0 3px;
  position: absolute;
  border-radius: 50%;
}

.marker-pin::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  border: 1px solid #f1f0e9;
  border-radius: 50%;
}

.custom-marker .marker-pin {
  background: #39471b;
}

.custom-marker.selected .marker-pin {
  background: #966022;
  transform: rotate(-45deg) scale(1.17);
  box-shadow: -6px 6px 6px 0.1px #44443ad9;
}

.custom-icon.hover .marker-pin {
  background: #5b6d2a;
  transform: rotate(-45deg) scale(1.1);
}

.selected .marker-pin {
  background: #966022;
}

.custom-icon.selected .marker-pin {
  background: #fff;
  transform: rotate(-45deg) scale(1.2);
}

/*==================================
  POPUP STYLES
==================================*/
.mapboxgl-popup-content, .maplibregl-popup-content {
  padding: 0 !important;
  border-radius: 7px !important;
  overflow: hidden;
  min-width: 200px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 2s;
}
.maplibregl-popup-tip {
  display: none;
}

.popup-content {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #966022;
}

.popup-thumbnail img {
  width: 100%;
  height: 160px;
  max-height: 160px;
  object-fit: cover;
}

.popup-content h4 {
  margin: 0;
  padding: 12px;
  font-size: 14px;
  color: #fffef5;
  background: #966022;
  text-align: center;
  margin-top: -6px;
}

.maplibregl-popup-tip {
  border-top-color: white !important;
}

.property-popup {
  /* z-index: 1000; */
}

/*==================================
  CONTROLS AND UTILITIES
==================================*/
.controls {
  z-index: 10;
  height: 2rem;
  margin-left: -41px;
}

.mobile-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #39471b;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  cursor: pointer;
}

/*==================================
  POPUP CLOSE BUTTON
==================================*/
/* .mapboxgl-popup-close-button,
.maplibregl-popup-close-button {
  border-radius: 0 !important;
}

.maplibregl-popup-close-button:focus {
  outline: none;
  background-color: #966022;
  color: #f1f0e9;
  text-decoration: unset !important;
}

.maplibregl-popup-close-button:hover {
  background-color: #966022;
} */

/*==================================
  LOADING STATE
==================================*/
.accommodation-viewer {
  min-height: 600px; /* Minimum height to reserve space */
  position: relative;
  /* 	max-height: 100vh; */
}

.accommodation-viewer.loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #939b89;
  z-index: 99;
}

.accommodation-viewer.loading::after {
  content: "";
  position: absolute;
  top: 444px;
  left: 50%;
  width: 200px; /* Adjusted for Tasmania size */
  height: 200px;
  transform: translateX(-50%);
  z-index: 999;
  background-image: url("/wp-content/uploads/2025/02/tasmania-loader.svg"); /* Replace with actual SVG content */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Mobile specific loading state */
@media screen and (max-width: 768px) {
  .accommodation-viewer {
    min-height: 100vh; /* Full viewport height on mobile */
  }

  .accommodation-viewer.loading::after {
    width: 150px; /* Slightly smaller on mobile */
    height: 150px;
  }
}

/*==================================
  MOBILE RESPONSIVE STYLES
==================================*/
@media screen and (max-width: 768px) {
  /* Map Container */
  .map-container {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    z-index: 1;
  }

  /* Properties Section */
  .properties-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 2;
    transition: transform 0.3s ease-in-out;
    overflow-y: scroll;
    transform: translateX(0);
    -webkit-overflow-scrolling: touch;
    padding-bottom: 60px; /* Add space for footer visibility */
  }

  .properties-section:not(.active) {
    transform: translateX(-100%);
  }

  /* Ensure map canvas fills space */
  #map-container .maplibregl-canvas {
    width: 100% !important;
    height: 100% !important;
  }

  /* Toggle Button */
  .mobile-toggle {
    display: block;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
  }

  /* Footer adjustments */
  footer,
  .site-footer {
    position: relative;
    z-index: 5;
  }

  /* Ensure popups stay on top */
  .maplibregl-popup {
    max-width: 280px !important;
    z-index: 1000 !important;
  }

  .popup-thumbnail {
    height: 140px;
  }

  .popup-content h4 {
    font-size: 16px;
    padding: 15px;
  }
}

#map-container {
  width: 100%;
  height: 100%;
  min-height: 420px;
}















/* ================================
   WWT Popup 
================================ */
.wwt-popup-shell .maplibregl-popup-content {
  padding: 0 !important;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  background: #f1f0e9;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

/* Optional: keep tip hidden like you already do */
.wwt-popup-shell .maplibregl-popup-tip {
  display: none;
}

/* ================================
   WWT Popup Layout
================================ */
.wwt-popup {
  position: relative;
  /* width: 340px;          */
  max-width: 90vw;
  background: #f1f0e9;
  color: #2c2a2a;
  display: flex;
  flex-direction: column;
}

.wwt-popup__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  transform-origin: 50% 50%;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.25s ease;
}

/* draw the X */
.wwt-popup__close::before,
.wwt-popup__close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.wwt-popup__close::before {
  transform: rotate(45deg);
}

.wwt-popup__close::after {
  transform: rotate(-45deg);
}

/* hover motion */
.wwt-popup__close:hover {
  color: #966022;
  transform: rotate(90deg) scale(1.15);
  background-color: unset;
  color: #966022 !important;
  text-decoration: none !important;
}

.wwt-popup__close:active {
  transform: rotate(90deg) scale(1.05);
}





.wwt-popup__close:focus {
  background-color: unset;
  color: #966022 !important;
  text-decoration: none !important;
}



.mapboxgl-ctrl.mapboxgl-ctrl-attrib, .maplibregl-ctrl.maplibregl-ctrl-attrib {
  display: none;
}



.wwt-popup__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,0.04);
  overflow: hidden;
  padding: 0;
}

img.wwt-popup__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 100%; 
}

.wwt-popup__imgPlaceholder {
  width: 100%;
  height: 100%;
}

/* Body */
.wwt-popup__body {
  padding: 1.2rem;
  background: rgba(0,0,0,0.04);
}

h4.wwt-popup__title {
  font-family: "Quinn Display", Sans-serif;
    font-size: 2.2em;
    text-transform: none;
    letter-spacing: -0.3px;
    margin-top: 0;
}

/* Pills row */
.wwt-popup__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wwt-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  background: #939B89;
  color: #F0EFE8;
}

.wwt-pill.is-muted {
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 768px) {
  .wwt-popup {
    /* width: 300px; */
  }

  .wwt-popup__title {
    font-size: 20px;
  }
}





















/*==================================================================================================
  Map panel (unified collapsed + expanded)
==================================================================================================*/
#map-container {
  opacity: 0;
}

#map-container.is-ready {
  opacity: 1;
}

:root {
  --wwt-fixed-menu-offset: 66px;
  --wwt-header-offset: var(--wwt-fixed-menu-offset);
  --wwt-map-menu-offset: var(--wwt-fixed-menu-offset);
  --wwt-vibe-gallery-top-offset: var(--wwt-fixed-menu-offset);
  --wwt-map-tiles-height: 56px;
  --wwt-browse-panel-width: clamp(500px, 44vw, 660px);
}

.wwt-map-page {
  padding-top: var(--wwt-header-offset);
  overflow-x: hidden;
  overflow-x: clip;
}

header.site-header,
.site-header,
#site-header,
#masthead {
  z-index: 120;
}

.wwt-map-stage {
  position: relative;
  margin: 0;
  height: calc(100svh - var(--wwt-header-offset) - var(--wwt-map-tiles-height));
  display: block;
}

.wwt-map-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.wwt-map-loading {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: #fffef5;
  opacity: 1;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.wwt-map-loading::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--wwt-browse-panel-width);
  width: 1px;
  background: rgba(150, 96, 34, 0.08);
}

#map-container.is-ready + .wwt-map-loading {
  opacity: 0;
  visibility: hidden;
}

.wwt-map-loading__island {
  position: relative;
  width: clamp(9rem, 18vw, 15rem);
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(150, 96, 34, 0.16);
  transform: translateX(calc(var(--wwt-browse-panel-width) * 0.5));
  -webkit-mask: url("/wp-content/uploads/2025/02/tasmania-loader.svg") center / contain no-repeat;
  mask: url("/wp-content/uploads/2025/02/tasmania-loader.svg") center / contain no-repeat;
}

.wwt-map-loading__island::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.52) 46%, transparent 76%);
  transform: translateX(-120%);
  animation: wwt-skeleton-shimmer 1.35s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .wwt-map-loading::before {
    display: none;
  }

  .wwt-map-loading__island {
    width: clamp(8.5rem, 42vw, 13rem);
    transform: none;
  }
}

.wwt-skeleton-shape {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(150, 96, 34, 0.13);
}

.wwt-skeleton-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.46) 46%, transparent 76%);
  transform: translateX(-120%);
  animation: wwt-skeleton-shimmer 1.35s ease-in-out infinite;
}

.wwt-skeleton-shape--media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
}

.wwt-skeleton-shape--title {
  width: min(78%, 20rem);
  height: 3.1rem;
}

.wwt-skeleton-shape--short {
  width: min(44%, 12rem);
  height: 0.82rem;
}

.wwt-skeleton-shape--line {
  width: 100%;
  height: 0.78rem;
}

.wwt-skeleton-shape--line-short {
  width: 68%;
}

.wwt-skeleton-shape--pill {
  width: 5.7rem;
  height: 1.58rem;
  border-radius: 5px;
}

.wwt-skeleton-shape--bar-title {
  width: min(58%, 13rem);
  height: 0.9rem;
  background: rgba(240, 239, 232, 0.2);
}

@keyframes wwt-skeleton-shimmer {
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wwt-map-loading,
  .wwt-skeleton-shape::after,
  .wwt-map-loading__island::after {
    animation: none;
    transition: none;
  }
}

.wwt-marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ffffff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  padding: 0;
}

.wwt-marker-wrapper {
    /* Let MapLibre position this without interference */
    transform: translate(0, 0);
    will-change: transform;
}

.wwt-marker::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #003d46;
  transform: scale(0.82);
  transition: transform 180ms ease, background-color 180ms ease;
}

.wwt-marker.is-hover:not(.is-active)::after {
  background: #1f5a5f;
  transform: scale(0.92);
}

.wwt-marker.is-active::after {
  background: #966022;
  transform: scale(1.22);
}

.wwt-map-shell .wwt-marker:not(.is-landmark) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 0.86rem;
  max-width: min(190px, 44vw);
  height: 0.86rem;
  min-width: 0.86rem;
  min-height: 0;
  border: 2px solid #fffef5;
  border-radius: 50%;
  background: #283022;
  color: #fffef5;
  box-shadow: none;
  font-family: "Quinn Display", Sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1;
  overflow: hidden;
  padding: 0;
  text-decoration: none !important;
  text-overflow: ellipsis;
  transform: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, gap 180ms ease, padding 180ms ease, transform 180ms ease, width 180ms ease;
  white-space: nowrap;
}

.wwt-map-shell .wwt-marker__icon {
  display: block;
  order: 2;
  width: 0;
  height: 1.28rem;
  object-fit: contain;
  opacity: 0;
  transform: translateX(-0.35rem);
  transition: opacity 180ms ease, transform 180ms ease, width 180ms ease;
}

.wwt-map-shell .wwt-marker__text {
  display: block;
  order: 1;
  min-width: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
  text-align: center;
  transition: opacity 180ms ease, width 180ms ease;
}

.wwt-map-shell .wwt-marker:not(.is-landmark)::after {
  content: none;
}

.wwt-map-shell .wwt-marker:not(.is-landmark).is-hover,
.wwt-map-shell .wwt-marker:not(.is-landmark).is-active,
.wwt-map-shell .wwt-marker:not(.is-landmark):focus-visible {
  text-decoration: none !important;
}

.wwt-map-shell .wwt-marker:not(.is-landmark).is-hover,
.wwt-map-shell .wwt-marker:not(.is-landmark).is-active,
.wwt-map-shell .wwt-marker:not(.is-landmark):hover,
.wwt-map-shell .wwt-marker:not(.is-landmark):focus-visible {
  background: #283022;
  border-color: transparent;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(24, 15, 7, 0.18);
  color: #fffef5;
  gap: 0.47rem;
  height: auto;
  min-height: 2.15rem;
  min-width: 4.2rem;
  padding: 0.2rem 0.6rem;
  transform: translateY(-2px);
  width: auto;
}

.wwt-map-shell .wwt-marker:not(.is-landmark).is-active,
.wwt-map-shell .wwt-marker:not(.is-landmark).is-active.is-hover,
.wwt-map-shell .wwt-marker:not(.is-landmark).is-active:hover,
.wwt-map-shell .wwt-marker:not(.is-landmark).is-active:focus-visible {
  background: #38281B;
  box-shadow: 0 8px 18px rgba(24, 15, 7, 0.2);
}

.wwt-map-shell .wwt-marker:not(.is-landmark).is-hover .wwt-marker__icon,
.wwt-map-shell .wwt-marker:not(.is-landmark).is-active .wwt-marker__icon,
.wwt-map-shell .wwt-marker:not(.is-landmark):hover .wwt-marker__icon,
.wwt-map-shell .wwt-marker:not(.is-landmark):focus-visible .wwt-marker__icon {
  width: 1.28rem;
  opacity: 1;
  transform: translateX(0);
}

.wwt-map-shell .wwt-marker:not(.is-landmark).is-hover .wwt-marker__text,
.wwt-map-shell .wwt-marker:not(.is-landmark).is-active .wwt-marker__text,
.wwt-map-shell .wwt-marker:not(.is-landmark):hover .wwt-marker__text,
.wwt-map-shell .wwt-marker:not(.is-landmark):focus-visible .wwt-marker__text {
  width: auto;
  min-width: 1.15rem;
  opacity: 1;
}

.wwt-map-shell .wwt-marker:not(.is-landmark):focus-visible {
  outline: 2px solid #fffef5;
  outline-offset: 2px;
}

.wwt-map-shell .maplibregl-ctrl-top-right,
.wwt-map-shell .mapboxgl-ctrl-top-right {
  top: 1rem;
  right: 1rem;
}

.wwt-map-shell .maplibregl-ctrl-bottom-right,
.wwt-map-shell .mapboxgl-ctrl-bottom-right {
  right: 1rem;
  bottom: 1rem;
}

.wwt-map-shell .maplibregl-ctrl-top-right .maplibregl-ctrl,
.wwt-map-shell .mapboxgl-ctrl-top-right .mapboxgl-ctrl {
  margin: 0;
}

.maplibregl-ctrl-group {
  border: 1px solid rgba(150, 96, 34, 0.25);
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.maplibregl-ctrl-group button {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.96);
}

.maplibregl-ctrl-group button + button {
  border-top: 1px solid rgba(150, 96, 34, 0.18);
}

.wwt-map-zoom-control {
  display: grid;
  gap: 0.18rem;
  padding: 0.26rem;
  border: 1px solid rgba(150, 96, 34, 0.78);
  border-radius: 999px;
  background: rgba(255, 254, 245, 0.92);
  box-shadow: 0 10px 26px rgba(56, 34, 12, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wwt-map-zoom-control__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #38281B !important;
  box-shadow: none !important;
  cursor: pointer;
  font-family: "Gibson", var(--sans);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none !important;
  transition: background-color 150ms ease, color 150ms ease, opacity 150ms ease;
}

.wwt-map-zoom-control__button:hover,
.wwt-map-zoom-control__button:focus,
.wwt-map-zoom-control__button:focus-visible,
.wwt-map-zoom-control__button:active {
  background: #283022 !important;
  color: #f7f3dc !important;
  outline: 0;
  text-decoration: none !important;
}

.wwt-map-zoom-control__button:focus-visible {
  box-shadow: 0 0 0 2px rgba(150, 96, 34, 0.28) !important;
}

.wwt-map-zoom-control__button:disabled {
  color: rgba(56, 40, 27, 0.34) !important;
  cursor: default;
  opacity: 0.72;
}

.wwt-map-zoom-control__button:disabled:hover,
.wwt-map-zoom-control__button:disabled:focus,
.wwt-map-zoom-control__button:disabled:active {
  background: transparent !important;
  color: rgba(56, 40, 27, 0.34) !important;
}

.wwt-reset-view-control {
  min-width: 58px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#wwt-location-panel {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 70;
  background: #fffef5;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 620px;
  height: 480px;
}

#wwt-location-panel[hidden] {
  display: none !important;
}

#wwt-location-panel.is-expanded {
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

#wwt-location-panel.is-collapsed {
  cursor: pointer;
}

.wwt-panel-hero {
  position: relative;
  flex: 0 0 var(--wwt-hero-height, 228px);
  height: var(--wwt-hero-height, 228px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
}

.wwt-panel-hero-image,
.wwt-panel-hero-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.wwt-panel-hero-image {
  object-fit: cover;
}
.swiper-pagination-bullet-active {
  background: #38281B;
  border: 1px solid #d4b1a1;
}
.wwt-panel-swiper,
.wwt-panel-swiper .swiper-wrapper,
.wwt-panel-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.wwt-panel-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wwt-panel-hero-image.wwt-location-media-image.is-portrait,
.wwt-location-card__image.wwt-location-media-image.is-portrait,
.wwt-panel-swiper .swiper-slide img.wwt-location-media-image.is-portrait {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.08);
}

.wwt-panel-hero-image.wwt-location-media-image.is-landscape,
.wwt-location-card__image.wwt-location-media-image.is-landscape,
.wwt-panel-swiper .swiper-slide img.wwt-location-media-image.is-landscape {
  object-fit: cover;
}

.wwt-panel-swiper .swiper-button-prev,
.wwt-panel-swiper .swiper-button-next {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(241, 240, 233, 0.62);
  color: #966022 !important;
  box-shadow: 0 10px 28px rgba(24, 15, 7, 0.14);
  border: 1px solid rgba(150, 96, 34, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.wwt-panel-swiper .swiper-button-prev::after,
.wwt-panel-swiper .swiper-button-next::after {
  content: "";
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75 3.75L12 9L6.75 14.25' stroke='black' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.75 3.75L12 9L6.75 14.25' stroke='black' stroke-width='1.65' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.3s 0.02s ease, opacity 180ms ease;
  opacity: 0.88;
}

.wwt-panel-swiper .swiper-button-prev::after {
  transform: rotate(180deg);
}

.wwt-panel-swiper .swiper-button-prev:hover,
.wwt-panel-swiper .swiper-button-next:hover,
.wwt-panel-swiper .swiper-button-prev:focus,
.wwt-panel-swiper .swiper-button-next:focus,
.wwt-panel-swiper .swiper-button-prev:active,
.wwt-panel-swiper .swiper-button-next:active {
  background: rgba(241, 240, 233, 0.86);
  border-color: rgba(150, 96, 34, 0.36);
  box-shadow: 0 14px 34px rgba(24, 15, 7, 0.18);
  color: #966022 !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.wwt-panel-swiper .swiper-button-prev:hover::after,
.wwt-panel-swiper .swiper-button-prev:active::after,
.wwt-panel-swiper .swiper-button-prev:focus::after {
  transform: rotate(180deg) translateX(0.12em);
  opacity: 1;
}

.wwt-panel-swiper .swiper-button-next:hover::after,
.wwt-panel-swiper .swiper-button-next:active::after,
.wwt-panel-swiper .swiper-button-next:focus::after {
  transform: translateX(0.12em);
  opacity: 1;
}

.wwt-vibe-gallery-is-open {
  overflow: hidden;
}

.wwt-vibe-gallery {
  position: fixed;
  inset: var(--wwt-vibe-gallery-top-offset, var(--wwt-header-offset, 0px)) 0 0;
  --wwt-vibe-gallery-inset: clamp(1rem, 2vw, 1.8rem);
  z-index: 10020;
  display: grid;
  height: calc(100svh - var(--wwt-vibe-gallery-top-offset, var(--wwt-header-offset, 0px)));
  min-height: 0;
  background: #15110d;
  color: #f7f3dc;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.4rem);
  transition: opacity 240ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.wwt-vibe-gallery[hidden] {
  display: none;
}

.wwt-vibe-gallery.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wwt-vibe-gallery__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.wwt-vibe-gallery__controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--wwt-vibe-gallery-inset);
  pointer-events: none;
}

.wwt-vibe-gallery__eyebrow,
.wwt-vibe-gallery__title {
  margin: 0;
  color: inherit;
}

.wwt-vibe-gallery__eyebrow {
  font-family: "Gibson", var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wwt-vibe-gallery__title {
  margin-top: 0.25rem;
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  line-height: 0.95;
}

.wwt-vibe-gallery__close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 243, 220, 0.34);
  border-radius: 999px;
  background: rgba(21, 17, 13, 0.48);
  color: #f7f3dc;
  cursor: pointer;
  pointer-events: auto;
}

.wwt-vibe-gallery__close::before,
.wwt-vibe-gallery__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.wwt-vibe-gallery__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.wwt-vibe-gallery__swiper,
.wwt-vibe-gallery__swiper .swiper-wrapper,
.wwt-vibe-gallery__swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.wwt-vibe-gallery__swiper {
  z-index: 2;
}

.wwt-vibe-gallery__swiper .swiper-button-prev {
  left: var(--wwt-vibe-gallery-inset);
}

.wwt-vibe-gallery__swiper .swiper-button-next {
  right: var(--wwt-vibe-gallery-inset);
}

.wwt-vibe-gallery__swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4.8rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem) clamp(3.8rem, 6vw, 5rem);
}

.wwt-vibe-gallery__image,
.wwt-vibe-gallery__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wwt-vibe-gallery__swiper .swiper-pagination-bullet {
  background: rgba(247, 243, 220, 0.54);
}

.wwt-vibe-gallery__swiper .swiper-pagination-bullet-active {
  background: #f7f3dc;
  border-color: transparent;
}

.wwt-location-card__vibe-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #966022;
  background: #966022;
  color: #f7f3dc;
  cursor: pointer;
  font: inherit;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.wwt-location-card__vibe-link:hover,
.wwt-location-card__vibe-link:focus-visible {
  background: #704817;
  border-color: #704817;
  color: #f7f3dc;
}

.wwt-panel-body {
  padding: 0rem 1rem 0.9rem;
}

.wwt-panel-cards {
  display: none;
}

.wwt-location-card-skeleton {
  display: grid;
  min-width: 0;
  background: #fffef5;
}

.wwt-location-card-skeleton__content,
.wwt-location-card-skeleton__body {
  display: grid;
  min-width: 0;
}

.wwt-location-card-skeleton__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.wwt-location-card-skeleton--mobile .wwt-location-card-skeleton__content {
  gap: 0.78rem;
}

.wwt-panel-topline {
  display: none;
}

.wwt-panel-summary h2 {
  margin: 0;
}

.location-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  margin: 1rem 0;
}

.location-meta-pill {
  display: inline-block;
  border-radius: 5px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.36rem 0.76rem;
  white-space: nowrap;
  line-height: 1;
}

.location-meta-pill--stat {
  background: #38281B;
  color: #F0EFE8;
  /* border: 1px solid #d4b1a1; */
}

.location-meta-pill--term {
  background: transparent;
  color: #966022;
  border: 1px solid #966022;
}

.wwt-panel-intro {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.65rem 0 0;
}

#wwt-location-panel.is-expanded .wwt-panel-intro {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.wwt-panel-long {
  margin-top: 1rem;
}

.wwt-panel-toggle {
  margin-top: 1rem;
  border: 0;
  background: transparent;
  color: #523716;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wwt-chip {
  display: inline-block;
  border: 1px solid rgba(150, 96, 34, 0.45);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6e4a1f;
}

.wwt-map-shell .wwt-map-reset {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  border: 1px solid #966022;
  border-radius: 4px;
  background: #ffffff;
  color: #523716;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 0.42rem 0.82rem;
  text-transform: none;
}

@media (min-width: 1024px) {
  #wwt-location-panel.is-desktop-list {
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--wwt-browse-panel-width);
    height: auto;
    cursor: default;
    overflow: hidden;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: #38281B;
  }

  #wwt-location-panel.is-desktop-list .wwt-panel-topline,
  #wwt-location-panel.is-desktop-list .wwt-panel-hero,
  #wwt-location-panel.is-desktop-list .wwt-panel-body {
    display: none;
  }

  #wwt-location-panel.is-desktop-list .wwt-panel-cards {
    display: block;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    background: #fffef5;
  }

  .wwt-location-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(57, 71, 27, 0.18);
    background: #fffef5;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 180ms ease, box-shadow 180ms ease;
  }

  .wwt-location-card-skeleton--desktop {
    border-bottom: 1px solid rgba(57, 71, 27, 0.18);
  }

  .wwt-location-card-skeleton__bar {
    display: flex;
    align-items: center;
    min-height: 4.8rem;
    padding: 1.2rem 2rem;
    background: #283022;
  }

  .wwt-location-card-skeleton__body {
    gap: 1.65rem;
    padding: clamp(1.2rem, 2.4vw, 2.15rem);
  }

  .wwt-location-card-skeleton--desktop .wwt-location-card-skeleton__content {
    gap: 0.92rem;
  }

  .wwt-location-card + .wwt-location-card {
    margin-top: 0;
  }

  .wwt-location-card.is-active {
    background: #f7f4e8;
    box-shadow: inset 0 0 0 1px rgba(57, 71, 27, 0.24);
  }

  .wwt-location-card__bar {
    display: flex;
    align-items: center;
    min-height: 4.8rem;
    padding: 1.2rem 2rem;
    background:  #283022;
    color: #f7f3dc;
  }

  .wwt-location-card__bar-title {
    margin: 0;
    color: inherit;
    font-family: "Gibson", var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .wwt-location-card__body {
    display: grid;
    gap: 1.65rem;
    padding: clamp(1.2rem, 2.4vw, 2.15rem);

  }

  .wwt-location-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: rgba(0, 0, 0, 0.08);
    min-width: 0;
  }

  .wwt-location-card__swiper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.08);
    min-width: 0;
  }

  .wwt-location-card__image--placeholder {
    background: rgba(0, 0, 0, 0.06);
  }

  .wwt-location-card__content {
    display: grid;
    gap: 0.95rem;
    padding: 0;
  }

  .wwt-location-card__title {
    margin: 0;
    font-size: 3.3rem;
    line-height: 1.08;
    color: #966022;
  }

  .wwt-location-card__intro {
    margin: 0.65rem 0 0;
    color: #3a342c;
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    overflow: visible;
  }

  .wwt-location-card__long {
    display: block;
    margin-top: 0.85rem;
    color: #2f2a23;
  }
}

@media (max-width: 1023px) {
  .wwt-map-stage {
    height: clamp(560px, calc(100svh - var(--wwt-header-offset) - 56px), 820px);
  }

  .wwt-map-shell .wwt-map-reset {
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    padding: 0.5rem;
    font-size: 10px;
    letter-spacing: 0.015em;
  }

  #wwt-location-panel {
    left: 0.75rem;
    right: auto;
    bottom: 0.75rem;
    border-radius: 14px;
    width: min(296px, calc(100vw - 1.5rem));
  }

  #wwt-location-panel.is-expanded {
    border-radius: 18px 18px 0 0;
    bottom: 0;
  }

  #wwt-location-panel.is-dismissed {
    pointer-events: none;
  }

  .wwt-panel-hero {
    flex-basis: var(--wwt-hero-height, 184px);
    height: var(--wwt-hero-height, 184px);
  }

  .wwt-panel-topline {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.7rem 0.95rem 0.65rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(240, 239, 232, 0.98);
  }

  #wwt-location-panel.is-expanded .wwt-panel-topline {
    position: sticky;
    top: 0;
    z-index: 8;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  }

  .wwt-topline-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    column-gap: 0.5rem;
    width: 100%;
  }

  .wwt-topline-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
    color: #2c2a2a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .wwt-topline-pill {
    display: inline-block;
    border-radius: 999px;
    background: #283022;
    color: #fffef5;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    padding: 0.24rem 0.58rem;
    white-space: nowrap;
  }

  .wwt-topline-action,
  .wwt-topline-dismiss {
    appearance: none;
    border: 0;
    background: rgba(255, 255, 255, 0.86);
    color: #523716;
    font-size: 0;
    font-weight: 700;
    font-family: inherit;
    padding: 0;
    position: relative;
    text-decoration: none !important;
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex: 0 0 34px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    text-decoration: none !important;
    transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
  }

  .wwt-topline-dismiss::before,
  .wwt-topline-dismiss::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .wwt-topline-dismiss::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .wwt-topline-dismiss::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .wwt-topline-action:hover,
  .wwt-topline-action:focus,
  .wwt-topline-action:active,
  .wwt-topline-dismiss:hover,
  .wwt-topline-dismiss:focus,
  .wwt-topline-dismiss:active {
    text-decoration: none !important;
  }

  .wwt-topline-action:hover,
  .wwt-topline-action:focus,
  .wwt-topline-dismiss:hover,
  .wwt-topline-dismiss:focus {
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
  }

  .wwt-topline-action.swiper-button-next {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin: 0;
  }

  .wwt-topline-action.swiper-button-next::after {
    font-size: 0.68rem;
    transform: rotate(-90deg);
  }

  .wwt-topline-action.swiper-button-next[aria-expanded="true"]::after {
    transform: rotate(90deg);
  }

  .wwt-panel-summary h2 {
    display: none;
  }

  #wwt-location-panel.is-collapsed .wwt-panel-hero {
    flex-basis: var(--wwt-hero-height, 184px);
    height: var(--wwt-hero-height, 184px);
  }

  #wwt-location-panel.is-collapsed .wwt-panel-topline {
    border-bottom: 0;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-collapsed .wwt-panel-swiper .swiper-button-prev,
  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-collapsed .wwt-panel-swiper .swiper-button-next {
    display: none;
  }

  .wwt-panel-cards {
    display: none !important;
  }

}


.elementor.elementor-12044 {
  border-top: 1px solid #966022;
}

/*==================================================================================================
  User-selectable map experiences
==================================================================================================*/
.wwt-experience-toggle {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 96;
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(150, 96, 34, 0.42);
  border-radius: 18px;
  background: rgba(240, 239, 232, 0.94);
  box-shadow: 0 10px 28px rgba(24, 15, 7, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wwt-experience-toggle button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #523716;
  cursor: pointer;
  font-family: "Gibson", var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0.72rem 0.9rem;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.wwt-experience-toggle button.is-active {
  background: #283022;
  color: #f7f3dc;
}

.wwt-experience-toggle button:focus-visible {
  outline: 2px solid #966022;
  outline-offset: 2px;
}

.wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-collapsed .wwt-panel-hero .wwt-location-card__media-pills {
  display: none;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel.is-browse-list {
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  width: var(--wwt-browse-panel-width);
  height: auto;
  cursor: default;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: #fffef5;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-panel-topline,
.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-panel-hero,
.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-panel-body {
  display: none;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-panel-cards {
  display: block !important;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  background: #fffef5;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(57, 71, 27, 0.18);
  border-radius: 0;
  background: #fffef5;
  cursor: pointer;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__bar,
.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-skeleton__bar {
  display: flex;
  align-items: center;
  min-height: 4.8rem;
  padding: 1.2rem 2rem;
  background: #283022;
  color: #f7f3dc;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__bar-title {
  margin: 0;
  color: inherit;
  font-family: "Gibson", var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__bar-pill {
  display: none;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__body {
  display: grid;
  gap: 0;
  padding: clamp(1.2rem, 2.4vw, 2.15rem);
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-skeleton__body {
  display: grid;
  gap: 1.65rem;
  padding: clamp(1.2rem, 2.4vw, 2.15rem);
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__image,
.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__swiper {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-width: 0;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.08);
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__content {
  display: grid;
  gap: 0.95rem;
  padding: 1rem 0 0 0;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__title {
  margin: 0;
  color: #966022;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.04;
}

.wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__intro {
  display: block;
  margin: 0.65rem 0 0;
  overflow: visible;
}

@media (min-width: 768px) {
  .wwt-map-stage[data-experience="explore"] #wwt-location-panel {
    max-width: min(460px, calc(100vw - 4rem));
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-collapsed {
    max-width: min(460px, calc(100vw - 4rem));
  }

  .wwt-map-stage[data-experience="explore"] .wwt-panel-topline {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.7rem 0.95rem 0.65rem;
    background: rgba(240, 239, 232, 0.98);
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    column-gap: 0.5rem;
    width: 100%;
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-title {
    margin: 0;
    overflow: hidden;
    color: #2c2a2a;
    font-size: 1.2rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-pill {
    border-radius: 999px;
    background: #283022;
    color: #fffef5;
    font-size: 0.72rem;
    padding: 0.24rem 0.58rem;
    white-space: nowrap;
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-action,
  .wwt-map-stage[data-experience="explore"] .wwt-topline-dismiss {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #523716 !important;
    cursor: pointer;
    font-size: 0;
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-dismiss::before,
  .wwt-map-stage[data-experience="explore"] .wwt-topline-dismiss::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-dismiss {
    position: relative;
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-dismiss::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-dismiss::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-action::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-135deg);
  }

  .wwt-map-stage[data-experience="explore"] .wwt-topline-action[aria-expanded="true"]::after {
    transform: rotate(45deg);
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded .wwt-panel-topline {
    position: sticky;
    top: 0;
    z-index: 8;
    padding: 1.05rem 1rem;
    background: #283022;
    border-bottom: 1px solid rgba(240, 239, 232, 0.18);
    box-shadow: none;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded .wwt-topline-title {
    color: #f7f3dc;
    font-family: "Gibson", var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded .wwt-topline-pill {
    background: rgba(240, 239, 232, 0.12);
    border: 1px solid rgba(240, 239, 232, 0.32);
    color: #f7f3dc;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded .wwt-topline-action,
  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded .wwt-topline-dismiss {
    background: rgba(240, 239, 232, 0.92);
    color: #283022;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded .wwt-panel-hero {
    margin: 1.05rem 1rem 0;
    border: 1px solid #966022;
    border-bottom: 0;
    box-sizing: border-box;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded .wwt-panel-body {
    padding: 0 1rem 1.05rem;
  }
}

@media (max-width: 1023px) {
  .wwt-experience-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: repeat(2, auto);
    min-width: 3.5rem;
  }

  .wwt-experience-toggle button {
    font-size: 0.58rem;
    padding: 0.58rem 0.72rem;
    text-align: center;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-collapsed {
    bottom: 0.75rem;
    width: min(296px, calc(100vw - 5.8rem));
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-panel-cards {
    padding-bottom: 5rem;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-panel-swiper .swiper-button-prev,
  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-panel-swiper .swiper-button-next {
    display: flex;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__bar,
  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-skeleton__bar {
    justify-content: space-between;
    gap: 0.85rem;
    min-height: 3.6rem;
    padding: 0.9rem 1.1rem;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__bar-title {
    min-width: 0;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__bar-pill {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(240, 239, 232, 0.42);
    border-radius: 999px;
    color: #fffef5;
    font-size: 0.72rem;
    line-height: 1;
    padding: 0.42rem 0.72rem;
    white-space: nowrap;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__body {
    gap: 0;
    padding: 1rem;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-skeleton__body {
    gap: 1rem;
    padding: 1rem;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__media {
    position: relative;
    height: auto;
    min-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    border: 1px solid #966022;
    border-bottom: 0;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__media-pills {
    position: absolute;
    right: 1rem;
    bottom: 0.9rem;
    z-index: 4;
    justify-content: flex-end;
    max-width: calc(100% - 2rem);
    margin: 0;
    padding: 0;
    border: 0;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__media-pills .location-meta-pill--sleeps,
  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__media-pills .location-meta-pill--term {
    display: none;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__content {
    gap: 1rem;
    margin-top: 0;
    padding: 1.5rem 0 0;
    border: 1px solid #966022;
    border-top: 0;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0 1rem;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__intro,
  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-key__item,
  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-content-grid__heading,
  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-content-grid__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card__title {
    color: #3a342c;
    font-size: 3.3rem;
    line-height: 1.08;
  }

  .wwt-map-stage[data-experience="browse"] #wwt-location-panel .wwt-location-card-content-grid__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel .wwt-panel-hero .wwt-location-card__media-pills {
    position: absolute;
    right: 1rem;
    bottom: 0;
    margin-top: 0;
    display: flex;
  }
}

@media (max-width: 767px) {
  .wwt-map-stage[data-experience="browse"] #wwt-location-panel.is-browse-list {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .wwt-map-stage[data-experience="explore"] #wwt-location-panel {
    left: 1.25rem;
    bottom: 1.25rem;
    width: min(460px, calc(100vw - 4rem));
    max-width: min(460px, calc(100vw - 4rem));
    border-radius: 14px;
  }

  .wwt-map-stage[data-experience="explore"] #wwt-location-panel.is-expanded {
    bottom: 1.25rem;
    border-radius: 14px;
  }
}
