/* Hotels page — near wholesale markets */
.hotels-filter {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.hotels-filter__group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}
.hotels-filter__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-right: .25rem;
}
.hotels-filter__btn {
  padding: .45rem 1rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.hotels-filter__btn:hover {
  border-color: var(--orange-300);
  color: var(--orange-600);
}
.hotels-filter__btn.active {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.hotels-filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  margin: -1rem 0 2rem;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.hotels-filter-bar.is-stuck {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.hotel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-200);
}
.hotel-card.is-hidden { display: none; }
.hotel-card--popular {
  border-color: var(--orange-300);
  box-shadow: 0 4px 20px rgba(249,115,22,.12);
}
.hotel-card__visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hotel-card__visual--yiwu { background: linear-gradient(135deg, #FEF3C7, #FDE68A); }
.hotel-card__visual--guangzhou { background: linear-gradient(135deg, #FFF7ED, #FFEDD5); }
.hotel-card__visual--shenzhen { background: linear-gradient(135deg, #E0F2FE, #BAE6FD); }
.hotel-card__visual--foshan { background: linear-gradient(135deg, #FCE7F3, #FBCFE8); }
.hotel-card__visual-icon { font-size: 3rem; opacity: .9; }
.hotel-card__popular {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--orange-500);
  color: white;
  font-size: .68rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: var(--radius-full);
}
.hotel-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.hotel-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .5rem;
}
.hotel-card__badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .55rem;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-700);
}
.hotel-card__stars {
  color: #f59e0b;
  font-size: .85rem;
  letter-spacing: .05em;
  margin-bottom: .35rem;
}
.hotel-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.35;
  margin-bottom: .15rem;
}
.hotel-card__cn {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: .75rem;
}
.hotel-card__market {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: var(--gray-600);
  background: var(--orange-50);
  padding: .65rem .75rem;
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  border-left: 3px solid var(--orange-400);
}
.hotel-card__market strong { color: var(--gray-800); }
.hotel-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  font-size: .8rem;
  margin-bottom: .75rem;
}
.hotel-card__meta dt { color: var(--gray-400); font-weight: 500; }
.hotel-card__meta dd { color: var(--gray-800); font-weight: 600; }
.hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: 1rem;
}
.hotel-card__amenity {
  font-size: .72rem;
  padding: .2rem .45rem;
  background: var(--gray-50);
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}
.hotel-card__price {
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hotel-card__price strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--orange-600);
}
.hotel-card__price span {
  font-size: .75rem;
  color: var(--gray-400);
  font-weight: 400;
}
.hotel-card__price-note {
  font-size: .75rem;
  color: var(--gray-500);
}
.hotels-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray-500);
  display: none;
}
.hotels-empty.show { display: block; }
.hotels-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.hotel-tip {
  background: white;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}
.hotel-tip__icon { font-size: 1.5rem; margin-bottom: .5rem; }
.hotel-tip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--gray-800);
  margin-bottom: .35rem;
}
.hotel-tip__text { font-size: .85rem; color: var(--gray-500); }
@media (max-width: 640px) {
  .hotel-grid { grid-template-columns: 1fr; }
  .hotels-filter { flex-direction: column; align-items: stretch; }
}
