/* Favorites Page Styles */
#favoritesPage .favorites-grid {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}

#favoritesPage .product-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-light);
  transition: all 0.3s ease;
  width: 100%;
  max-width: none;
}

#favoritesPage .product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

#favoritesPage .product-image {
  width: 120px;
  height: 80px;
  margin-right: 16px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

#favoritesPage .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#favoritesPage .product-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 24px;
}

#favoritesPage .product-icon i {
  font-size: 32px;
}

#favoritesPage .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

#favoritesPage .product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

#favoritesPage .product-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

#favoritesPage .product-overlay {
  position: absolute;
  top: 8px;
  right: 8px;
}

#favoritesPage .fav-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

#favoritesPage .fav-btn:hover {
  background: #007bff;
  color: white;
}

#favoritesPage .fav-btn.favorited {
  background: #007bff;
  color: white;
}

#favoritesPage .add-to-cart {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

#favoritesPage .add-to-cart:hover {
  background: #0056b3;
  transform: translateY(-1px);
}
