.loq-account-favorites__empty {
  padding: 18px;
}

.loq-account-favorites__empty h3 {
  margin: 0;
  color: var(--loq-account-title-color);
  font-size: var(--loq-account-title-size);
  font-weight: var(--loq-account-title-weight);
  line-height: 1.15;
}

.loq-account-favorites__empty p {
  margin: 8px 0 0;
  color: var(--loq-account-muted-color);
  font-size: var(--loq-account-label-size);
  font-weight: var(--loq-account-body-weight);
  line-height: 1.4;
}

.loq-account-favorites__empty button {
  margin-top: 14px;
  padding: 11px 16px;
  border: 0;
  border-radius: var(--loq-radius-pill, 999px);
  color: var(--loq-on-primary, #fff);
  background: var(--loq-account-primary);
  font: inherit;
  font-size: var(--loq-account-label-size);
  font-weight: var(--loq-account-label-weight);
}

.loq-account-favorites__cards .loq-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.loq-favorite-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--loq-bottom-nav-h, 74px) + var(--loq-safe-bottom, 0px) + 16px);
  z-index: 9999;
  max-width: min(88vw, 360px);
  padding: 11px 14px;
  border: 1px solid rgb(17 19 28 / 0.08);
  border-radius: var(--loq-radius-pill, 999px);
  color: var(--loq-text, #11131a);
  background: rgb(255 255 255 / 0.94);
  box-shadow: 0 14px 34px rgb(17 19 28 / 0.16);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(14px);
}

.loq-favorite-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
