/* =====================================================================
   CABIN SEARCH MAP
   ===================================================================== */

/* Map container */
#cabin-search-map {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  position: sticky;
  top: 100px;
}
.cabin-map-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 0.9rem;
}
.cabin-map-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #c0392b;
  font-size: 0.85rem;
  padding: 1rem;
  text-align: center;
}

/* =====================================================================
   PRICE PILL MARKERS
   ===================================================================== */
.cabin-map-price-marker {
  position: absolute;
  background: #fff;
  color: #2B2B2B;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  border: 2px solid #fff;
  z-index: 1;
}
.cabin-map-price-marker:hover,
.cabin-map-price-marker--hover {
  background: #F3C45D;
  color: #2B2B2B;
  border-color: #F3C45D;
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* =====================================================================
   INFO WINDOW
   ===================================================================== */
.cabin-map-info {
  max-width: 240px;
  overflow: hidden;
}
.cabin-map-info__img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin: -8px -8px 8px -8px;
  width: calc(100% + 16px);
}
.cabin-map-info__body {
  padding: 0 2px 2px;
}
.cabin-map-info__title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #2B2B2B;
  text-decoration: none;
  margin-bottom: 4px;
  line-height: 1.3;
}
.cabin-map-info__title:hover {
  color: #F3C45D;
}
.cabin-map-info__price {
  font-size: 1rem;
  font-weight: 700;
  color: #2B2B2B;
  margin-bottom: 6px;
}
.cabin-map-info__price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #888;
}
.cabin-map-info__link {
  display: inline-block;
  font-size: 0.8rem;
  color: #F3C45D;
  font-weight: 600;
  text-decoration: none;
}
.cabin-map-info__link:hover {
  text-decoration: underline;
}

/* Google Maps info window overrides */
.gm-style-iw-d {
  overflow: hidden !important;
}
.gm-style-iw.gm-style-iw-c {
  border-radius: 12px !important;
  padding: 8px !important;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px) {
  #cabin-search-map {
    height: 350px;
    position: relative;
    top: 0;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
}
