/* ── Hotel Cards ── */
.hotel-card-col {
  display: flex;
  margin-bottom: 28px;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  opacity: 0;
  animation: hcFadeIn 0.45s ease forwards;
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.13), 0 4px 12px rgba(0,0,0,0.07);
}

/* ── Image ── */
.hotel-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  flex-shrink: 0;
}

.hotel-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-color: #e8eef2;
  transition: transform 0.45s ease;
}

.hotel-card:hover .hotel-card__img {
  transform: scale(1.06);
}

.hotel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.12) 45%, transparent 70%);
  pointer-events: none;
}

/* ── Wishlist ── */
.hotel-card__wish {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hotel-card__wish:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.12);
}
.hotel-card__wish svg { transition: fill 0.2s ease; }
.hotel-card__wish.active svg { fill: #e53935; stroke: #e53935; }

/* ── Price badge ── */
.hotel-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 999px;
  letter-spacing: .03em;
}

/* ── City chip ── */
.hotel-card__city {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(6px);
  border: 0.5px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 999px;
}

/* ── Stars ── */
.hotel-card__stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}
.hotel-card__stars svg { display: block; }

/* ── Body ── */
.hotel-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
}

.hotel-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin: 0 0 6px;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hotel-card__title:hover { color: #2575fc; text-decoration: none; }

.hotel-card__location {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  color: #8a95a3;
  font-size: 12px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.hotel-card__location svg { flex-shrink: 0; margin-top: 1px; }

.hotel-card__desc {
  font-size: 12px;
  color: #9aa3ae;
  line-height: 1.55;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* ── Footer ── */
.hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 18px;
  border-top: 1px solid rgba(0,0,0,0.055);
  margin-top: auto;
}

.hotel-card__price-label {
  font-size: 10px;
  color: #b0bac5;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1px;
}

.hotel-card__price {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.hotel-card__price sup {
  font-size: 13px;
  font-weight: 600;
  color: #8a95a3;
  vertical-align: super;
  margin-right: 1px;
}

.hotel-card__price-sub {
  font-size: 10px;
  color: #b0bac5;
}

/* ── CTA Button ── */
.hotel-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .02em;
  transition: box-shadow 0.25s ease, transform 0.22s ease;
  white-space: nowrap;
}
.hotel-card__btn:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,117,252,0.45);
  transform: translateY(-1px);
}
.hotel-card__btn .hc-arrow {
  transition: transform 0.22s ease;
  display: flex;
}
.hotel-card__btn:hover .hc-arrow { transform: translateX(3px); }

/* ── Skeleton ── */
.hotel-card--skeleton .hotel-card__img-wrap,
.hotel-card--skeleton .hotel-card__sk-line {
  background: linear-gradient(90deg, #f0f2f5 25%, #e4e8ed 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: skShimmer 1.4s infinite;
  border-radius: 8px;
}
.hotel-card--skeleton .hotel-card__img-wrap { border-radius: 0; }
.hotel-card--skeleton .hotel-card__sk-line { height: 12px; margin-bottom: 10px; }
.hotel-card--skeleton .hotel-card__sk-line.w80 { width: 80%; }
.hotel-card--skeleton .hotel-card__sk-line.w55 { width: 55%; }
.hotel-card--skeleton .hotel-card__sk-line.w100 { width: 100%; }

@keyframes skShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes hcFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* stagger */
.hotel-card-col:nth-child(2) .hotel-card { animation-delay: 0.07s; }
.hotel-card-col:nth-child(3) .hotel-card { animation-delay: 0.14s; }
.hotel-card-col:nth-child(4) .hotel-card { animation-delay: 0.21s; }
.hotel-card-col:nth-child(5) .hotel-card { animation-delay: 0.28s; }
.hotel-card-col:nth-child(6) .hotel-card { animation-delay: 0.35s; }
.hotel-card-col:nth-child(7) .hotel-card { animation-delay: 0.42s; }
.hotel-card-col:nth-child(8) .hotel-card { animation-delay: 0.49s; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .hotel-card__img-wrap { height: 200px; }
  .hotel-card__footer { padding: 12px 16px 16px; }
  .hotel-card__body { padding: 14px 16px 16px; }
}
