body {
  background-color: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
}

.hotel-card-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.hotel-card {
  transform: scale(0.85); /* 15% smaller */
  transform-origin: center center;

  --hotel-radius: 12px;
  --hotel-shadow: 0 4px 10px rgba(0,0,0,0.06);
  background-color: #ffffff;
  border-radius: var(--hotel-radius);
  box-shadow: var(--hotel-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 420px;
}

.hotel-card:hover .hotel-card-image {
  transform: scale(1.05);
}

.hotel-card-image-container {
  position: relative;
  overflow: hidden;
}

.hotel-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.hotel-wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151;
}

.hotel-wishlist-btn:hover {
  color: #ef4444;
}

.hotel-wishlist-btn svg {
  width: 20px;
  height: 20px;
}

.hotel-card-content {
  padding: 1rem 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hotel-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.hotel-rating {
  display: flex;
  gap: 0.125rem;
  color: #f59e0b;
}

.hotel-rating svg {
  width: 16px;
  height: 16px;
}

.hotel-location {
  font-size: 0.875rem;
  color: #6b7280;
}

.hotel-card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.hotel-card-title-link {
  text-decoration: none;
  color: inherit;
}

.hotel-card-title-link:hover {
  text-decoration: underline;
}

.hotel-amenities {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: #4b5563;
  flex-wrap: wrap;
  margin: 0;
}

.hotel-amenities span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hotel-amenities svg {
  width: 16px;
  height: 16px;
}

.hotel-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
}

.hotel-price .price-amount {
  font-size: 1.375rem;
  font-weight: 700;
}

.hotel-price .price-period {
  font-size: 0.875rem;
  color: #6b7280;
}

.hotel-cta {
  background-color: #1f2937;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hotel-cta:hover {
  background-color: #374151;
}
