/* DataFirefly — Notification Center (Shopware 6.5 / 6.6 / 6.7) */

.dff-nc {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: .25rem;
    flex: 0 0 auto;
    width: auto;
}

/* Bell button */
.dff-nc-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: .5rem;
    cursor: pointer;
    color: inherit;
    border-radius: .375rem;
    line-height: 1;
}

.dff-nc-bell:hover,
.dff-nc-bell:focus-visible {
    background: rgba(0, 0, 0, .06);
    outline: none;
}

.dff-nc-bell:focus-visible {
    box-shadow: 0 0 0 .2rem rgba(0, 132, 255, .35);
}

/* Unread badge */
.dff-nc-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 9px;
    background: #e5403a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    pointer-events: none;
    box-shadow: 0 0 0 2px #fff;
}

/* Ring animation */
@keyframes dff-nc-ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(18deg); }
    25% { transform: rotate(-16deg); }
    40% { transform: rotate(12deg); }
    55% { transform: rotate(-8deg); }
    70% { transform: rotate(4deg); }
    85% { transform: rotate(-2deg); }
    100% { transform: rotate(0); }
}

.dff-nc-ring .dff-nc-bell-icon,
.dff-nc-animated:hover .dff-nc-bell-icon {
    animation: dff-nc-ring .9s ease-in-out;
    transform-origin: 50% 4px;
}

@media (prefers-reduced-motion: reduce) {
    .dff-nc-ring .dff-nc-bell-icon,
    .dff-nc-animated:hover .dff-nc-bell-icon {
        animation: none;
    }
}

/* Panel */
.dff-nc-panel {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    z-index: 1050;
    width: 360px;
    max-width: 92vw;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: .625rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .16);
    overflow: hidden;
}

.dff-nc-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.dff-nc-panel-title {
    font-weight: 700;
    font-size: .95rem;
}

.dff-nc-mark-read {
    background: transparent;
    border: 0;
    padding: 0;
    font-size: .8rem;
    color: #0d6efd;
    cursor: pointer;
}

.dff-nc-mark-read:hover {
    text-decoration: underline;
}

/* List */
.dff-nc-list {
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.dff-nc-item {
    position: relative;
    display: flex;
    gap: .75rem;
    padding: .8rem 1rem .8rem 1.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    cursor: pointer;
    transition: background .15s ease;
}

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

.dff-nc-item:hover,
.dff-nc-item:focus-visible {
    background: rgba(0, 0, 0, .035);
    outline: none;
}

.dff-nc-item-unread {
    background: rgba(13, 110, 253, .05);
}

.dff-nc-dot {
    position: absolute;
    left: .55rem;
    top: 1.15rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e5403a;
}

.dff-nc-item-img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: cover;
    border-radius: .375rem;
    background: #f3f3f3;
}

.dff-nc-item-body {
    flex: 1;
    min-width: 0;
}

.dff-nc-item-title {
    margin: 0 0 .15rem;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.3;
}

.dff-nc-item-message {
    margin: 0 0 .3rem;
    font-size: .8rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, .65);
}

.dff-nc-item-link {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.dff-nc-item-date {
    display: block;
    font-size: .72rem;
    color: rgba(0, 0, 0, .45);
}

/* Promo code */
.dff-nc-promo {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: .3rem 0 .4rem;
}

.dff-nc-promo-code {
    padding: .25rem .5rem;
    background: #f6f6f6;
    border: 1px dashed rgba(0, 0, 0, .25);
    border-radius: .375rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.dff-nc-copy {
    padding: .25rem .6rem;
    background: #0d6efd;
    color: #fff;
    border: 0;
    border-radius: .375rem;
    font-size: .75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
}

.dff-nc-copy:hover {
    background: #0b5ed7;
}

.dff-nc-copy.dff-nc-copied {
    background: #198754;
}

/* Empty state */
.dff-nc-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: rgba(0, 0, 0, .45);
}

.dff-nc-empty p {
    margin: .5rem 0 0;
    font-size: .85rem;
}

/* Mobile: bottom sheet */
@media (max-width: 575.98px) {
    .dff-nc-panel {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 1rem 1rem 0 0;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, .25);
        max-height: 75vh;
        display: flex;
        flex-direction: column;
    }

    .dff-nc-panel[hidden] {
        display: none;
    }

    .dff-nc-list {
        max-height: none;
        flex: 1;
    }

    body.dff-nc-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        z-index: 1040;
    }
}

/* Dark headers: inherit color, keep contrast on badge */
.header-main 