/* ===== List Header ===== */
.list-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.list-search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 20px;
  padding: 8px 14px;
  gap: 6px;
}

.list-search-input {
  flex: 1;
  background: none;
  font-size: 14px;
  color: #333;
}

.search-go-btn {
  background: linear-gradient(135deg, #e84b3a, #ff7961);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== Date Bar ===== */
.date-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 0;
}

.date-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  cursor: pointer;
}

.db-label {
  font-size: 10px;
  color: #999;
  margin-bottom: 2px;
}

.db-date {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.db-tag {
  font-size: 10px;
  color: #e84b3a;
  background: #fff5f3;
  padding: 1px 5px;
  border-radius: 3px;
  margin-top: 2px;
}

.date-bar-nights {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  font-size: 11px;
  color: #999;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

.date-bar-room {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 13px;
  color: #555;
  gap: 4px;
  cursor: pointer;
}

.db-arrow {
  color: #bbb;
}

/* ===== Filter Bar ===== */
.filter-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 8px;
  position: sticky;
  top: 54px;
  z-index: 99;
}

.filter-btn {
  flex: 1;
  padding: 12px 4px;
  font-size: 13px;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-weight: 500;
}

.filter-btn.active {
  color: #e84b3a;
  border-bottom-color: #e84b3a;
  font-weight: 600;
}

.filter-arrow {
  font-size: 10px;
  margin-left: 2px;
}

/* ===== Sale Tips ===== */
.sale-tips {
  background: #fff8f7;
  padding: 10px 16px;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #f0f0f0;
}

.tips-icon {
  margin-right: 4px;
}

.tips-price {
  color: #e84b3a;
  font-weight: 700;
}

/* ===== List Card ===== */
.list-wrap {
  padding: 10px 0;
}

.list-hotel-card {
  margin: 0 16px 12px;
}

.hotel-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.hotel-level {
  font-size: 11px;
  color: #ff9900;
  border: 1px solid #ff9900;
  padding: 1px 5px;
  border-radius: 3px;
}

.price-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.old-price-sm {
  font-size: 11px;
  color: #bbb;
  text-decoration: line-through;
}

.save-tip {
  font-size: 11px;
  color: #e84b3a;
  background: #fff0ee;
  padding: 1px 5px;
  border-radius: 3px;
  display: inline-block;
}

.img-tags {
  position: absolute;
  bottom: 8px;
  left: 8px;
}

.img-tag {
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 3px;
}

.list-bottom {
  text-align: center;
  color: #bbb;
  font-size: 12px;
  padding: 20px;
}

/* ===== Filter Sheet ===== */
.filter-section-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin: 16px 0 10px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.filter-tag-item {
  padding: 6px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tag-item.active {
  border-color: #e84b3a;
  color: #e84b3a;
  background: #fff5f3;
}

.filter-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.filter-reset {
  display: block;
  width: 100%;
  background: #fff;
  color: #e84b3a;
  border: 1.5px solid #e84b3a;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}
