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

.lca-dashboard-favorites{

    width:100%;

    max-width:1280px;

    margin:60px auto;

    padding:0 20px;

}

/*==================================================
=            HEADER
==================================================*/

.lca-dashboard-header{

    margin-bottom:45px;

}

.lca-dashboard-title{

    margin:0 0 14px;

    font-size:42px;

    font-weight:700;

    color:#1F2937;

    line-height:1.2;

}

.lca-dashboard-subtitle{

    max-width:720px;

    margin:0;

    font-size:17px;

    line-height:1.8;

    color:#6B7280;

}

/*==================================================
=            STATISTICS
==================================================*/

.lca-dashboard-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-bottom:55px;

}

.lca-stat-card{

    display:flex;

    align-items:center;

    gap:22px;

    padding:28px;

    background:#FFF;

    border-radius:24px;

    box-shadow:0 10px 35px rgba(0,0,0,.07);

    transition:.30s;

}

.lca-stat-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.lca-stat-icon{

    width:70px;

    height:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    font-size:28px;

}

.lca-stat-favorites .lca-stat-icon{

    background:#FFE8EC;

    color:#E74C6A;

}

.lca-stat-rent .lca-stat-icon{

    background:#EAF8E3;

    color:#6AA84F;

}

.lca-stat-search .lca-stat-icon{

    background:#FFF3E3;

    color:#F5A623;

}

.lca-stat-number{

    display:block;

    font-size:34px;

    font-weight:700;

    color:#111827;

    line-height:1;

}

.lca-stat-label{

    display:block;

    margin-top:8px;

    color:#6B7280;

    font-size:16px;

}

/*==================================================
=            TOOLBAR
==================================================*/

.lca-favorites-toolbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

    padding:25px 30px;

    background:#FFF;

    border-radius:20px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.lca-favorites-toolbar h2{

    margin:0 0 8px;

    font-size:28px;

    color:#1F2937;

}

.lca-favorites-toolbar span{

    color:#6B7280;

    font-size:15px;

}

.lca-favorites-toolbar select{

    min-width:220px;

    padding:12px 18px;

    border:1px solid #E5E7EB;

    border-radius:12px;

    background:#FFF;

    font-size:15px;

    cursor:pointer;

}

/*==================================================
=            GRID
==================================================*/

.lca-favorites-grid{

    display:grid;

    grid-template-columns:repeat(auto-fill,minmax(330px,1fr));

    gap:30px;

}

/*==================================================
=            RESPONSIVE
==================================================*/

@media(max-width:991px){

    .lca-dashboard-stats{

        grid-template-columns:1fr;

    }

    .lca-favorites-toolbar{

        flex-direction:column;

        align-items:flex-start;

        gap:20px;

    }

}



/*==================================================
=            EMPTY STATE
==================================================*/

.lca-no-favorites{

    width:100%;

    padding:80px 40px;

    background:#FFF;

    border-radius:24px;

    text-align:center;

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

}

.lca-no-favorites-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#FFECEF;

    font-size:42px;

}

.lca-no-favorites h2{

    margin-bottom:15px;

    color:#1F2937;

    font-size:30px;

}

.lca-no-favorites p{

    max-width:550px;

    margin:0 auto 35px;

    color:#6B7280;

    line-height:1.8;

}

.lca-no-favorites-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 28px;

    background:#6AA84F;

    color:#FFF;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.25s;

}

.lca-no-favorites-button:hover{

    background:#5D9347;

    transform:translateY(-2px);

}


/*=========================================
=            REMOVE ANIMATION
=========================================*/

.lca-favorite-item{

    transition:
        opacity .35s ease,
        transform .35s ease,
        max-height .35s ease,
        margin .35s ease;

}

.lca-favorite-item.is-removing{

    opacity:0;

    transform:scale(.95);

    pointer-events:none;

}

@media(max-width:767px){

    .lca-dashboard-title{

        font-size:32px;

    }

    .lca-stat-card{

        padding:22px;

    }

    .lca-stat-icon{

        width:60px;

        height:60px;

        font-size:24px;

    }

}