/* =====================================================
   NOTIFICATION SYSTEM CSS
   Toast Notifications
   ===================================================== */

.hh-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: #ffffff;
    padding: 18px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 99999;
    min-width: 300px;
    max-width: 400px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #C5A572;
}

.hh-notification.show {
    right: 30px;
}

.hh-notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hh-notification-info .hh-notification-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.hh-notification-success .hh-notification-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #09747f;
}

.hh-notification-error .hh-notification-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.hh-notification-warning .hh-notification-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.hh-notification span {
    font-size: 15px;
    font-weight: 500;
    color: #0A1F3F;
    line-height: 1.5;
}

.hh-notification-error {
    border-left-color: #ef4444;
}

.hh-notification-success {
    border-left-color: #09747f;
}

.hh-notification-warning {
    border-left-color: #f59e0b;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .hh-notification {
        right: -100%;
        left: auto;
        min-width: 280px;
        max-width: calc(100% - 40px);
    }
    
    .hh-notification.show {
        right: 20px;
    }
}