/* RESET */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0a0a0a;
  color: white;
}

/* CONTAINER */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 30px;
}

/* BACK */
.back {
  color: #f5a623;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

/* TITLE */
h1 {
  margin-bottom: 20px;
}

/* GRID */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.favorite-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
}

.favorite-card:hover {
  transform: translateY(-6px);
}

/* 🔥 IMAGEN (SOLUCIÓN REAL) */
.favorite-image {
  width: 100%;
  height: 220px; /* 👈 CONTROL CLAVE */
  overflow: hidden;
  position: relative;
}

/* 🔥 IMAGEN BIEN RECORTADA */
.favorite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 💥 ESTO ARREGLA TODO */
  display: block;
  transition: 0.4s;
}

/* HOVER ZOOM */
.favorite-card:hover img {
  transform: scale(1.05);
}

/* BADGE */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #f5a623;
  color: black;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
}

/* INFO */
.favorite-info {
  padding: 15px;
}

.favorite-info h3 {
  margin: 0;
  font-size: 18px;
}

/* LOCATION */
.favorite-location {
  color: #aaa;
  font-size: 14px;
  margin: 5px 0;
}

/* FEATURES */
.favorite-features {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
  margin-top: 10px;
}

/* PRICE */
.favorite-price {
  margin-top: 10px;
  color: #f5a623;
  font-weight: bold;
}

/* EMPTY */
.empty-state {
  text-align: center;
  margin-top: 50px;
  color: #777;
}