/* ========================================
   🎨 ADVANCED NOTIFICATION SYSTEM V2.0
   ======================================== */

/* Reset & Base Rules */
.notification * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.notification i,
.notification .fa,
.notification .fas,
.notification .far,
.notification .fab {
    color: inherit !important;
    transition: all 0.3s ease;
}

/* ========================================
   📦 NOTIFICATION CONTAINER
   ======================================== */
.notification-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;
    max-width: 420px;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========================================
   🔔 NOTIFICATION BASE STYLES
   ======================================== */
.notification {
    margin-bottom: 0;
    pointer-events: auto;
    transform: translateX(120%) scale(0.8) rotate(8deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(240, 240, 255, 0.9) 100%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 2px 4px rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(30px) saturate(200%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 350px;
    animation: none;
}

/* Modern Glassmorphism Effect */
.notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Top Accent Line */
.notification::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        transparent,
        currentColor,
        transparent
    );
    opacity: 0.8;
    animation: shimmerLine 3s infinite ease-in-out;
}

@keyframes shimmerLine {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0.3;
    }
    50% {
        transform: translateX(100%);
        opacity: 0.8;
    }
}

/* ========================================
   ✨ NOTIFICATION ANIMATIONS
   ======================================== */
@keyframes floatIn {
    0% {
        transform: translateX(120%) translateY(-30px) scale(0.7) rotate(12deg);
        opacity: 0;
        filter: blur(10px);
    }
    50% {
        transform: translateX(-15px) translateY(8px) scale(1.05) rotate(-3deg);
        opacity: 0.8;
        filter: blur(2px);
    }
    75% {
        transform: translateX(5px) translateY(-3px) scale(0.98) rotate(1deg);
        opacity: 0.95;
        filter: blur(0px);
    }
    100% {
        transform: translateX(0) translateY(0) scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0px);
    }
}

.notification-show {
    transform: translateX(0) scale(1) rotate(0deg);
    opacity: 1;
    animation: floatIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
               gentleBounce 0.6s ease-out 0.8s,
               breathe 6s infinite ease-in-out 2s;
}

.notification-hide {
    transform: translateX(120%) scale(0.85) rotate(5deg);
    opacity: 0;
    filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(-8px) translateY(-4px) scale(1.02);
    }
    50% {
        transform: translateX(4px) translateY(2px) scale(0.98);
    }
    75% {
        transform: translateX(-2px) translateY(-1px) scale(1.01);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.01) translateY(-2px);
        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.35),
            0 15px 40px rgba(0, 0, 0, 0.25);
    }
}

/* ========================================
   🎨 NOTIFICATION TYPES - ENHANCED COLORS
   ======================================== */

/* ✅ SUCCESS - Premium Green */
.notification-success {
    background: linear-gradient(
        135deg,
        rgba(16, 185, 129, 0.95) 0%,
        rgba(5, 150, 105, 0.9) 50%,
        rgba(4, 120, 87, 0.85) 100%
    );
    border: 2px solid rgba(167, 243, 208, 0.5);
    color: #ffffff;
    box-shadow:
        0 20px 60px rgba(16, 185, 129, 0.4),
        0 10px 30px rgba(5, 150, 105, 0.3),
        0 0 0 1px rgba(167, 243, 208, 0.3) inset;
}

.notification-success::after {
    background: linear-gradient(90deg, transparent, #6ee7b7, transparent);
}

/* ❌ ERROR - Premium Red */
.notification-error {
    background: linear-gradient(
        135deg,
        rgba(239, 68, 68, 0.95) 0%,
        rgba(220, 38, 38, 0.9) 50%,
        rgba(185, 28, 28, 0.85) 100%
    );
    border: 2px solid rgba(254, 202, 202, 0.5);
    color: #ffffff;
    box-shadow:
        0 20px 60px rgba(239, 68, 68, 0.4),
        0 10px 30px rgba(220, 38, 38, 0.3),
        0 0 0 1px rgba(254, 202, 202, 0.3) inset;
}

.notification-error::after {
    background: linear-gradient(90deg, transparent, #fca5a5, transparent);
}

/* ⚠️ WARNING - Premium Orange/Yellow */
.notification-warning {
    background: linear-gradient(
        135deg,
        rgba(251, 191, 36, 0.95) 0%,
        rgba(245, 158, 11, 0.9) 50%,
        rgba(217, 119, 6, 0.85) 100%
    );
    border: 2px solid rgba(254, 243, 199, 0.5);
    color: #ffffff;
    box-shadow:
        0 20px 60px rgba(251, 191, 36, 0.4),
        0 10px 30px rgba(245, 158, 11, 0.3),
        0 0 0 1px rgba(254, 243, 199, 0.3) inset;
}

.notification-warning::after {
    background: linear-gradient(90deg, transparent, #fde68a, transparent);
}

/* 📢 ALERT - Premium Dark Orange */
.notification-alert {
    background: linear-gradient(
        135deg,
        rgba(249, 115, 22, 0.95) 0%,
        rgba(234, 88, 12, 0.9) 50%,
        rgba(194, 65, 12, 0.85) 100%
    );
    border: 2px solid rgba(254, 215, 170, 0.5);
    color: #ffffff;
    box-shadow:
        0 20px 60px rgba(249, 115, 22, 0.4),
        0 10px 30px rgba(234, 88, 12, 0.3),
        0 0 0 1px rgba(254, 215, 170, 0.3) inset;
}

.notification-alert::after {
    background: linear-gradient(90deg, transparent, #fed7aa, transparent);
}

/* 📘 NOTICE/INFO - Premium Blue */
.notification-notice {
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.95) 0%,
        rgba(37, 99, 235, 0.9) 50%,
        rgba(29, 78, 216, 0.85) 100%
    );
    border: 2px solid rgba(191, 219, 254, 0.5);
    color: #ffffff;
    box-shadow:
        0 20px 60px rgba(59, 130, 246, 0.4),
        0 10px 30px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(191, 219, 254, 0.3) inset;
}

.notification-notice::after {
    background: linear-gradient(90deg, transparent, #93c5fd, transparent);
}

/* ========================================
   📝 NOTIFICATION CONTENT
   ======================================== */
.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    color: #ffffff;
    position: relative;
    z-index: 2;
    gap: 16px;
}

/* ========================================
   🎯 NOTIFICATION ICON - ENHANCED
   ======================================== */
.notification-icon {
    margin-right: 0;
    margin-top: 0;
    font-size: 32px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    animation: iconBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.notification-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    animation: iconPulse 2s infinite;
}

/* Icon Colors - Bright & Clear */
.notification-success .notification-icon {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.notification-error .notification-icon {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.notification-warning .notification-icon {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.notification-notice .notification-icon {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.notification-alert .notification-icon {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.25);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes iconBounce {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.8;
    }
    70% {
        transform: scale(0.9) rotate(-5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ========================================
   📄 NOTIFICATION TEXT
   ======================================== */
.notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notification-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    animation: titleSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    line-height: 1.3;
}

.notification-message {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    animation: messageSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
    font-weight: 500;
}

@keyframes titleSlideIn {
    0% {
        transform: translateX(30px) translateY(-10px);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes messageSlideIn {
    0% {
        transform: translateX(40px) translateY(-5px);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* ========================================
   ❌ CLOSE BUTTON - MODERN DESIGN
   ======================================== */
.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    margin-left: 0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.9;
    backdrop-filter: blur(10px);
    animation: closeButtonBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.notification-close::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: scale(0);
    transition: transform 0.3s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: scale(1.1) rotate(90deg);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.notification-close:hover::before {
    transform: scale(1);
}

.notification-close:active {
    transform: scale(0.95) rotate(90deg);
}

@keyframes closeButtonBounce {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 0.7;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
}

/* ========================================
   ⏱️ PROGRESS BAR - ENHANCED
   ======================================== */
.notification-progress {
    height: 6px;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border-radius: 0 0 18px 18px;
}

.notification-progress-bar {
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    animation: progress linear;
    transform-origin: left;
    box-shadow:
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 10px rgba(255, 255, 255, 0.4);
    position: relative;
}

.notification-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    animation: progressShimmer 1.5s infinite;
}

@keyframes progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@keyframes progressShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

/* ========================================
   📱 RTL SUPPORT - RIGHT TO LEFT
   ======================================== */
[dir="rtl"] .notification-container {
    right: auto;
    left: 24px;
}

[dir="rtl"] .notification {
    transform: translateX(-120%) scale(0.8) rotate(-8deg);
}

[dir="rtl"] .notification-show {
    transform: translateX(0) scale(1) rotate(0deg);
}

[dir="rtl"] .notification-hide {
    transform: translateX(-120%) scale(0.85) rotate(-5deg);
}

[dir="rtl"] .notification-icon {
    margin-right: 0;
    margin-left: 0;
}

[dir="rtl"] .notification-close {
    margin-left: 0;
    margin-right: 0;
}

@keyframes gentleBounceRTL {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(8px) translateY(-4px) scale(1.02);
    }
    50% {
        transform: translateX(-4px) translateY(2px) scale(0.98);
    }
    75% {
        transform: translateX(2px) translateY(-1px) scale(1.01);
    }
}

/* ========================================
   📱 MOBILE RESPONSIVE - OPTIMIZED
   ======================================== */
@media (max-width: 480px) {
    .notification-container {
        top: 16px;
        right: 16px;
        left: 16px;
        max-width: none;
        gap: 12px;
    }

    .notification {
        margin-bottom: 0;
        border-radius: 16px;
        min-width: unset;
    }

    .notification-content {
        padding: 20px;
        gap: 12px;
    }

    .notification-icon {
        font-size: 28px;
        min-width: 42px;
        height: 42px;
    }

    .notification-title {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .notification-message {
        font-size: 13px;
        line-height: 1.5;
    }

    .notification-close {
        padding: 6px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    [dir="rtl"] .notification-container {
        left: 16px;
        right: 16px;
    }
}

/* ========================================
   🌟 HOVER EFFECTS
   ======================================== */
.notification:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification:hover .notification-icon {
    transform: scale(1.1) rotate(10deg);
}

.notification:hover .notification-progress-bar {
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 15px rgba(255, 255, 255, 0.6);
}

/* ========================================
   🎨 NOTIFICATION TYPES ENHANCEMENTS
   ======================================== */

/* Desktop Icons - Enhanced Colors */
.notification-btn-desktop.notifications svg {
    color: #ff4757;
    filter: drop-shadow(0 2px 8px rgba(255, 71, 87, 0.4));
    transition: all 0.3s ease;
}

.notification-btn-desktop.notifications:hover svg {
    color: #ff6b81;
    filter: drop-shadow(0 4px 12px rgba(255, 71, 87, 0.6));
    transform: scale(1.1) rotate(10deg);
}

.notification-btn-desktop.admin-messages svg {
    color: #007bff;
    filter: drop-shadow(0 2px 8px rgba(0, 123, 255, 0.4));
    transition: all 0.3s ease;
}

.notification-btn-desktop.admin-messages:hover svg {
    color: #3395ff;
    filter: drop-shadow(0 4px 12px rgba(0, 123, 255, 0.6));
    transform: scale(1.1) rotate(-10deg);
}

.notification-btn-desktop.charges svg {
    color: #2ed573;
    filter: drop-shadow(0 2px 8px rgba(46, 213, 115, 0.4));
    transition: all 0.3s ease;
}

.notification-btn-desktop.charges:hover svg {
    color: #7bed9f;
    filter: drop-shadow(0 4px 12px rgba(46, 213, 115, 0.6));
    transform: scale(1.1) rotate(10deg);
}

/* Desktop Dropdown Headers - Enhanced */
.notification-dropdown-desktop.notifications .notification-header-desktop {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 71, 87, 0.1));
    border-bottom: 2px solid rgba(255, 71, 87, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.2);
}

.notification-dropdown-desktop.admin-messages .notification-header-desktop {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    border-bottom: 2px solid rgba(0, 123, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.notification-dropdown-desktop.charges .notification-header-desktop {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.2), rgba(46, 213, 115, 0.1));
    border-bottom: 2px solid rgba(46, 213, 115, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(46, 213, 115, 0.2);
}

/* Desktop Dropdown Lists - Enhanced Glassmorphism */
.notification-dropdown-desktop.notifications .notification-list-desktop {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.08), rgba(255, 71, 87, 0.03));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 71, 87, 0.15);
}

.notification-dropdown-desktop.admin-messages .notification-list-desktop {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.08), rgba(0, 123, 255, 0.03));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 123, 255, 0.15);
}

.notification-dropdown-desktop.charges .notification-list-desktop {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.08), rgba(46, 213, 115, 0.03));
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(46, 213, 115, 0.15);
}

/* Tablet Icons - Enhanced with Animations */
.notification-btn-tablet.notifications svg {
    color: #ff4757;
    filter: drop-shadow(0 2px 8px rgba(255, 71, 87, 0.4));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification-btn-tablet.notifications:hover svg {
    color: #ff6b81;
    filter: drop-shadow(0 4px 12px rgba(255, 71, 87, 0.6));
    transform: scale(1.15) rotate(15deg);
}

.notification-btn-tablet.admin-messages svg {
    color: #007bff;
    filter: drop-shadow(0 2px 8px rgba(0, 123, 255, 0.4));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification-btn-tablet.admin-messages:hover svg {
    color: #3395ff;
    filter: drop-shadow(0 4px 12px rgba(0, 123, 255, 0.6));
    transform: scale(1.15) rotate(-15deg);
}

.notification-btn-tablet.charges svg {
    color: #2ed573;
    filter: drop-shadow(0 2px 8px rgba(46, 213, 115, 0.4));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification-btn-tablet.charges:hover svg {
    color: #7bed9f;
    filter: drop-shadow(0 4px 12px rgba(46, 213, 115, 0.6));
    transform: scale(1.15) rotate(15deg);
}

/* Tablet Dropdown Headers - Premium Design */
.notification-dropdown-tablet.notifications .notification-header-tablet {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.25), rgba(255, 71, 87, 0.12));
    border-bottom: 2px solid rgba(255, 71, 87, 0.35);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 6px 16px rgba(255, 71, 87, 0.25);
}

.notification-dropdown-tablet.admin-messages .notification-header-tablet {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.25), rgba(0, 123, 255, 0.12));
    border-bottom: 2px solid rgba(0, 123, 255, 0.35);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.25);
}

.notification-dropdown-tablet.charges .notification-header-tablet {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.25), rgba(46, 213, 115, 0.12));
    border-bottom: 2px solid rgba(46, 213, 115, 0.35);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 6px 16px rgba(46, 213, 115, 0.25);
}

/* Tablet Dropdown Lists - Advanced Glassmorphism */
.notification-dropdown-tablet.notifications .notification-list-tablet {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.1), rgba(255, 71, 87, 0.04));
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 71, 87, 0.2);
    box-shadow: 0 8px 24px rgba(255, 71, 87, 0.15);
}

.notification-dropdown-tablet.admin-messages .notification-list-tablet {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.04));
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15);
}

.notification-dropdown-tablet.charges .notification-list-tablet {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(46, 213, 115, 0.04));
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(46, 213, 115, 0.2);
    box-shadow: 0 8px 24px rgba(46, 213, 115, 0.15);
}

/* Mobile Icons - Premium Touch Effects */
.mobile-header-notification-btn.notifications svg {
    color: #ff4757;
    filter: drop-shadow(0 3px 10px rgba(255, 71, 87, 0.5));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-header-notification-btn.notifications:active svg {
    color: #ff6b81;
    filter: drop-shadow(0 5px 15px rgba(255, 71, 87, 0.7));
    transform: scale(1.2) rotate(20deg);
}

.mobile-header-notification-btn.admin-messages svg {
    color: #007bff;
    filter: drop-shadow(0 3px 10px rgba(0, 123, 255, 0.5));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-header-notification-btn.admin-messages:active svg {
    color: #3395ff;
    filter: drop-shadow(0 5px 15px rgba(0, 123, 255, 0.7));
    transform: scale(1.2) rotate(-20deg);
}

.mobile-header-notification-btn.charges svg {
    color: #2ed573;
    filter: drop-shadow(0 3px 10px rgba(46, 213, 115, 0.5));
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-header-notification-btn.charges:active svg {
    color: #7bed9f;
    filter: drop-shadow(0 5px 15px rgba(46, 213, 115, 0.7));
    transform: scale(1.2) rotate(20deg);
}

/* Mobile Dropdown Headers - Touch-Optimized */
.mobile-header-notification-dropdown.notifications .mobile-header-notification-header {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.3), rgba(255, 71, 87, 0.15));
    border-bottom: 3px solid rgba(255, 71, 87, 0.4);
    backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.3);
}

.mobile-header-notification-dropdown.admin-messages .mobile-header-notification-header {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.3), rgba(0, 123, 255, 0.15));
    border-bottom: 3px solid rgba(0, 123, 255, 0.4);
    backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.mobile-header-notification-dropdown.charges .mobile-header-notification-header {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.3), rgba(46, 213, 115, 0.15));
    border-bottom: 3px solid rgba(46, 213, 115, 0.4);
    backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 8px 20px rgba(46, 213, 115, 0.3);
}

/* Mobile Dropdown Lists - Maximum Visual Impact */
.mobile-header-notification-dropdown.notifications .mobile-header-notification-list {
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.12), rgba(255, 71, 87, 0.05));
    backdrop-filter: blur(30px) saturate(220%);
    border: 1px solid rgba(255, 71, 87, 0.25);
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.2);
}

.mobile-header-notification-dropdown.admin-messages .mobile-header-notification-list {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.12), rgba(0, 123, 255, 0.05));
    backdrop-filter: blur(30px) saturate(220%);
    border: 1px solid rgba(0, 123, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.2);
}

.mobile-header-notification-dropdown.charges .mobile-header-notification-list {
    background: linear-gradient(135deg, rgba(46, 213, 115, 0.12), rgba(46, 213, 115, 0.05));
    backdrop-filter: blur(30px) saturate(220%);
    border: 1px solid rgba(46, 213, 115, 0.25);
    box-shadow: 0 10px 30px rgba(46, 213, 115, 0.2);
}

/* ========================================
   ⭐ UNREAD NOTIFICATION STYLES - PREMIUM
   ======================================== */
.notification-item-desktop.unread,
.notification-item-tablet.unread,
.mobile-header-notification-item.unread {
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.15) 0%,
        rgba(255, 165, 0, 0.1) 50%,
        rgba(255, 140, 0, 0.08) 100%
    );
    border-left: 4px solid #ffa500;
    animation: pulseGlow 2s infinite ease-in-out;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 12px rgba(255, 165, 0, 0.2),
        inset 0 1px 0 rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.notification-item-desktop.unread:hover,
.notification-item-tablet.unread:hover,
.mobile-header-notification-item.unread:hover {
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.25) 0%,
        rgba(255, 165, 0, 0.18) 50%,
        rgba(255, 140, 0, 0.12) 100%
    );
    transform: translateX(5px);
    box-shadow:
        0 6px 16px rgba(255, 165, 0, 0.3),
        inset 0 1px 0 rgba(255, 215, 0, 0.4);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 4px 12px rgba(255, 165, 0, 0.2),
            0 0 20px rgba(255, 165, 0, 0.1),
            inset 0 1px 0 rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow:
            0 6px 20px rgba(255, 165, 0, 0.4),
            0 0 40px rgba(255, 165, 0, 0.2),
            inset 0 1px 0 rgba(255, 215, 0, 0.5);
    }
}

.notification-unread-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    border-radius: 50%;
    animation: blinkPulse 1.5s infinite ease-in-out;
    box-shadow:
        0 0 0 0 rgba(255, 71, 87, 0.7),
        0 2px 8px rgba(255, 71, 87, 0.5);
}

.notification-unread-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes blinkPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(255, 71, 87, 0.7),
            0 2px 8px rgba(255, 71, 87, 0.5);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
        box-shadow:
            0 0 0 8px rgba(255, 71, 87, 0),
            0 4px 12px rgba(255, 71, 87, 0.7);
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* ========================================
   🎯 END OF ADVANCED NOTIFICATION SYSTEM
   ======================================== */
