.page-title {
    text-align: center;
    margin: 2rem auto 1rem auto;
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--text-color, #333);
}

.no-favorites-message {
    text-align: center;
    margin: 3rem auto;
    padding: 2rem;
    max-width: 500px;
    border-radius: 1rem;
    background: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    color: #444;
    font-size: 1.6rem;
    display: none;
    /* hidden by default */
}

.no-favorites-message p {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #555;
}

.no-favorites-message .explore-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color, #ff9800);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    font-size: 1.4rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.no-favorites-message .explore-btn:hover {
    background: var(--primary-color-dark, #e68900);
}

.no-favorites-message.hidden {
    display: none;
}

.no-favorites-message:not(.hidden) {
    display: block;
}