/* Push footer to bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.favorites-page {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .favorites-page {
        padding: 4.25rem 0.5rem 2rem;
    }
    .favorites-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}
@media screen and (max-width: 480px) {
    .favorites-page {
        padding: 2.5rem 0.25rem 1rem;
    }
    .favorites-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
    .favorites-page__title {
        font-size: 1.1rem;
    }
}
.favorites-page {
    padding: 6rem 1.5rem 4rem;
    background: #fff;
}

.favorites-page__container {
    max-width: 1400px;
    margin: 0 auto;
}

.favorites-page__header {
    text-align: center;
    margin-bottom: 2rem;
}

.favorites-page__title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 300;
    letter-spacing: 0.06em;
}

.favorites-page__subtitle {
    color: #666;
    margin-top: 0.5rem;
}

.favorites-page__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.8rem;
}

.favorites-page .product-card__image-wrapper {
    aspect-ratio: 3 / 4.6;
}

.favorites-page__empty {
    text-align: center;
    color: #777;
    padding: 3rem 1rem;
    border: 1px dashed #ddd;
    border-radius: 8px;
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: rgba(255, 255, 255, 0.95);
    color: #666;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    border-color: #c44;
    color: #c44;
}

.favorite-btn.favorite-btn--active {
    color: #c44;
    border-color: #c44;
}

.favorites-page .product-card {
    position: relative;
}
