.gvg-lists-nudge {
    position: fixed;
    z-index: 100060;
    width: min(268px, calc(100vw - 16px));
    padding: 16px 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 18, 32, 0.96);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    color: #fff;
    text-align: center;
}

.gvg-lists-nudge[hidden] {
    display: none;
}

.gvg-lists-nudge::after {
    content: "";
    position: absolute;
    left: var(--arrow-left, 50%);
    bottom: -6px;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    background: inherit;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(45deg);
}

.gvg-lists-nudge.is-below::after {
    top: -6px;
    bottom: auto;
    border-right: 0;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gvg-lists-nudge__close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.gvg-lists-nudge strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 22px 8px;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.25;
}

.gvg-lists-nudge strong .ph-lightbulb {
    font-size: 1rem;
    flex-shrink: 0;
    color: inherit;
    opacity: 0.9;
}

.gvg-lists-nudge p {
    margin: 0 0 12px;
    font-size: 0.78rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.62);
}

.gvg-lists-nudge__flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.25rem;
}

.gvg-lists-nudge__arrow {
    width: 44px;
    height: 22px;
    color: rgba(255, 255, 255, 0.55);
    flex-shrink: 0;
}

.gvg-lists-nudge__cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    border: 0;
    border-radius: 8px;
    padding: 8px 14px;
    background: linear-gradient(135deg, var(--accent, #ff0033), #c40028);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.35);
    animation: gvgListsCtaBreathe 2.6s ease-in-out infinite;
}

.gvg-lists-nudge__cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.38) 50%, transparent 68%);
    transform: translateX(-130%);
    animation: gvgListsCtaShine 4.6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gvgListsCtaBreathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.28);
    }
    50% {
        transform: scale(1.045);
        box-shadow: 0 0 18px 2px rgba(255, 0, 51, 0.38);
    }
}

@keyframes gvgListsCtaShine {
    0%, 55% { transform: translateX(-130%); }
    72% { transform: translateX(130%); }
    100% { transform: translateX(130%); }
}

@media (prefers-reduced-motion: reduce) {
    .gvg-lists-nudge__cta,
    .gvg-lists-nudge__cta::after {
        animation: none;
    }
}
