.dest-hero {
  background: var(--bg2);
  border-bottom: 0.5px solid var(--border);
  padding: 48px 32px 36px;
}

.dest-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dest-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--txt);
  margin-bottom: 8px;
}

.dest-hero p {
  font-size: 15px;
  color: var(--txt2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.dest-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.dest-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--txt2);
}

.dest-stat i { font-size: 15px; color: var(--accent); }
.dest-stat strong { color: var(--txt); font-weight: 500; }

.dest-map-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  height: calc(100vh - 200px);
  min-height: 500px;
}

.dest-sidebar {
  border-right: 0.5px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card-bg);
}

.dest-sidebar-head {
  padding: 16px 18px 12px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--txt2);
  flex-shrink: 0;
}

.dest-reset-btn {
  background: none;
  border: none;
  color: var(--txt2);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  transition: color var(--transition);
}
.dest-reset-btn:hover { color: var(--accent); }

.dest-filter-group {
  padding: 14px 18px;
  border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}

.dest-filter-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--txt2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.dest-stars-filter {
  display: flex;
  gap: 6px;
}

.dest-star-btn {
  flex: 1;
  background: var(--input-bg);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 4px;
  font-size: 12px;
  color: var(--txt2);
  cursor: pointer;
  transition: all var(--transition);
}

.dest-star-btn:hover { border-color: var(--accent); }
.dest-star-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.dest-hotel-list {
  flex: 1;
  overflow-y: auto;
}

.dest-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  color: var(--accent);
}

.dest-loading i {
  font-size: 28px;
  animation: spin 1s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.dest-hotel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 0.5px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.dest-hotel-item:hover { background: var(--bg3); }
.dest-hotel-item.active { background: rgba(24, 95, 165, 0.06); border-left: 3px solid var(--accent); }

.dest-hotel-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg3);
  overflow: hidden;
  flex-shrink: 0;
}

.dest-hotel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-hotel-thumb-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dest-hotel-thumb-ph i { font-size: 18px; color: var(--txt2); opacity: 0.4; }

.dest-hotel-info { flex: 1; min-width: 0; }

.dest-hotel-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.dest-hotel-city {
  font-size: 11px;
  color: var(--txt2);
  display: flex;
  align-items: center;
  gap: 3px;
}

.dest-hotel-city i { font-size: 11px; }

.dest-hotel-stars-small {
  font-size: 10px;
  color: #ef9f27;
  flex-shrink: 0;
}

.dest-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

body.dark .leaflet-tile { filter: brightness(0.85) saturate(0.85); }

.dest-marker {
  width: 12px;
  height: 12px;
  background: #185fa5;
  border: 2.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.15s;
  cursor: pointer;
}

.dest-marker:hover,
.dest-marker.active {
  background: #c0392b;
  transform: scale(1.4);
}

.leaflet-popup-content-wrapper {
  background: var(--card-bg) !important;
  border: 0.5px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
  padding: 0 !important;
  overflow: hidden;
  min-width: 240px;
}

.leaflet-popup-tip-container { display: none; }
.leaflet-popup-content { margin: 0 !important; width: auto !important; }

.dest-popup-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.dest-popup-img-ph {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, #1d3350, #0f2233);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dest-popup-img-ph i { font-size: 36px; color: rgba(255,255,255,0.2); }

.dest-popup-body { padding: 14px 16px; }

.dest-popup-stars { color: #ef9f27; font-size: 11px; letter-spacing: 1px; margin-bottom: 4px; }

.dest-popup-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  line-height: 1.3;
  transition: opacity var(--transition);
}
.dest-popup-name:hover { opacity: 0.8; }

.dest-popup-address {
  font-size: 12px;
  color: var(--txt2);
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.4;
}

.dest-popup-address i { font-size: 13px; flex-shrink: 0; margin-top: 1px; }

.dest-popup-footer {
  padding: 10px 16px;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-popup-price { font-size: 13px; color: var(--txt2); }
.dest-popup-price strong { font-family: 'DM Serif Display', Georgia, serif; font-size: 18px; color: var(--txt); }

.dest-popup-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition);
}
.dest-popup-btn:hover { background: var(--accent2); }

@media (max-width: 768px) {
  .dest-map-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
  }

  .dest-sidebar {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
    max-height: 280px;
  }

  .dest-map { height: 60vh; min-height: 320px; }
}

@media (max-width: 480px) {
  .dest-hero { padding: 32px 16px 24px; }
  .dest-hero h1 { font-size: 26px; }
}
