.ecig-nc-menu-item {
    position: relative;
}

.ecig-nc-bell-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 9998;
    --ecig-nc-blue: #2667ff;
    --ecig-nc-pink: #e9327c;
    --ecig-nc-orange: #ff7a3d;
    --ecig-nc-dark: #161827;
    --ecig-nc-muted: #70748a;
    --ecig-nc-border: rgba(22, 24, 39, .10);
}

.ecig-nc-menu-item > .ecig-nc-bell-wrap,
.et_pb_menu .ecig-nc-bell-wrap,
#mega-menu-wrap-primary-menu .ecig-nc-bell-wrap {
    height: 100%;
}

.ecig-nc-bell {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ecig-nc-blue), var(--ecig-nc-pink));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 22px rgba(38, 103, 255, .22);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    padding: 0;
    line-height: 1;
}

.ecig-nc-bell:hover,
.ecig-nc-bell:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(233, 50, 124, .25);
    filter: saturate(1.08);
    outline: none;
}

.ecig-nc-bell-icon {
    display: inline-flex;
    width: 21px;
    height: 21px;
}

.ecig-nc-bell-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.ecig-nc-count {
    position: absolute;
    top: -5px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ff375f;
    color: #fff;
    border: 2px solid #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 55, 95, .32);
}

.ecig-nc-count.is-hidden {
    display: none;
}

.ecig-nc-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(380px, calc(100vw - 24px));
    background: #fff;
    border: 1px solid var(--ecig-nc-border);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(18, 22, 38, .20);
    overflow: hidden;
    color: var(--ecig-nc-dark);
    text-align: left;
    z-index: 99999;
}

.ecig-nc-dropdown::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ecig-nc-blue), var(--ecig-nc-pink), var(--ecig-nc-orange));
}

.ecig-nc-head {
    padding: 17px 16px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(22, 24, 39, .08);
}

.ecig-nc-head strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--ecig-nc-dark);
}

.ecig-nc-mark-all {
    border: 0;
    background: rgba(38, 103, 255, .10);
    color: var(--ecig-nc-blue);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 10px;
    cursor: pointer;
}

.ecig-nc-mark-all:hover,
.ecig-nc-mark-all:focus-visible {
    background: rgba(38, 103, 255, .16);
    outline: none;
}

.ecig-nc-list {
    max-height: 430px;
    overflow-y: auto;
}

.ecig-nc-item {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(22, 24, 39, .07);
    background: #fff;
    color: inherit;
    display: flex;
    gap: 11px;
    padding: 13px 15px;
    text-decoration: none !important;
    cursor: pointer;
    text-align: left;
    font: inherit;
    position: relative;
}

.ecig-nc-item:last-child {
    border-bottom: 0;
}

.ecig-nc-item:hover,
.ecig-nc-item:focus-visible {
    background: #f7f8ff;
    outline: none;
}

.ecig-nc-item.is-unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    bottom: 13px;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, var(--ecig-nc-blue), var(--ecig-nc-pink));
}

.ecig-nc-item-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 12px;
    background: rgba(38, 103, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-left: 2px;
}

.ecig-nc-priority-critical .ecig-nc-item-icon,
.ecig-nc-priority-high .ecig-nc-item-icon {
    background: rgba(233, 50, 124, .12);
}

.ecig-nc-item-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.ecig-nc-item-title {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--ecig-nc-dark);
}

.ecig-nc-item-message {
    font-size: 12px;
    color: var(--ecig-nc-muted);
    line-height: 1.35;
}

.ecig-nc-item-date {
    font-size: 11px;
    color: #9a9db0;
    margin-top: 2px;
}

.ecig-nc-item.is-read {
    opacity: .72;
}

.ecig-nc-loading,
.ecig-nc-empty {
    padding: 24px 18px;
    color: var(--ecig-nc-muted);
    font-size: 13px;
    text-align: center;
}

.ecig-nc-error {
    color: #c22b4e;
}

@media (max-width: 782px) {
    .ecig-nc-bell {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .ecig-nc-dropdown {
        position: fixed;
        top: 68px;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100vh - 90px);
    }

    .ecig-nc-list {
        max-height: calc(100vh - 160px);
    }
}

/* V1.0.2 : cloche flottante à gauche, indépendante du menu */
.ecig-nc-floating {
    position: fixed;
    left: 18px;
    bottom: 22px;
    z-index: 999999;
    pointer-events: none;
}

.ecig-nc-floating .ecig-nc-bell-wrap {
    pointer-events: auto;
}

.ecig-nc-context-floating .ecig-nc-bell {
    width: 50px;
    height: 50px;
    min-width: 50px;
    box-shadow: 0 14px 35px rgba(38, 103, 255, .28), 0 8px 18px rgba(233, 50, 124, .18);
}

.ecig-nc-context-floating .ecig-nc-bell-icon,
.ecig-nc-context-floating .ecig-nc-bell-icon svg {
    width: 24px;
    height: 24px;
}

.ecig-nc-context-floating .ecig-nc-count {
    top: -6px;
    right: -6px;
    min-width: 21px;
    height: 21px;
    line-height: 17px;
    font-size: 10px;
}

.ecig-nc-context-floating .ecig-nc-dropdown {
    top: auto;
    bottom: calc(100% + 13px);
    left: 0;
}

.admin-bar .ecig-nc-floating {
    bottom: 22px;
}

@media (max-width: 782px) {
    .ecig-nc-floating {
        left: 14px;
        bottom: 16px;
    }

    .ecig-nc-context-floating .ecig-nc-bell {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .ecig-nc-context-floating .ecig-nc-dropdown {
        position: fixed;
        top: auto;
        bottom: 76px;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100vh - 100px);
    }
}

/* V1.0.3 : insertion forcée dans Mega Menu desktop + barre mobile */
.ecig-nc-force-sources {
    display: none !important;
}

.ecig-nc-forced-menu-item {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.ecig-nc-forced-menu-item > .ecig-nc-bell-wrap {
    display: inline-flex;
    align-items: center;
}

.ecig-nc-context-desktop-forced .ecig-nc-bell {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.ecig-nc-mega-toggle-block {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 42px;
    padding: 0 8px;
    line-height: 1;
}

.ecig-nc-mega-toggle-block .ecig-nc-bell-wrap {
    display: inline-flex;
    align-items: center;
}

.ecig-nc-context-mobile-forced .ecig-nc-bell {
    width: 38px;
    height: 38px;
    min-width: 38px;
    box-shadow: 0 7px 18px rgba(38, 103, 255, .22);
}

.ecig-nc-context-mobile-forced .ecig-nc-bell-icon,
.ecig-nc-context-mobile-forced .ecig-nc-bell-icon svg {
    width: 19px;
    height: 19px;
}

.ecig-nc-context-mobile-forced .ecig-nc-dropdown {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100vh - 90px);
}

@media (max-width: 980px) {
    .ecig-nc-forced-menu-item {
        display: none !important;
    }
}

/* V1.0.4 : alignement desktop + animation quand une notification est non lue */
.ecig-nc-bell-wrap.ecig-nc-has-unread:not(.is-open) .ecig-nc-bell {
    animation: ecig-nc-notif-pulse 2.6s ease-in-out infinite;
}

.ecig-nc-bell-wrap.ecig-nc-has-unread:not(.is-open) .ecig-nc-bell-icon {
    animation: ecig-nc-notif-ring 2.6s ease-in-out infinite;
    transform-origin: 50% 12%;
}

.ecig-nc-bell-wrap.ecig-nc-just-updated .ecig-nc-count {
    animation: ecig-nc-badge-pop .45s ease both;
}

@keyframes ecig-nc-notif-pulse {
    0%, 55%, 100% {
        box-shadow: 0 8px 22px rgba(38, 103, 255, .22);
        transform: translateY(0) scale(1);
    }
    12% {
        box-shadow: 0 0 0 7px rgba(233, 50, 124, .14), 0 12px 28px rgba(233, 50, 124, .28);
        transform: translateY(-1px) scale(1.04);
    }
    24% {
        box-shadow: 0 0 0 12px rgba(38, 103, 255, 0), 0 8px 22px rgba(38, 103, 255, .22);
        transform: translateY(0) scale(1);
    }
}

@keyframes ecig-nc-notif-ring {
    0%, 55%, 100% { transform: rotate(0); }
    8% { transform: rotate(12deg); }
    16% { transform: rotate(-12deg); }
    24% { transform: rotate(8deg); }
    32% { transform: rotate(-6deg); }
    40% { transform: rotate(0); }
}

@keyframes ecig-nc-badge-pop {
    0% { transform: scale(.75); }
    55% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

/* Aligne la cloche forcée comme un vrai item de menu Mega Menu / Divi */
#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.ecig-nc-forced-menu-item,
ul.mega-menu > li.ecig-nc-forced-menu-item,
.et-menu-nav > ul > li.ecig-nc-forced-menu-item,
.et_pb_menu__menu > nav > ul > li.ecig-nc-forced-menu-item {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: top !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 16px !important;
    line-height: 1 !important;
    height: auto !important;
    align-self: stretch !important;
}

.ecig-nc-forced-menu-item .ecig-nc-bell-wrap,
.ecig-nc-forced-menu-item .ecig-nc-bell,
.ecig-nc-forced-menu-item button.ecig-nc-bell {
    margin: 0 !important;
    top: auto !important;
    bottom: auto !important;
    transform: none;
}

.ecig-nc-context-desktop-forced .ecig-nc-bell {
    width: 36px;
    height: 36px;
    min-width: 36px;
}

.ecig-nc-context-desktop-forced .ecig-nc-bell-icon,
.ecig-nc-context-desktop-forced .ecig-nc-bell-icon svg {
    width: 18px;
    height: 18px;
}

.ecig-nc-context-desktop-forced .ecig-nc-count {
    top: -7px;
    right: -8px;
}

/* V1.0.5 : mise à jour directe sans rechargement */
.ecig-nc-live-toast {
    position: fixed;
    left: 18px;
    bottom: 86px;
    z-index: 1000000;
    border: 0;
    border-radius: 16px;
    background: #fff;
    color: #161827;
    box-shadow: 0 16px 45px rgba(18, 22, 38, .22);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(14px) scale(.96);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    border: 1px solid rgba(22, 24, 39, .10);
    font-family: inherit;
    text-align: left;
}

.ecig-nc-live-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ecig-nc-live-toast strong {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.1;
}

.ecig-nc-live-toast em {
    font-size: 11px;
    font-style: normal;
    color: #70748a;
    margin-left: 2px;
}

@media (max-width: 782px) {
    .ecig-nc-live-toast {
        left: 12px;
        right: 12px;
        bottom: 72px;
        justify-content: center;
    }
}

/* V1.0.6 : PWA / Web Push */
.ecig-nc-push-box {
    margin: 10px 12px 0;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(38, 103, 255, .08), rgba(233, 50, 124, .08));
    border: 1px solid rgba(38, 103, 255, .12);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ecig-nc-push-box[hidden] {
    display: none !important;
}

.ecig-nc-push-text {
    flex: 1;
    font-size: 12px;
    line-height: 1.25;
    color: #33384d;
    font-weight: 650;
}

.ecig-nc-push-enable {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ecig-nc-blue), var(--ecig-nc-pink));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 7px 10px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(38, 103, 255, .20);
}

.ecig-nc-push-enable:disabled {
    opacity: .65;
    cursor: wait;
}

.ecig-nc-push-box.is-enabled {
    background: rgba(32, 184, 120, .10);
    border-color: rgba(32, 184, 120, .20);
}

.ecig-nc-push-box.is-blocked,
.ecig-nc-push-box.is-error,
.ecig-nc-push-box.is-unsupported {
    background: rgba(255, 122, 61, .10);
    border-color: rgba(255, 122, 61, .20);
}

@media (max-width: 782px) {
    .ecig-nc-push-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .ecig-nc-push-enable {
        width: 100%;
    }
}

/* V1.0.55 : bandeau bas d'écran pour activer les notifications navigateur */
.ecig-nc-push-reminder {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    width: min(820px, calc(100vw - 24px));
    z-index: 1000001;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(249,245,255,.98));
    color: #17162a;
    border: 1px solid rgba(153, 119, 255, .24);
    box-shadow: 0 22px 65px rgba(31, 0, 122, .22), 0 8px 22px rgba(226, 30, 118, .10);
    padding: 13px 48px 13px 14px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translate(-50%, 18px) scale(.985);
    pointer-events: none;
    transition: opacity .20s ease, transform .20s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.ecig-nc-push-reminder::before {
    content: '';
    position: absolute;
    left: 18px;
    right: 18px;
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, var(--ecig-nc-blue), var(--ecig-nc-pink), var(--ecig-nc-orange));
}

.ecig-nc-push-reminder.is-visible {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
    pointer-events: auto;
}

.ecig-nc-push-reminder-icon {
    width: 46px;
    height: 46px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7b2cff, #ff3c70);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(124, 58, 237, .22);
}

.ecig-nc-push-reminder-copy {
    min-width: 0;
}

.ecig-nc-push-reminder strong {
    display: block;
    font-size: 14.5px;
    font-weight: 900;
    line-height: 1.18;
    color: #151329;
    margin: 0 0 3px;
}

.ecig-nc-push-reminder span {
    display: block;
    font-size: 12.5px;
    line-height: 1.35;
    color: #66657b;
    font-weight: 650;
}

.ecig-nc-push-reminder-close {
    position: absolute;
    top: 9px;
    right: 10px;
    border: 0;
    background: rgba(31, 0, 122, .07);
    color: #21194b;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 19px;
    line-height: 26px;
    padding: 0;
}

.ecig-nc-push-reminder-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    white-space: nowrap;
}

.ecig-nc-push-reminder-enable,
.ecig-nc-push-reminder-later {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    border: 0;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 900;
    padding: 10px 14px;
    cursor: pointer;
    min-height: 38px;
}

.ecig-nc-push-reminder-enable {
    background: linear-gradient(135deg, #7b2cff, #ff3c70);
    color: #fff;
    box-shadow: 0 10px 22px rgba(255, 60, 112, .22);
}

.ecig-nc-push-reminder-enable:hover,
.ecig-nc-push-reminder-enable:focus-visible {
    filter: saturate(1.08) brightness(1.02);
    transform: translateY(-1px);
    outline: none;
}

.ecig-nc-push-reminder-later {
    background: #f1eff9;
    color: #373052;
}

.ecig-nc-push-reminder-later:hover,
.ecig-nc-push-reminder-later:focus-visible,
.ecig-nc-push-reminder-close:hover,
.ecig-nc-push-reminder-close:focus-visible {
    filter: brightness(.98);
    outline: none;
}

@media (max-width: 782px) {
    .ecig-nc-push-reminder {
        left: 10px;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        width: auto;
        transform: translateY(18px) scale(.985);
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 12px 42px 12px 12px;
        border-radius: 20px;
        gap: 10px;
    }

    .ecig-nc-push-reminder.is-visible {
        transform: translateY(0) scale(1);
    }

    .ecig-nc-push-reminder-icon {
        width: 40px;
        height: 40px;
        border-radius: 15px;
        font-size: 20px;
    }

    .ecig-nc-push-reminder strong {
        font-size: 13.5px;
    }

    .ecig-nc-push-reminder span {
        font-size: 11.8px;
        line-height: 1.3;
    }

    .ecig-nc-push-reminder-actions {
        grid-column: 1 / -1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        white-space: normal;
    }

    .ecig-nc-push-reminder-enable,
    .ecig-nc-push-reminder-later {
        width: 100%;
        min-height: 38px;
        padding: 9px 12px;
    }
}

@media (max-width: 390px) {
    .ecig-nc-push-reminder-actions {
        grid-template-columns: 1fr;
    }
}

/* V1.0.15 : optimisation liste pleine + page Mes notifications */
.ecig-nc-dropdown {
    display: flex;
    flex-direction: column;
    max-height: min(640px, calc(100vh - 110px));
}

.ecig-nc-dropdown[hidden] {
    display: none !important;
}

.ecig-nc-list {
    flex: 1 1 auto;
    min-height: 0;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.ecig-nc-foot {
    padding: 10px 12px 12px;
    border-top: 1px solid rgba(22, 24, 39, .07);
    background: linear-gradient(180deg, #fff, #f7f8ff);
}

.ecig-nc-see-all {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 38px;
    border-radius: 999px;
    background: rgba(38, 103, 255, .10);
    color: var(--ecig-nc-blue) !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 850;
}

.ecig-nc-see-all:hover,
.ecig-nc-see-all:focus-visible {
    background: rgba(38, 103, 255, .16);
    outline: none;
}

.ecig-nc-mini-action {
    display: inline-flex;
    vertical-align: middle;
    margin-left: 7px;
    padding: 2px 7px;
    border-radius: 999px;
    background: rgba(255, 122, 61, .13);
    color: #c4511c;
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
    line-height: 1.2;
}

.ecig-nc-item.is-action-required,
.ecig-nc-page-item.is-action-required {
    background: linear-gradient(90deg, rgba(255, 122, 61, .10), #fff 38%);
}

@media (max-width: 782px) {
    .ecig-nc-dropdown,
    .ecig-nc-context-mobile-forced .ecig-nc-dropdown,
    .ecig-nc-context-floating .ecig-nc-dropdown {
        max-height: calc(100dvh - 88px);
    }

    .ecig-nc-list {
        max-height: none;
    }

    .ecig-nc-item {
        padding: 12px 13px;
    }

    .ecig-nc-item-message {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

.ecig-nc-page {
    --ecig-nc-blue: #2667ff;
    --ecig-nc-pink: #e9327c;
    --ecig-nc-orange: #ff7a3d;
    --ecig-nc-dark: #161827;
    --ecig-nc-muted: #70748a;
    --ecig-nc-border: rgba(22, 24, 39, .10);
    max-width: 1080px;
    margin: 26px auto;
    padding: 0 14px 34px;
    color: var(--ecig-nc-dark);
}

.ecig-nc-page-hero {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(38, 103, 255, .10), rgba(233, 50, 124, .12));
    border: 1px solid rgba(38, 103, 255, .12);
    box-shadow: 0 18px 55px rgba(18, 22, 38, .10);
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.ecig-nc-page-hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--ecig-nc-blue), var(--ecig-nc-pink), var(--ecig-nc-orange));
}

.ecig-nc-page-kicker {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--ecig-nc-blue);
    font-weight: 850;
    font-size: 13px;
}

.ecig-nc-page h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--ecig-nc-dark);
}

.ecig-nc-page-hero p {
    margin: 8px 0 0;
    color: var(--ecig-nc-muted);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.45;
    max-width: 680px;
}

.ecig-nc-page button,
.ecig-nc-page-primary,
.ecig-nc-page-pagination a {
    font-family: inherit;
}

.ecig-nc-page-mark-all button,
.ecig-nc-page-primary,
.ecig-nc-page-pagination a {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ecig-nc-blue), var(--ecig-nc-pink));
    color: #fff !important;
    font-size: 13px;
    font-weight: 850;
    padding: 11px 15px;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(38, 103, 255, .18);
}

.ecig-nc-page-notice {
    margin: 16px 0;
    padding: 13px 15px;
    border-radius: 16px;
    background: rgba(32, 184, 120, .11);
    border: 1px solid rgba(32, 184, 120, .18);
    color: #16784e;
    font-size: 14px;
    font-weight: 750;
}

.ecig-nc-page-tabs {
    margin: 18px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ecig-nc-page-tabs a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--ecig-nc-border);
    color: var(--ecig-nc-dark) !important;
    text-decoration: none !important;
    font-weight: 850;
    box-shadow: 0 10px 28px rgba(18, 22, 38, .06);
}

.ecig-nc-page-tabs a.is-active {
    border-color: rgba(38, 103, 255, .28);
    background: linear-gradient(135deg, rgba(38, 103, 255, .12), rgba(233, 50, 124, .08));
}

.ecig-nc-page-tabs em {
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(38, 103, 255, .11);
    color: var(--ecig-nc-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 12px;
}

.ecig-nc-page-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ecig-nc-page-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--ecig-nc-border);
    box-shadow: 0 10px 28px rgba(18, 22, 38, .055);
}

.ecig-nc-page-item.is-unread {
    border-color: rgba(38, 103, 255, .20);
}

.ecig-nc-page-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(38, 103, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.ecig-nc-page-item.is-action-required .ecig-nc-page-item-icon {
    background: rgba(255, 122, 61, .14);
}

.ecig-nc-page-item-body {
    min-width: 0;
}

.ecig-nc-page-item-top {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ecig-nc-page-item h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.22;
    font-weight: 900;
    color: var(--ecig-nc-dark);
}

.ecig-nc-page-item p {
    margin: 4px 0 0;
    color: var(--ecig-nc-muted);
    line-height: 1.42;
    font-size: 14px;
    font-weight: 600;
}

.ecig-nc-page-item-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 7px;
    color: #9a9db0;
    font-size: 12px;
    font-weight: 700;
}

.ecig-nc-page-item-meta span + span::before {
    content: '•';
    margin-right: 8px;
    color: #c1c4d3;
}

.ecig-nc-action-badge,
.ecig-nc-unread-badge {
    display: inline-flex;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

.ecig-nc-action-badge {
    background: rgba(255, 122, 61, .14);
    color: #c4511c;
}

.ecig-nc-unread-badge {
    background: rgba(38, 103, 255, .11);
    color: var(--ecig-nc-blue);
}

.ecig-nc-page-item-actions {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ecig-nc-page-item-actions form {
    margin: 0;
}

.ecig-nc-page-item-actions button {
    border: 0;
    border-radius: 999px;
    background: rgba(38, 103, 255, .10);
    color: var(--ecig-nc-blue);
    font-size: 12px;
    font-weight: 850;
    padding: 9px 12px;
    cursor: pointer;
}

.ecig-nc-page-item-actions .ecig-nc-page-danger {
    background: rgba(233, 50, 124, .10);
    color: var(--ecig-nc-pink);
}

.ecig-nc-page-empty {
    padding: 34px 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--ecig-nc-border);
    color: var(--ecig-nc-muted);
    text-align: center;
    font-weight: 750;
}

.ecig-nc-page-pagination {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ecig-nc-page-pagination span {
    color: var(--ecig-nc-muted);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 782px) {
    .ecig-nc-page {
        margin-top: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .ecig-nc-page-hero {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px;
        border-radius: 22px;
    }

    .ecig-nc-page-mark-all,
    .ecig-nc-page-mark-all button {
        width: 100%;
    }

    .ecig-nc-page-tabs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .ecig-nc-page-item {
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: flex-start;
        gap: 12px;
    }

    .ecig-nc-page-item-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 20px;
    }

    .ecig-nc-page-item-actions {
        grid-column: 1 / -1;
        justify-content: stretch;
    }

    .ecig-nc-page-item-actions a,
    .ecig-nc-page-item-actions form,
    .ecig-nc-page-item-actions button {
        flex: 1 1 auto;
        text-align: center;
    }
}


/* V1.0.16 : anti-doublon mobile Mega Menu
   La cloche desktop forcée ne doit jamais apparaître comme un item dans le menu mobile déroulé. */
@media (max-width: 980px) {
    body #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.ecig-nc-forced-menu-item,
    body ul.mega-menu > li.ecig-nc-forced-menu-item,
    body .et-menu-nav > ul > li.ecig-nc-forced-menu-item,
    body .et_pb_menu__menu > nav > ul > li.ecig-nc-forced-menu-item,
    body li.ecig-nc-forced-menu-item,
    body .ecig-nc-forced-menu-item {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    body .ecig-nc-mega-toggle-block {
        display: inline-flex !important;
    }
}


/* V1.0.17 : lien d'action visible dans la cloche */
.ecig-nc-item-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin-top: 7px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(38, 103, 255, .10);
    color: var(--ecig-nc-blue);
    font-size: 11px;
    font-weight: 850;
    line-height: 1.2;
}

.ecig-nc-item:hover .ecig-nc-item-cta,
.ecig-nc-item:focus-visible .ecig-nc-item-cta {
    background: rgba(38, 103, 255, .16);
}


/* V1.0.19 : sollicitation push directement dans la cloche */
.ecig-nc-push-box.ecig-nc-push-solicit {
    margin: 12px 12px 0;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(38, 103, 255, .08), rgba(233, 50, 124, .08));
    border: 1px solid rgba(233, 50, 124, .14);
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
}

.ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-emoji {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(233, 50, 124, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    grid-row: span 2;
}

.ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
    line-height: 1.3;
    color: #33384d;
    font-weight: 500;
}

.ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text strong {
    color: #161827;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.15;
}

.ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text span {
    color: #70748a;
}

.ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-enable {
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-enabled {
    background: rgba(32, 184, 120, .10);
    border-color: rgba(32, 184, 120, .22);
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-enabled .ecig-nc-push-emoji {
    background: rgba(32, 184, 120, .14);
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-blocked,
.ecig-nc-push-box.ecig-nc-push-solicit.is-error,
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported {
    background: rgba(255, 122, 61, .10);
    border-color: rgba(255, 122, 61, .22);
}

@media (max-width: 782px) {
    .ecig-nc-push-box.ecig-nc-push-solicit {
        grid-template-columns: 32px 1fr;
        align-items: flex-start;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-enable {
        grid-column: 1 / -1;
        width: 100%;
    }
}

/* V1.0.20 : correction mobile + contraste notifications */
.ecig-nc-dropdown-portal {
    position: fixed !important;
    top: 72px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: none !important;
    max-height: calc(100dvh - 92px) !important;
    z-index: 2147483000 !important;
    transform: none !important;
}

.ecig-nc-item.is-read {
    opacity: .94;
}

.ecig-nc-item-title {
    color: #262a3d;
}

.ecig-nc-item-message {
    color: #62677c;
}

.ecig-nc-item-date {
    color: #777d93;
}

.ecig-nc-item-cta {
    background: rgba(38, 103, 255, .16);
    color: #1f5eea;
}

.ecig-nc-item:hover .ecig-nc-item-cta,
.ecig-nc-item:focus-visible .ecig-nc-item-cta {
    background: rgba(38, 103, 255, .22);
    color: #164bd0;
}

.ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text {
    min-width: 0;
}

@media (max-width: 782px) {
    .ecig-nc-dropdown,
    .ecig-nc-context-mobile-forced .ecig-nc-dropdown,
    .ecig-nc-context-floating .ecig-nc-dropdown,
    .ecig-nc-dropdown-portal {
        border-radius: 16px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        max-height: calc(100dvh - 84px) !important;
        overflow: hidden;
    }

    .ecig-nc-dropdown-portal {
        top: 62px !important;
    }

    .admin-bar .ecig-nc-dropdown-portal {
        top: 92px !important;
        max-height: calc(100dvh - 112px) !important;
    }

    .ecig-nc-head {
        padding: 12px 14px 10px !important;
        min-height: 0;
    }

    .ecig-nc-head strong {
        font-size: 18px !important;
        line-height: 1.15 !important;
        letter-spacing: -.01em;
    }

    .ecig-nc-mark-all {
        font-size: 13px !important;
        padding: 7px 11px !important;
    }

    .ecig-nc-list {
        max-height: none !important;
    }

    .ecig-nc-item {
        gap: 10px !important;
        padding: 11px 12px !important;
    }

    .ecig-nc-item-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 13px !important;
        font-size: 17px !important;
        margin-left: 0 !important;
    }

    .ecig-nc-item-content {
        gap: 1px !important;
    }

    .ecig-nc-item-title {
        font-size: 14px !important;
        line-height: 1.18 !important;
        color: #25293b !important;
        letter-spacing: -.005em;
    }

    .ecig-nc-item-message {
        font-size: 12.5px !important;
        line-height: 1.25 !important;
        color: #5f6578 !important;
        -webkit-line-clamp: 2;
    }

    .ecig-nc-item-date {
        font-size: 11.5px !important;
        color: #747a90 !important;
        margin-top: 1px !important;
    }

    .ecig-nc-item-cta {
        margin-top: 6px !important;
        padding: 5px 12px !important;
        font-size: 11.5px !important;
        background: rgba(38, 103, 255, .18) !important;
        color: #1d58df !important;
    }

    .ecig-nc-foot {
        padding: 9px 10px 10px !important;
    }

    .ecig-nc-see-all {
        min-height: 36px !important;
        font-size: 13px !important;
        background: rgba(38, 103, 255, .13) !important;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit {
        margin: 10px 10px 0 !important;
        padding: 9px 10px !important;
        border-radius: 15px !important;
        grid-template-columns: 32px minmax(0, 1fr) !important;
        gap: 8px !important;
        align-items: center !important;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-emoji {
        width: 32px !important;
        height: 32px !important;
        border-radius: 11px !important;
        font-size: 15px !important;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text {
        gap: 1px !important;
        min-width: 0 !important;
        overflow: hidden;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text strong {
        font-size: 12.5px !important;
        line-height: 1.15 !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text span {
        font-size: 11.5px !important;
        line-height: 1.22 !important;
        color: #62677c !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-enable {
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 4px !important;
        padding: 8px 10px !important;
    }
}

@supports (top: env(safe-area-inset-top)) {
    @media (max-width: 782px) {
        .ecig-nc-dropdown-portal {
            top: calc(env(safe-area-inset-top) + 58px) !important;
            max-height: calc(100dvh - env(safe-area-inset-top) - 80px) !important;
        }
    }
}

/* V1.0.25 : panneau plus court, fermeture hors panneau facilitée, position sous le menu */
.ecig-nc-dropdown {
    max-height: min(520px, calc(100dvh - 150px));
}

.ecig-nc-list {
    max-height: 320px;
}

.ecig-nc-dropdown-portal {
    top: var(--ecig-nc-dropdown-top, 72px) !important;
    max-height: var(--ecig-nc-dropdown-max-height, min(440px, calc(100dvh - 150px))) !important;
}

.ecig-nc-context-desktop-forced .ecig-nc-dropdown {
    top: calc(100% + 8px);
}

@media (max-width: 782px) {
    .ecig-nc-dropdown,
    .ecig-nc-context-mobile-forced .ecig-nc-dropdown,
    .ecig-nc-context-floating .ecig-nc-dropdown,
    .ecig-nc-dropdown-portal {
        max-height: var(--ecig-nc-dropdown-max-height, min(62dvh, 470px)) !important;
    }

    .ecig-nc-dropdown-portal {
        top: var(--ecig-nc-dropdown-top, 72px) !important;
    }

    .admin-bar .ecig-nc-dropdown-portal {
        top: var(--ecig-nc-dropdown-top, 92px) !important;
        max-height: var(--ecig-nc-dropdown-max-height, min(58dvh, 440px)) !important;
    }

    .ecig-nc-list {
        max-height: none !important;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-text span,
    .ecig-nc-push-box.ecig-nc-push-solicit.is-blocked .ecig-nc-push-text span,
    .ecig-nc-push-box.ecig-nc-push-solicit.is-error .ecig-nc-push-text span {
        -webkit-line-clamp: 1 !important;
    }
}


/* V1.0.28 : bloc d'activation push plus visible + masquage invite push Better Messages */
.ecig-nc-push-box.ecig-nc-push-solicit.is-available,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) {
    background: linear-gradient(135deg, #fdf4ff 0%, #f5edff 52%, #fff4fb 100%) !important;
    border: 1px solid rgba(217, 70, 239, .48) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 10px 26px rgba(76, 29, 149, .08) !important;
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-emoji,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-emoji {
    background: linear-gradient(135deg, #7c3aed, #d946ef) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(124, 58, 237, .22) !important;
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-text strong,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-text strong {
    color: #3b0764 !important;
    font-weight: 900 !important;
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-text span,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-text span {
    color: #5b5872 !important;
    font-weight: 650 !important;
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-enable,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-enable {
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%) !important;
    color: #fff !important;
    opacity: 1 !important;
    box-shadow: 0 10px 22px rgba(124, 58, 237, .24) !important;
    text-shadow: none !important;
    border: 0 !important;
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-enable:hover,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-enable:hover,
.ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-enable:focus-visible,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-enable:focus-visible {
    filter: saturate(1.08) brightness(1.02) !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}

.ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-enable:disabled,
.ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-enable:disabled {
    opacity: .78 !important;
    cursor: wait !important;
}

.ecig-nc-hide-external-push,
.ecig-nc-hide-external-push * {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 782px) {
    .ecig-nc-push-box.ecig-nc-push-solicit.is-available,
    .ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) {
        padding: 10px 11px !important;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit.is-available .ecig-nc-push-enable,
    .ecig-nc-push-box.ecig-nc-push-solicit:not(.is-enabled):not(.is-blocked):not(.is-error):not(.is-unsupported) .ecig-nc-push-enable {
        min-height: 38px !important;
        font-size: 12.5px !important;
        margin-top: 6px !important;
    }
}


/* V1.0.29 : description du bloc push mobile non coupée */
.ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text span {
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100% !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: initial !important;
}

@media (max-width: 782px) {
    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text {
        overflow: visible !important;
    }

    .ecig-nc-push-box.ecig-nc-push-solicit .ecig-nc-push-text span {
        display: block !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        -webkit-line-clamp: unset !important;
        -webkit-box-orient: initial !important;
        line-height: 1.22 !important;
    }
}


/* 1.0.36 - Harmonisation panneau cloche avec panneau Messagerie */
.ecig-nc-dropdown,
.ecig-nc-dropdown.ecig-nc-dropdown-portal{
    width:min(94vw,560px)!important;
    max-width:560px!important;
    border-radius:28px!important;
    border:1px solid rgba(226,232,240,.95)!important;
    background:#fff!important;
    box-shadow:0 20px 60px rgba(15,23,42,.18)!important;
    overflow:hidden!important;
    color:#172033!important;
    display:flex!important;
    flex-direction:column!important;
    max-height:min(76vh,620px)!important;
}
.ecig-nc-dropdown[hidden]{display:none!important}
.ecig-nc-dropdown::before{display:none!important}
.ecig-nc-head{
    padding:18px 22px 16px!important;
    min-height:58px!important;
    border-bottom:1px solid #eef2f7!important;
    background:#fff!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:14px!important;
}
.ecig-nc-head strong{
    font-size:26px!important;
    line-height:1.05!important;
    font-weight:950!important;
    color:#172033!important;
    letter-spacing:-.02em!important;
}
.ecig-nc-mark-all{
    border:0!important;
    border-radius:999px!important;
    background:#eef2ff!important;
    color:#64748b!important;
    padding:10px 16px!important;
    font-size:14px!important;
    font-weight:950!important;
    line-height:1!important;
    box-shadow:none!important;
}
.ecig-nc-mark-all:hover,
.ecig-nc-mark-all:focus-visible{
    background:#e0e7ff!important;
    color:#4f46e5!important;
}
.ecig-nc-push-box{
    margin:10px 14px 0!important;
    border-radius:18px!important;
    border:1px solid #eef2f7!important;
    background:linear-gradient(135deg,#f8fbff,#fff)!important;
    box-shadow:none!important;
}
.ecig-nc-list{
    flex:1 1 auto!important;
    min-height:0!important;
    max-height:none!important;
    overflow:auto!important;
    -webkit-overflow-scrolling:touch!important;
    background:#fff!important;
    overscroll-behavior:contain!important;
    scrollbar-width:thin!important;
}
.ecig-nc-item{
    display:grid!important;
    grid-template-columns:56px minmax(0,1fr)!important;
    gap:13px!important;
    align-items:center!important;
    width:100%!important;
    padding:15px 22px!important;
    border-bottom:1px solid #eef2f7!important;
    background:#fff!important;
    text-decoration:none!important;
    color:#172033!important;
    box-sizing:border-box!important;
}
.ecig-nc-item:hover,
.ecig-nc-item:focus-visible{
    background:#f8fafc!important;
    outline:none!important;
    color:#172033!important;
}
.ecig-nc-item.is-unread::before{display:none!important}
.ecig-nc-item-icon{
    width:48px!important;
    height:48px!important;
    min-width:48px!important;
    border-radius:16px!important;
    margin:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:linear-gradient(135deg,#fdf2f8,#eef2ff)!important;
    color:#7c3aed!important;
    font-size:22px!important;
    box-shadow:none!important;
}
.ecig-nc-item.is-unread .ecig-nc-item-icon{
    background:linear-gradient(135deg,#fce7f3,#ede9fe)!important;
}
.ecig-nc-priority-critical .ecig-nc-item-icon,
.ecig-nc-priority-high .ecig-nc-item-icon,
.ecig-nc-item.is-action-required .ecig-nc-item-icon{
    background:linear-gradient(135deg,#fff1f2,#ffedd5)!important;
    color:#f97316!important;
}
.ecig-nc-item-content{
    min-width:0!important;
    display:flex!important;
    flex-direction:column!important;
    gap:4px!important;
}
.ecig-nc-item-title{
    font-size:16px!important;
    line-height:1.15!important;
    font-weight:950!important;
    color:#172033!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
}
.ecig-nc-item-message{
    font-size:14px!important;
    line-height:1.28!important;
    font-weight:700!important;
    color:#64748b!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
}
.ecig-nc-item-date{
    font-size:12px!important;
    line-height:1.2!important;
    color:#94a3b8!important;
    font-weight:850!important;
    margin-top:2px!important;
}
.ecig-nc-item.is-read{opacity:1!important}
.ecig-nc-mini-action{
    margin-left:8px!important;
    padding:3px 8px!important;
    border-radius:999px!important;
    background:#fff1f2!important;
    color:#be123c!important;
    font-size:10px!important;
    font-weight:950!important;
}
.ecig-nc-item.is-action-required,
.ecig-nc-page-item.is-action-required{
    background:linear-gradient(90deg,rgba(255,241,242,.78),#fff 40%)!important;
}
.ecig-nc-item-cta{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:max-content!important;
    margin-top:4px!important;
    padding:7px 13px!important;
    border-radius:999px!important;
    background:#eef2ff!important;
    color:#4f46e5!important;
    font-size:12px!important;
    font-weight:950!important;
    line-height:1!important;
}
.ecig-nc-loading,
.ecig-nc-empty,
.ecig-nc-error{
    padding:24px 18px!important;
    color:#64748b!important;
    font-size:14px!important;
    font-weight:800!important;
    text-align:center!important;
}
.ecig-nc-foot{
    padding:16px 20px 18px!important;
    border-top:1px solid #eef2f7!important;
    background:#fff!important;
}
.ecig-nc-see-all{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:100%!important;
    min-height:52px!important;
    border-radius:999px!important;
    background:#eef2ff!important;
    color:#4f46e5!important;
    text-decoration:none!important;
    font-size:16px!important;
    font-weight:950!important;
    line-height:1.1!important;
}
.ecig-nc-see-all:hover,
.ecig-nc-see-all:focus-visible{
    background:#e0e7ff!important;
    color:#4338ca!important;
}
@media (max-width:782px){
    .ecig-nc-dropdown,
    .ecig-nc-context-mobile-forced .ecig-nc-dropdown,
    .ecig-nc-context-floating .ecig-nc-dropdown,
    .ecig-nc-dropdown.ecig-nc-dropdown-portal{
        left:10px!important;
        right:10px!important;
        width:auto!important;
        max-width:none!important;
        border-radius:26px!important;
        max-height:70vh!important;
    }
    .ecig-nc-head{padding:18px 20px 14px!important}
    .ecig-nc-head strong{font-size:25px!important}
    .ecig-nc-mark-all{padding:10px 14px!important;font-size:14px!important}
    .ecig-nc-item{grid-template-columns:52px minmax(0,1fr)!important;padding:14px 18px!important;gap:12px!important}
    .ecig-nc-item-icon{width:48px!important;height:48px!important;min-width:48px!important;border-radius:16px!important}
    .ecig-nc-item-title{font-size:16px!important}
    .ecig-nc-item-message{font-size:14px!important}
    .ecig-nc-foot{padding:14px 18px 16px!important}
    .ecig-nc-see-all{min-height:50px!important;font-size:15px!important}
}


/* 1.0.37 - Swipe mobile sur panneau rapide */
.ecig-nc-item{
    overflow:hidden;
    touch-action:pan-y;
    padding:0!important;
    min-height:74px;
}
.ecig-nc-item-inner{
    position:relative;
    z-index:2;
    width:100%;
    min-height:74px;
    display:flex;
    gap:11px;
    padding:13px 15px;
    box-sizing:border-box;
    background:#fff;
    transition:transform .18s ease, background .12s ease;
}
.ecig-nc-item:hover .ecig-nc-item-inner,
.ecig-nc-item:focus-visible .ecig-nc-item-inner{
    background:#f7f8ff;
}
.ecig-nc-item.is-swiping .ecig-nc-item-inner{
    transition:none;
}
.ecig-nc-swipe-bg{
    position:absolute;
    top:0;
    bottom:0;
    z-index:1;
    display:flex;
    align-items:center;
    font-size:13px;
    font-weight:900;
    color:#fff;
    pointer-events:none;
    opacity:0;
    transition:opacity .12s ease;
}
.ecig-nc-swipe-bg-read{
    left:0;
    right:auto;
    width:48%;
    padding-left:18px;
    justify-content:flex-start;
    background:linear-gradient(135deg,#16a34a,#22c55e);
}
.ecig-nc-swipe-bg-archive{
    right:0;
    left:auto;
    width:58%;
    padding-right:18px;
    justify-content:flex-end;
    background:linear-gradient(135deg,#64748b,#334155);
}
.ecig-nc-item.is-swipe-read .ecig-nc-swipe-bg-read,
.ecig-nc-item.is-swipe-archive .ecig-nc-swipe-bg-archive{
    opacity:1;
}
.ecig-nc-item.is-archiving{
    opacity:.55;
    pointer-events:none;
}
.ecig-nc-swipe-toast{
    position:fixed;
    left:50%;
    bottom:calc(18px + env(safe-area-inset-bottom));
    transform:translateX(-50%) translateY(16px);
    z-index:1000000;
    max-width:calc(100vw - 30px);
    padding:10px 14px;
    border-radius:999px;
    background:#111827;
    color:#fff;
    font-size:13px;
    font-weight:900;
    box-shadow:0 14px 35px rgba(15,23,42,.24);
    opacity:0;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease;
}
.ecig-nc-swipe-toast.is-visible{
    opacity:1;
    transform:translateX(-50%) translateY(0);
}
.ecig-nc-swipe-toast.is-success{background:#047857}
.ecig-nc-swipe-toast.is-warning{background:#b45309}
@media (hover:hover) and (pointer:fine){
    .ecig-nc-item{touch-action:auto}
}


/* 1.0.38 - Correction layout panneau rapide avec swipe */
.ecig-nc-list .ecig-nc-item{
    display:block!important;
    position:relative!important;
    width:100%!important;
    padding:0!important;
    gap:0!important;
    grid-template-columns:none!important;
    overflow:hidden!important;
    min-height:0!important;
    background:#fff!important;
}
.ecig-nc-list .ecig-nc-item-inner{
    display:grid!important;
    grid-template-columns:56px minmax(0,1fr)!important;
    align-items:center!important;
    gap:13px!important;
    width:100%!important;
    min-height:78px!important;
    padding:15px 22px!important;
    box-sizing:border-box!important;
    background:#fff!important;
    color:#172033!important;
}
.ecig-nc-list .ecig-nc-item-content{
    min-width:0!important;
    width:100%!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    gap:4px!important;
}
.ecig-nc-list .ecig-nc-item-title,
.ecig-nc-list .ecig-nc-item-message,
.ecig-nc-list .ecig-nc-item-date{
    width:100%!important;
    max-width:100%!important;
    text-align:left!important;
}
.ecig-nc-list .ecig-nc-item-icon{
    grid-column:1!important;
    grid-row:1!important;
}
.ecig-nc-list .ecig-nc-item-content{
    grid-column:2!important;
    grid-row:1!important;
}
@media (max-width:782px){
    .ecig-nc-list .ecig-nc-item-inner{
        grid-template-columns:52px minmax(0,1fr)!important;
        padding:14px 18px!important;
        gap:12px!important;
        min-height:76px!important;
    }
}


/* 1.0.40 - Historique compact : toutes les notifications conservées, sans onglets lourds */
.ecig-nc-page{
    max-width:960px!important;
    margin:14px auto!important;
    padding:0 10px 24px!important;
}
.ecig-nc-page-hero.ecig-nc-page-hero-compact{
    min-height:0!important;
    padding:14px 16px!important;
    border-radius:18px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:12px!important;
    box-shadow:0 8px 24px rgba(18,22,38,.07)!important;
}
.ecig-nc-page-hero.ecig-nc-page-hero-compact::before{
    height:3px!important;
}
.ecig-nc-page-titleline{
    min-width:0!important;
}
.ecig-nc-page-kicker{
    margin:0 0 2px!important;
    font-size:11px!important;
    line-height:1.1!important;
    letter-spacing:.02em!important;
    text-transform:uppercase!important;
}
.ecig-nc-page h1{
    font-size:22px!important;
    line-height:1.05!important;
}
.ecig-nc-page-hero-actions{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:8px!important;
    flex:0 0 auto!important;
}
.ecig-nc-page-count,
.ecig-nc-page-read-ok{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    min-height:34px!important;
    padding:0 11px!important;
    border-radius:999px!important;
    background:rgba(38,103,255,.09)!important;
    color:#2667ff!important;
    font-size:12px!important;
    font-weight:900!important;
    white-space:nowrap!important;
}
.ecig-nc-page-read-ok{
    background:rgba(22,163,74,.10)!important;
    color:#15803d!important;
}
.ecig-nc-page-mark-all button{
    min-height:34px!important;
    padding:0 12px!important;
    font-size:12px!important;
    box-shadow:none!important;
}
.ecig-nc-page-notice{
    margin:8px 0!important;
    padding:9px 12px!important;
    border-radius:13px!important;
    font-size:12px!important;
}
.ecig-nc-page-tabs{
    display:none!important;
}
.ecig-nc-page-list{
    gap:7px!important;
    margin-top:10px!important;
}
.ecig-nc-page-item{
    grid-template-columns:38px minmax(0,1fr) auto!important;
    gap:10px!important;
    align-items:center!important;
    padding:10px 12px!important;
    border-radius:16px!important;
    box-shadow:0 5px 16px rgba(18,22,38,.045)!important;
}
.ecig-nc-page-item-icon{
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    border-radius:13px!important;
    font-size:18px!important;
}
.ecig-nc-page-item-top{
    gap:6px!important;
    align-items:center!important;
}
.ecig-nc-page-item h2{
    font-size:15px!important;
    line-height:1.12!important;
    max-width:100%!important;
}
.ecig-nc-page-item p{
    margin-top:3px!important;
    font-size:13px!important;
    line-height:1.28!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
}
.ecig-nc-page-item-meta{
    margin-top:4px!important;
    gap:5px!important;
    font-size:11px!important;
    line-height:1.2!important;
}
.ecig-nc-page-item-meta span + span::before{
    margin-right:5px!important;
}
.ecig-nc-action-badge,
.ecig-nc-unread-badge{
    padding:3px 7px!important;
    font-size:10px!important;
}
.ecig-nc-page-item-actions{
    gap:5px!important;
    flex-wrap:nowrap!important;
}
.ecig-nc-page-primary,
.ecig-nc-page-item-actions button{
    min-height:32px!important;
    padding:0 11px!important;
    border-radius:999px!important;
    font-size:12px!important;
    line-height:32px!important;
    box-shadow:none!important;
}
.ecig-nc-page-pagination{
    margin-top:10px!important;
}
.ecig-nc-page-empty{
    padding:18px 12px!important;
    border-radius:16px!important;
    font-size:13px!important;
}
@media (max-width:782px){
    .ecig-nc-page{
        margin-top:8px!important;
        padding-left:8px!important;
        padding-right:8px!important;
    }
    .ecig-nc-page-hero.ecig-nc-page-hero-compact{
        flex-direction:row!important;
        align-items:center!important;
        padding:12px 12px!important;
        border-radius:16px!important;
    }
    .ecig-nc-page h1{
        font-size:19px!important;
    }
    .ecig-nc-page-kicker{
        font-size:10px!important;
    }
    .ecig-nc-page-count,
    .ecig-nc-page-read-ok{
        min-height:30px!important;
        padding:0 9px!important;
        font-size:11px!important;
    }
    .ecig-nc-page-mark-all,
    .ecig-nc-page-mark-all button{
        width:auto!important;
    }
    .ecig-nc-page-mark-all button{
        min-height:30px!important;
        padding:0 10px!important;
        font-size:11px!important;
    }
    .ecig-nc-page-list{
        gap:6px!important;
        margin-top:8px!important;
    }
    .ecig-nc-page-item{
        grid-template-columns:34px minmax(0,1fr) auto!important;
        gap:8px!important;
        padding:9px 9px!important;
        border-radius:15px!important;
    }
    .ecig-nc-page-item-icon{
        width:34px!important;
        height:34px!important;
        min-width:34px!important;
        border-radius:12px!important;
        font-size:16px!important;
    }
    .ecig-nc-page-item h2{
        font-size:14px!important;
    }
    .ecig-nc-page-item p{
        font-size:12px!important;
        -webkit-line-clamp:2!important;
    }
    .ecig-nc-page-item-meta{
        font-size:10.5px!important;
    }
    .ecig-nc-page-item-actions{
        grid-column:auto!important;
        justify-content:flex-end!important;
        align-self:center!important;
    }
    .ecig-nc-page-item-actions a,
    .ecig-nc-page-item-actions form,
    .ecig-nc-page-item-actions button{
        flex:0 0 auto!important;
        text-align:center!important;
    }
    .ecig-nc-page-primary,
    .ecig-nc-page-item-actions button{
        min-height:29px!important;
        padding:0 9px!important;
        font-size:11px!important;
        line-height:29px!important;
    }
    .ecig-nc-page-primary{
        max-width:82px!important;
        overflow:hidden!important;
        text-overflow:ellipsis!important;
        white-space:nowrap!important;
    }
}

/* V1.0.42 : demande Push nouveaux membres + guide iPhone */
.ecig-nc-push-onboarding{
    position:fixed!important;
    left:50%!important;
    bottom:18px!important;
    z-index:999999!important;
    width:min(430px, calc(100vw - 26px))!important;
    transform:translate(-50%, 24px) scale(.98)!important;
    opacity:0!important;
    pointer-events:none!important;
    display:grid!important;
    grid-template-columns:48px minmax(0,1fr)!important;
    gap:12px!important;
    padding:15px 15px 14px!important;
    border-radius:24px!important;
    background:linear-gradient(135deg, rgba(255,255,255,.98), rgba(249,245,255,.98))!important;
    border:1px solid rgba(153,119,255,.22)!important;
    box-shadow:0 20px 55px rgba(31,0,122,.22), 0 5px 18px rgba(226,30,118,.10)!important;
    color:#17162a!important;
    font-family:inherit!important;
    transition:opacity .22s ease, transform .22s ease!important;
}
.ecig-nc-push-onboarding.is-visible{
    opacity:1!important;
    pointer-events:auto!important;
    transform:translate(-50%, 0) scale(1)!important;
}
.ecig-nc-push-onboarding-close{
    position:absolute!important;
    top:8px!important;
    right:10px!important;
    width:30px!important;
    height:30px!important;
    border:0!important;
    border-radius:50%!important;
    background:rgba(31,0,122,.07)!important;
    color:#21194b!important;
    font-size:20px!important;
    line-height:1!important;
    cursor:pointer!important;
}
.ecig-nc-push-onboarding-icon{
    width:48px!important;
    height:48px!important;
    border-radius:17px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    background:linear-gradient(135deg,#d72df0,#ff476f)!important;
    color:#fff!important;
    font-size:24px!important;
    box-shadow:0 10px 22px rgba(215,45,240,.22)!important;
}
.ecig-nc-push-onboarding-body{
    min-width:0!important;
    padding-right:20px!important;
}
.ecig-nc-push-onboarding-body strong{
    display:block!important;
    margin:0 0 4px!important;
    font-size:16px!important;
    line-height:1.18!important;
    font-weight:900!important;
    color:#151329!important;
}
.ecig-nc-push-onboarding-body p{
    margin:0!important;
    font-size:13px!important;
    line-height:1.35!important;
    color:#66657b!important;
}
.ecig-nc-push-onboarding-body em{
    display:block!important;
    margin-top:6px!important;
    font-style:normal!important;
    font-size:12px!important;
    line-height:1.3!important;
    color:#8b5cf6!important;
    font-weight:800!important;
}
.ecig-nc-push-onboarding-actions{
    display:flex!important;
    flex-wrap:wrap!important;
    gap:8px!important;
    margin-top:11px!important;
}
.ecig-nc-push-onboarding-actions button{
    min-height:36px!important;
    border:0!important;
    border-radius:999px!important;
    padding:0 14px!important;
    font-size:12px!important;
    font-weight:900!important;
    cursor:pointer!important;
}
.ecig-nc-push-onboarding-activate,
.ecig-nc-push-onboarding-ok{
    background:linear-gradient(135deg,#7b2cff,#ff3c70)!important;
    color:#fff!important;
    box-shadow:0 10px 22px rgba(255,60,112,.22)!important;
}
.ecig-nc-push-onboarding-later{
    background:#f1eff9!important;
    color:#373052!important;
}
.ecig-nc-push-iphone-guide{
    margin-top:10px!important;
    padding:10px 11px!important;
    border-radius:16px!important;
    background:rgba(31,0,122,.045)!important;
    border:1px solid rgba(31,0,122,.08)!important;
}
.ecig-nc-push-iphone-guide b,
.ecig-nc-push-iphone-guide span{
    display:block!important;
}
.ecig-nc-push-iphone-guide b{
    margin-bottom:3px!important;
    color:#1f1650!important;
    font-size:13px!important;
    font-weight:900!important;
}
.ecig-nc-push-iphone-guide span{
    color:#676178!important;
    font-size:12px!important;
    line-height:1.3!important;
}
.ecig-nc-push-iphone-guide ol{
    margin:8px 0 0 18px!important;
    padding:0!important;
    color:#2b244b!important;
    font-size:12px!important;
    line-height:1.35!important;
}
.ecig-nc-push-iphone-guide li{
    margin:3px 0!important;
    padding-left:1px!important;
}
@media (max-width:782px){
    .ecig-nc-push-onboarding{
        bottom:calc(12px + env(safe-area-inset-bottom, 0px))!important;
        grid-template-columns:42px minmax(0,1fr)!important;
        gap:10px!important;
        padding:13px 13px 12px!important;
        border-radius:21px!important;
    }
    .ecig-nc-push-onboarding-icon{
        width:42px!important;
        height:42px!important;
        border-radius:15px!important;
        font-size:21px!important;
    }
    .ecig-nc-push-onboarding-body strong{
        font-size:15px!important;
    }
    .ecig-nc-push-onboarding-body p{
        font-size:12px!important;
    }
    .ecig-nc-push-onboarding-body em{
        font-size:11.5px!important;
    }
    .ecig-nc-push-onboarding-actions button{
        min-height:34px!important;
        padding:0 12px!important;
        font-size:11.5px!important;
    }
}


/* V1.0.46 : navigateur incompatible = même encart utile + bouton guide notif */
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported {
    background: linear-gradient(135deg, #fdf4ff 0%, #f5edff 52%, #fff4fb 100%) !important;
    border: 1px solid rgba(217, 70, 239, .48) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.75), 0 10px 26px rgba(76, 29, 149, .08) !important;
}
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-emoji {
    background: linear-gradient(135deg, #7c3aed, #d946ef) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(124, 58, 237, .22) !important;
}
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-text strong {
    color: #3b0764 !important;
    font-weight: 900 !important;
}
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-text span {
    color: #5b5872 !important;
    font-weight: 650 !important;
}
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-enable {
    background: linear-gradient(135deg, #7c3aed 0%, #d946ef 100%) !important;
    color: #fff !important;
    opacity: 1 !important;
    box-shadow: 0 10px 22px rgba(124, 58, 237, .24) !important;
    text-shadow: none !important;
    border: 0 !important;
    cursor: pointer !important;
}
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-enable:hover,
.ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-enable:focus-visible {
    filter: saturate(1.08) brightness(1.02) !important;
    transform: translateY(-1px) !important;
    outline: none !important;
}
@media (max-width: 782px) {
    .ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported {
        padding: 10px 11px !important;
    }
    .ecig-nc-push-box.ecig-nc-push-solicit.is-unsupported .ecig-nc-push-enable {
        min-height: 38px !important;
        font-size: 12.5px !important;
        margin-top: 6px !important;
    }
}
