/* =========================
   Notification Module
========================= */

.notification-wrapper{
    position: relative;
    margin-right: 18px;
}

.notification-bell{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.notification-bell:hover{
    transform: translateY(-2px);
}

.notification-bell i{
    font-size: 20px;
    color: #222;
}

/* Blinking Dot */

.notify-dot{
    width: 12px;
    height: 12px;
    background: #55354c;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 12px;
    border: 2px solid #fff;
    animation: blink 1s infinite;
}

@keyframes blink{
    0%{
        transform: scale(1);
        opacity: 1;
    }
    50%{
        transform: scale(1.4);
        opacity: .4;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

/* Dropdown */

.notification-dropdown{
    position: absolute;
    top: 65px;
    right: 0;
    width: 360px;
    background: #fff;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    display: none;
    overflow: hidden;
    z-index: 999;
}

.notification-dropdown.active{
    display: block;
    animation: smoothDrop .3s ease;
}

@keyframes smoothDrop{
    from{
        opacity: 0;
        transform: translateY(15px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */

.notification-header{
    padding: 18px 20px;
    background: #f8f8f8;
}

.notification-header h4{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

/* Item */

.notification-item{
    display: flex;
    gap: 15px;
    padding: 16px 20px;
    text-decoration: none;
    transition: .3s;
}

.notification-item:hover{
    background: #fafafa;
}

.notify-icon{
    min-width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notify-icon i{
    color: #fff;
    font-size: 18px;
}

.notification-item hr{
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 8px 0 0 0;
}

/* notification-dropdown को छुपाने के लिए */
.notification-dropdown {
    display: none;
}

/* active क्लास होने पर दिखाने के लिए */
.notification-dropdown.active {
    display: block !important;
}

.notification-dropdown {
    position: absolute !important;
    z-index: 9999 !important;
}
.notify-icon:hover{
    transform: scale(1.08);
}

/* Different Notification Colors */

.notify-icon.wishlist{
    background: linear-gradient(135deg,#ff4d6d,#ff758f);
    box-shadow: 0 8px 18px rgba(255, 77, 109, 0.25);
    transform: scale(1);
    transition: 0.2s ease;
}

.notify-icon.booking{
    background: linear-gradient(135deg,#00b894,#00d2a0);
    box-shadow: 0 8px 18px rgba(0, 184, 148, 0.25);
    transform: scale(1);
    transition: 0.2s ease;
}

.notify-icon.reschedule{
    background: linear-gradient(135deg,#0984e3,#74b9ff);
    box-shadow: 0 8px 18px rgba(9, 132, 227, 0.25);
    transform: scale(1);
    transition: 0.2s ease;
}

.notify-icon.cancel{
    /* background: linear-gradient(135deg,#636e72,#2d3436); */
     background: linear-gradient(135deg,#ff6b6b,#c0392b);
    box-shadow: 0 8px 18px rgba(183, 28, 28, 0.4);
    transform: scale(1);
    transition: 0.2s ease;
}

.notify-icon.gift-purchased{
    background: linear-gradient(135deg,#ff8c00,#ffa502);
     box-shadow: 0 10px 22px rgba(255, 140, 0, 0.30);
    transform: scale(1);
    transition: 0.2s ease;
}

.notify-icon.gift-received{
    background: linear-gradient(135deg,#9b59b6,#8e44ad);
    box-shadow: 0 8px 18px rgba(155, 89, 182, 0.25);
    transform: scale(1);
    transition: 0.2s ease;
}

.notify-content{
    width: 100%;
}

.notify-content h5{
    margin: 0;
    font-size: 15px;
    color: #111;
    font-weight: 700;
}

.notify-content p{
    margin: 5px 0 10px;
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

.notify-content hr{
    border: none;
    border-top: 1px solid #f1f1f1;
    margin: 0;
}

/* Footer */

.notification-footer{
    padding: 15px 20px;
    text-align: center;
    background: #fafafa;
}

.notification-footer a{
    text-decoration: none;
    color: #ff3b30;
    font-weight: 600;
    font-size: 14px;
}

.notification-footer i{
    margin-right: 5px;
}

.empty-notification{
    padding: 35px 20px;
    text-align: center;
}

.empty-notification i{
    font-size: 42px;
    color: #cfcfcf;
    margin-bottom: 12px;
}

.empty-notification h5{
    font-size: 16px;
    margin-bottom: 6px;
    color: #222;
}

.empty-notification p{
    font-size: 13px;
    color: #888;
    margin: 0;
}