/* components/favorites/favorites.css */

.favorites-page-container {
  padding-top: 24px;
  padding-bottom: 80px;
}

.favorites-header {
  margin-bottom: 40px;
  text-align: right;
}

.favorites-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 8px;
}

.favorites-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Breadcrumb Styling */
.breadcrumb ol {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 13px;
  color: #9ca3af;
  gap: 8px;
}

.breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
}

.breadcrumb a:hover {
  color: var(--brand, #2ec4b6);
}

.breadcrumb .divider {
  font-size: 10px;
  color: #d1d5db;
}

.breadcrumb .active {
  color: #111827;
  font-weight: 600;
}

/* Empty State */
.fav-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fdfdfd;
  border: 1px dashed #e5e7eb;
  border-radius: 24px;
  padding: 80px 24px;
  max-width: 600px;
  margin: 40px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.fav-empty-icon {
  width: 80px;
  height: 80px;
  background: #fdf2f8;
  color: #db2777;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 24px;
  box-shadow: 0 10px 25px rgba(219, 39, 119, 0.08);
  animation: heartPulse 2s infinite ease-in-out;
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); box-shadow: 0 10px 30px rgba(219, 39, 119, 0.15); }
  100% { transform: scale(1); }
}

.fav-empty-state h2 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 12px;
}

.fav-empty-state p {
  font-size: 14px;
  color: #6b7280;
  max-width: 420px;
  line-height: 1.8;
  margin: 0 0 32px;
}

.fav-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand, #2ec4b6);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(46, 196, 182, 0.25);
  transition: all 0.25s ease;
}

.fav-empty-btn:hover {
  background: #23a89c;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(46, 196, 182, 0.35);
}

/* Grid wrappers & animations */
.fav-grid-wrapper {
  margin-top: 24px;
}

.fav-item-row {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
  .favorites-page-container {
    padding-bottom: 60px;
  }
  .favorites-header h1 {
    font-size: 24px;
  }
  .fav-empty-state {
    padding: 60px 16px;
  }
}
