#favoritesPage { display: none; }
.favoritesHeader { padding: 18px 0 16px; }
#favoritesList { display: grid; gap: 12px; grid-template-columns: 1fr; margin-bottom: calc(88px + env(safe-area-inset-bottom)) }
.favorites-empty { min-height: 60vh; place-content: center; justify-items: center; padding: 32px; color: var(--muted); text-align: center; }
.favorites-empty h2 { margin: 12px 0 6px; color: var(--text); }
.favorites-empty p { margin: 0; line-height: 1.4; }
.favorites-empty-icon { font-size: 64px; line-height: 1; }
.favorites-loading { display: none; padding: 24px; color: var(--muted); text-align: center; }

.favorite-button { position: absolute; z-index: 10; top: 20px; right: 20px; display: grid; place-items: center; width: 44px; height: 44px; padding: 10px; border: 1px solid rgba(15, 23, 42, .08); border-radius: 50%; background: rgba(255, 255, 255, .92); color: #20242a; box-shadow: 0 4px 14px rgba(15, 23, 42, .18); }
.favorite-button svg { width: 24px; height: 24px; fill: transparent; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.favorite-button.active { color: #e53956; }
.favorite-button.active svg { fill: currentColor; }
.favorite-button:active { transform: scale(.92); }
.favorite-button:disabled { opacity: .65; cursor: wait; }
.advertLayout > .favorite-button { top: 12px; right: 24px; position: fixed;}



@media (min-width: 700px) { #favoritesList { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { #favoritesList { grid-template-columns: repeat(3, 1fr); } }