/* Página Favoritos — secção produtos + grelha */
.fav-section {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid #e8eaed;
}

.fav-section__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.fav-section__head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.fav-section__lead {
  font-size: 0.9375rem;
  color: var(--acc-muted, #5c6360);
  line-height: 1.55;
  margin: 0 0 1.5rem;
  max-width: 62ch;
}

.fav-empty {
  text-align: center;
  padding: 2rem 1.25rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--acc-muted, #5c6360);
  line-height: 1.55;
  max-width: 42rem;
  margin: 0 auto;
}

.fav-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.fav-card {
  background: #f7f8fa;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.fav-card:hover {
  border-color: rgba(255, 124, 0, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
}

.fav-card__img {
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.fav-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fav-card__body {
  padding: 0.65rem 0.75rem 0.85rem;
}
.fav-card__name {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fav-card__price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-primary, #1b6d3d);
  margin: 0;
}

.fav-card__remove {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.25rem;
  border: none;
  background: none;
  font-size: 0.7rem;
  font-weight: 600;
  color: #c62828;
  cursor: pointer;
  font-family: inherit;
}
.fav-card__remove:hover {
  text-decoration: underline;
}
