.hotel-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.hotel-card-img {
  position: relative;
  height: 180px;
  background: #f2f2f2;
}

.hotel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-stars {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,.7);
  color: #ffc107;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 13px;
}

.hotel-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hotel-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.hotel-location,
.hotel-concept {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.hotel-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hotel-price {
  font-size: 13px;
}

.price-note {
  display: block;
  color: #999;
  font-size: 12px;
}
.hotel-filters .filter-block {
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.hotel-filters h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hotel-image-wrap {
  overflow: hidden;
}

.hotel-image-slider {
  display: flex;
  width: 100%;
  height: 100%;
}

.hotel-image-slider img {
  min-width: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.hotel-image-wrap:hover .hotel-image-slider {
  transform: translateX(-100%);
}

@media (max-width: 768px) {
  .hotel-image-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .hotel-image-slider img {
    scroll-snap-align: start;
  }
}