/* ==========================
        FAVORITES
========================== */

.favorites-page{

    max-width:1100px;

    margin:0 auto;

    padding:140px 60px 100px;

}

.favorites-header{

    text-align:center;

    margin-bottom:70px;

}

.favorites-header h1{

    font-size:52px;

    font-weight:300;

    letter-spacing:.08em;

    margin-bottom:12px;

}

.favorites-header p{

    color:#777;

    font-size:17px;

    letter-spacing:.05em;

}

#favoritesContainer{

    display:flex;

    flex-direction:column;

    gap:22px;

}
/* ==========================
        FAVORITE CARD
========================== */

.favorite-card{

    display:flex;

    align-items:center;

    gap:28px;

    padding:22px;

    border:1px solid #ececec;

    border-radius:20px;

    background:#fff;

    transition:.35s;

}

.favorite-card:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 35px rgba(0,0,0,.06);

}

.favorite-card img{

    width:120px;

    height:120px;

    object-fit:cover;

    border-radius:16px;

    flex-shrink:0;

}

.favorite-info{

    flex:1;

}

.favorite-info h3{

    font-size:24px;

    font-weight:300;

    margin-bottom:10px;

}

.favorite-info p{

    color:#777;

    margin-bottom:10px;

}

.favorite-info span{

    font-size:20px;

    font-weight:500;

}

.favorite-actions{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.favorite-actions a,
.favorite-actions button{

    width:170px;

    height:48px;

    border:none;

    border-radius:999px;

    cursor:pointer;

    font-size:15px;

    transition:.3s;

}

.favorite-actions a{

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:#111;

    color:#fff;

}

.favorite-actions a:hover{

    background:#2d2d2d;

}

.favorite-actions button{

    background:#f6f6f6;

}

.favorite-actions button:hover{

    background:#ececec;

}