* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
}

/* HEADER */
.favorites-header {
  background: linear-gradient(90deg, #ee4d2d, #ff7337);

  color: white;

  padding: 25px 7%;

  display: flex;
  align-items: center;
  gap: 30px;
}

.back-btn {
  color: white;

  text-decoration: none;

  font-size: 18px;
  font-weight: 600;
}

.back-btn:hover {
  opacity: 0.7;
}

/* CONTAINER */
.favorites-container {
  padding: 60px 7%;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;
}

/* CARD */
.favorite-card {
  background: white;

  border-radius: 25px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.favorite-card:hover {
  transform: translateY(-10px);
}

.favorite-card img {
  width: 100%;
  height: 250px;

  object-fit: cover;
}

/* CONTENT */
.favorite-content {
  padding: 25px;
}

.favorite-content h2 {
  margin-bottom: 10px;

  color: #111827;
}

.favorite-content p {
  color: #666;

  line-height: 1.6;

  margin-bottom: 20px;
}

/* BOTTOM */
.favorite-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: #ee4d2d;

  font-size: 24px;
  font-weight: 700;
}

.favorite-btn {
  border: none;

  padding: 12px 18px;

  border-radius: 12px;

  background: #ee4d2d;
  color: white;

  cursor: pointer;

  transition: 0.3s;
}

.favorite-btn:hover {
  background: #d93f21;
}

/* MOBILE */
@media (max-width: 768px) {
  .favorites-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
