/* ===================== LISTING LAYOUT ===================== */
.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}
.listing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.filter-group {
  margin-bottom: 14px;
}
.filter-group:last-child {
  margin-bottom: 0;
}
.filter-group-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: .84rem;
  color: var(--text-mid);
  cursor: pointer;
}
.filter-checkbox input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ===================== LISTING RESULTS ===================== */
.listing-results {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.listing-count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.listing-count h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}
.listing-count span {
  font-size: .9rem;
  color: var(--text-light);
}
.listing-count strong {
  color: var(--primary);
}

/* ===================== LIST VIEW HOTEL CARD ===================== */
.hotel-list-card {
  display: flex;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}
.hotel-list-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.hotel-list-card.hidden {
  display: none;
}
.hotel-list-card-img {
  width: 260px;
  min-height: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.hotel-list-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.hotel-list-card:hover .hotel-list-card-img img {
  transform: scale(1.05);
}
.hotel-list-card-img .hotel-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
}
.hotel-list-card-body {
  flex: 1;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hotel-list-card-top {
  margin-bottom: 12px;
}
.hotel-list-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hotel-list-card-stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.hotel-list-card-location {
  font-size: .8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.hotel-list-card-desc {
  font-size: .87rem;
  color: var(--text-mid);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hotel-list-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--light-gray);
  padding-top: 14px;
  margin-top: 10px;
}
.hotel-list-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.hotel-tag {
  background: rgba(27,79,138,.07);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.hotel-list-card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.hotel-price-tag {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}
.hotel-list-details-btn {
  background: var(--primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 700;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
}
.hotel-list-details-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27,79,138,.3);
}

/* ===================== ACTIVITY CARDS ===================== */
#activitiesSlider .slick-track {
  display: flex !important;
  gap: 18px;
}
#activitiesSlider .slick-slide {
  width: 240px !important;
  flex-shrink: 0;
}
.activity-card {
  width: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: 1px solid var(--light-gray);
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.activity-card-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.activity-card:hover .activity-card-img img {
  transform: scale(1.06);
}
.activity-card-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--primary-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.activity-card-body {
  padding: 16px;
}
.activity-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.activity-card-location {
  font-size: .82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===================== NO RESULTS MESSAGE ===================== */
.no-results-message {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-size: .95rem;
}

/* ===================== INLINE BANNER ===================== */
.listing-inline-banner {
  width: 100%;
  text-align: center;
  margin: 8px 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .listing-layout { grid-template-columns: 1fr; }
  .listing-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .sidebar-widget {
    flex: 1;
    min-width: 200px;
  }
  .filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 0;
  }
  .filter-checkbox {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    padding: 5px 12px 5px 8px;
    font-size: .78rem;
  }
}
@media (max-width: 640px) {
  .listing-sidebar {
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
  }
  .sidebar-widget {
    min-width: unset;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .filter-group {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
    max-width: 100%;
  }
  .filter-group::-webkit-scrollbar { display: none; }
  .filter-checkbox { flex-shrink: 0; }
  .hotel-list-card { flex-direction: column; }
  .hotel-list-card-img { width: 100%; min-height: 180px; }
  .hotel-list-card-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hotel-list-card-actions { width: 100%; justify-content: space-between; }
  .hotel-list-details-btn { flex: 1; text-align: center; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .hotel-list-card { flex-direction: column; }
  .hotel-list-card-img { width: 100%; min-height: 180px; }
}
