/*
|--------------------------------------------------------------------------
| EnFavori mobil bildirim paneli aksiyon geri bildirimi
|--------------------------------------------------------------------------
| Masaustu tasarimina dokunmaz. Mobilde "Tumunu okundu yap" butonunu
| dokunmasi kolay, durumunu net anlatan bir aksiyona donusturur.
*/
@media (max-width: 767.98px) {
    .hm-header-notification-head {
        align-items: center !important;
        gap: 10px !important;
        padding: 13px 14px !important;
    }

    .hm-header-notification-head strong {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all] {
        appearance: none !important;
        display: inline-flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 7px !important;
        min-width: 132px !important;
        min-height: 38px !important;
        margin: 0 !important;
        padding: 0 12px !important;
        color: #ffffff !important;
        background: #13a89e !important;
        border: 1px solid #13a89e !important;
        border-radius: 11px !important;
        box-shadow: 0 5px 14px rgba(19, 168, 158, .18) !important;
        font-size: 11.5px !important;
        font-weight: 850 !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        outline: none !important;
        transition:
            transform .14s ease,
            background-color .18s ease,
            border-color .18s ease,
            box-shadow .18s ease !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all]:active {
        transform: scale(.97) !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all]:focus,
    .hm-header-notification-head [data-header-notifications-read-all]:focus-visible {
        outline: none !important;
        box-shadow:
            0 0 0 3px rgba(24, 210, 195, .18),
            0 5px 14px rgba(19, 168, 158, .18) !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all].is-reading {
        color: #0f5e59 !important;
        background: #e7faf7 !important;
        border-color: #b8ebe5 !important;
        box-shadow: none !important;
        pointer-events: none !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all].is-reading::before {
        content: "";
        width: 13px;
        height: 13px;
        flex: 0 0 13px;
        border: 2px solid rgba(15, 94, 89, .25);
        border-top-color: #0f766e;
        border-radius: 50%;
        animation: enfavoriNotificationReadSpin .7s linear infinite;
        box-sizing: border-box;
    }

    .hm-header-notification-head [data-header-notifications-read-all].is-done {
        color: #086b61 !important;
        background: #ddf8f3 !important;
        border-color: #a9e7dd !important;
        box-shadow: none !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all].is-error {
        color: #9f1239 !important;
        background: #fff1f2 !important;
        border-color: #fecdd3 !important;
        box-shadow: none !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all][disabled] {
        cursor: default !important;
        opacity: 1 !important;
    }

    .hm-header-notification-panel {
        border-radius: 16px !important;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .20) !important;
    }

    .hm-header-notification-empty {
        min-height: 118px !important;
        padding: 18px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
}

@keyframes enfavoriNotificationReadSpin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .hm-header-notification-head [data-header-notifications-read-all] {
        transition: none !important;
    }

    .hm-header-notification-head [data-header-notifications-read-all].is-reading::before {
        animation-duration: 1.4s;
    }
}
