/*======================================
GENERAL
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Inter,sans-serif;
    background:#fafafa;
    color:#111;

}

.container{

    width:90%;
    max-width:1350px;
    margin:auto;

}

/*======================================
HERO
======================================*/

.wishlist-hero{

    padding:140px 0 80px;
    text-align:center;

}

.wishlist-hero span{

    color:#C8A96A;
    letter-spacing:4px;
    font-size:12px;

}

.wishlist-hero h1{

    font-size:58px;
    margin:20px 0;

}

.wishlist-hero p{

    color:#777;
    max-width:550px;
    margin:auto;
    line-height:1.8;

}

/*======================================
GRID
======================================*/

.wishlist-section{

    padding-bottom:100px;

}

.wishlist-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

/*======================================
CARD
======================================*/

.wishlist-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    transition:.35s;

}

.wishlist-card:hover{

    transform:translateY(-8px);

}

.wishlist-image{

    overflow:hidden;

}

.wishlist-image img{

    width:100%;
    height:360px;
    object-fit:cover;
    transition:.4s;

}

.wishlist-card:hover img{

    transform:scale(1.05);

}

/*======================================
CONTENT
======================================*/

.wishlist-content{

    padding:25px;

}

.wishlist-content span{

    color:#C8A96A;
    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;

}

.wishlist-content h3{

    margin:12px 0;
    font-size:26px;
    font-weight:500;

}

.wishlist-content strong{

    font-size:22px;

}

/*======================================
BUTTONS
======================================*/

.wishlist-actions{

    display:flex;
    gap:12px;
    padding:0 25px 25px;

}

.view-btn{

    flex:1;
    background:#111;
    color:#fff;
    text-align:center;
    text-decoration:none;
    padding:15px;
    border-radius:10px;
    transition:.3s;

}

.view-btn:hover{

    background:#C8A96A;

}

.remove-btn{

    width:55px;
    border:none;
    background:#f4f4f4;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;

}

.remove-btn:hover{

    background:#e53935;
    color:#fff;

}

/*======================================
EMPTY
======================================*/

.empty-wishlist{

    grid-column:1/-1;
    text-align:center;
    padding:120px 20px;

}

.empty-wishlist h2{

    font-size:42px;
    margin-bottom:20px;

}

.empty-wishlist p{

    color:#777;
    margin-bottom:30px;

}

.empty-wishlist a{

    display:inline-block;
    padding:16px 40px;
    background:#111;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    transition:.3s;

}

.empty-wishlist a:hover{

    background:#C8A96A;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:768px){

.wishlist-hero{

padding:120px 20px 60px;

}

.wishlist-hero h1{

font-size:42px;

}

.wishlist-image img{

height:300px;

}

}