/* ===========================
   WISHLIST PAGE
=========================== */

.wishlist-hero{
    padding:55px 8%;
    background:linear-gradient(135deg,#eef5ff,#ffffff);
    text-align:center;
}

.wishlist-tag{
    display:inline-block;
    background:#F5A623;
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.wishlist-hero h1{
    color:#0A2A66;
    font-size:40px;
    margin:15px 0 8px;
}

.wishlist-hero p{
    color:#777;
    font-size:15px;
}


/* ===========================
   WISHLIST SECTION
=========================== */

.wishlist-section{
    padding:55px 8%;
    background:#f8fafc;
    min-height:500px;
}

.wishlist-container{
    max-width:1200px;
    margin:auto;
}


/* ===========================
   HEADING
=========================== */

.wishlist-heading{
    background:#fff;
    border-radius:15px;
    padding:22px 25px;
    margin-bottom:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.wishlist-heading h2{
    margin:0 0 5px;
    color:#0A2A66;
    font-size:22px;
}

.wishlist-heading p{
    margin:0;
    color:#777;
    font-size:14px;
}


/* ===========================
   WISHLIST GRID
=========================== */

.wishlist-items{
    display:grid;
    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:20px;
}


/* ===========================
   WISHLIST CARD
=========================== */

.wishlist-card{
    background:#fff;
    border-radius:15px;

    padding:18px;

    display:flex;
    gap:18px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);

    transition:.25s ease;
}

.wishlist-card:hover{
    transform:translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.09);
}


/* ===========================
   IMAGE
=========================== */

.wishlist-image-box{
    width:120px;
    height:155px;

    flex-shrink:0;

    background:#f5f7fa;

    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

.wishlist-image{
    width:100%;
    height:100%;

    object-fit:contain;

    padding:7px;
}


/* ===========================
   INFORMATION
=========================== */

.wishlist-info{
    flex:1;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.wishlist-info h3{
    color:#0A2A66;

    font-size:17px;

    line-height:1.4;

    margin:0 0 7px;
}

.wishlist-author{
    color:#777;

    font-size:13px;

    margin:0 0 10px;
}

.wishlist-price{
    color:#009688;

    font-size:18px;

    margin-bottom:15px;
}


/* ===========================
   ACTION BUTTONS
=========================== */

.wishlist-actions{
    display:flex;

    align-items:center;

    gap:8px;

    flex-wrap:wrap;
}

.wishlist-cart-btn,
.wishlist-remove-btn{
    border:none;

    border-radius:7px;

    padding:9px 12px;

    font-size:12px;

    font-weight:600;

    cursor:pointer;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:6px;

    transition:.2s ease;
}


/* ADD TO CART */

.wishlist-cart-btn{
    background:#0A2A66;

    color:#fff;
}

.wishlist-cart-btn:hover{
    background:#F5A623;

    transform:translateY(-1px);
}


/* REMOVE */

.wishlist-remove-btn{
    background:#fff1f1;

    color:#e53935;
}

.wishlist-remove-btn:hover{
    background:#e53935;

    color:#fff;
}


/* ===========================
   EMPTY WISHLIST
=========================== */

.empty-wishlist{
    background:#fff;

    border-radius:15px;

    padding:60px 20px;

    text-align:center;

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);
}

.empty-wishlist-icon{
    width:75px;
    height:75px;

    margin:0 auto 18px;

    border-radius:50%;

    background:#eef5ff;

    color:#0A2A66;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:28px;
}

.empty-wishlist h2{
    color:#0A2A66;

    margin:0 0 8px;

    font-size:23px;
}

.empty-wishlist p{
    color:#777;

    font-size:14px;

    margin-bottom:22px;
}


/* ===========================
   BROWSE BUTTON
=========================== */

.browse-books-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:8px;

    background:#0A2A66;

    color:#fff;

    text-decoration:none;

    padding:11px 20px;

    border-radius:8px;

    font-size:13px;

    font-weight:600;

    transition:.25s;
}

.browse-books-btn:hover{
    background:#F5A623;

    transform:translateY(-1px);
}


/* ===========================
   WISHLIST POPUP
=========================== */

.wishlist-popup{
    position:fixed;

    top:25px;
    right:25px;

    width:300px;

    min-height:58px;

    padding:10px 13px;

    background:#fff;

    border-radius:10px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);

    display:flex;

    align-items:center;

    gap:10px;

    z-index:9999;

    opacity:0;

    transform:translateX(120%);

    transition:.3s ease;

    box-sizing:border-box;
}

.wishlist-popup.show{
    opacity:1;

    transform:translateX(0);
}

.wishlist-popup-icon{
    width:34px;
    height:34px;

    min-width:34px;

    border-radius:50%;

    background:#e7f8f3;

    color:#009688;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:14px;
}

.wishlist-popup span{
    flex:1;

    color:#333;

    font-size:13px;

    font-weight:500;
}

.wishlist-popup-close{
    border:none;

    background:none;

    color:#999;

    cursor:pointer;

    font-size:12px;
}

.wishlist-popup-close:hover{
    color:#333;
}


/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

    .wishlist-items{
        grid-template-columns:1fr;
    }

}


@media(max-width:600px){

    .wishlist-hero{
        padding:45px 5%;
    }

    .wishlist-hero h1{
        font-size:32px;
    }

    .wishlist-section{
        padding:40px 5%;
    }

    .wishlist-card{
        padding:15px;
        gap:13px;
    }

    .wishlist-image-box{
        width:90px;
        height:120px;
    }

    .wishlist-info h3{
        font-size:15px;
    }

    .wishlist-price{
        font-size:16px;
    }

    .wishlist-actions{
        gap:6px;
    }

    .wishlist-cart-btn,
    .wishlist-remove-btn{
        padding:8px 10px;
        font-size:11px;
    }

    .wishlist-popup{
        top:15px;
        right:15px;
        left:15px;
        width:auto;
    }

}


/* =========================================================
   WISHLIST FOOTER COLOR FIX
========================================================= */

footer {
    background: #071d49 !important;
    color: #fff !important;
}

footer .footer-column h3 {
    color: #F5A623 !important;
}

footer .footer-column p,
footer .footer-column a {
    color: #d7deeb !important;
}

footer .footer-column a:hover {
    color: #F5A623 !important;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12) !important;
}

footer .footer-bottom p {
    color: #b9c4d6 !important;
}