.favorites-container {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--ff-sans);
}

.favorites-container h2 {
  margin: 0 0 1.5rem 0;
  font-size: 1.8rem;
  color: #111111;
  font-family: var(--ff-sans);
}

.favorites-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.favorite-item {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  min-height: 460px;
  cursor: pointer;
}



.favorite-item-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.favorite-item-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
}

.favorite-item-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.4;
  flex: 1;
  font-family: var(--ff-sans);
}

.favorite-item-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #ff4444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}



.favorites-empty {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
  font-family: var(--ff-sans);
}
