/* Extra styles for Favourites page */

.fav-loading {
    text-align: center;
    padding: 60px 0;
}


.fav-section {
    padding: 60px 0 100px;
    min-height: calc(100vh - var(--header-height, 74px));
    background: transparent;
}

.fav-heading {
    margin-bottom: 10px;
}

.fav-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 40px;
    transition: color 0.2s;
}

.fav-back-btn:hover {
    color: var(--red);
}

.fav-empty {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    gap: 20px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.fav-empty-icon {
    font-size: 60px;
    color: var(--red);
    margin-bottom: 10px;
}

.active-fav {
    color: var(--red) !important;
}

/* Extra silhouettes for the middle area */
body.fav-body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('images/car-silhouette-rols.png'), 
        url('images/car-silhouette.png');
    background-repeat: no-repeat;
    background-size: 
        450px auto, 
        380px auto;
    background-position:  
        50% 65%, 
        45% 20%;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
}