/* ==========================================================================
   /favorites page — same shell rhythm as the PDP (topbar clearance,
   inner max-width), heading styled like .products__heading, then the
   wishlisted items reuse .shop-list/.shop-card as-is from products.css.
   ========================================================================== */

.favorites {
  position: relative;
  z-index: 2;
  min-height: 60vh;
  background: var(--hero-bg, #eef2e9);
  padding: clamp(5.5rem, 14vw, 7rem) clamp(1.1rem, 6vw, 3rem) clamp(4rem, 10vw, 6rem);
}

.favorites__inner {
  max-width: 76rem;
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .favorites__inner {
    max-width: 84rem;
  }
}

.favorites__heading {
  max-width: 34rem;
  margin: 0 auto clamp(2rem, 6vw, 3rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.favorites__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hero-eyebrow-green);
}

.favorites__title {
  margin: 0;
  font-family: var(--hero-font);
  font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--hero-ink);
}

.favorites__lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--hero-body);
}

.favorites__grid {
  display: none;
}

.favorites__empty {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: clamp(3rem, 10vw, 5rem) 1rem;
  color: var(--hero-body);
}

.favorites__empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(40, 104, 71, 0.08);
  color: var(--hero-green);
  font-size: 1.4rem;
}

.favorites__empty p {
  margin: 0;
  font-size: 0.95rem;
}

.favorites__empty-cta {
  font-weight: 600;
  color: var(--hero-green);
  text-decoration: none;
}

.favorites__empty-cta:hover {
  text-decoration: underline;
}
