/* ============================================================================
 * EU guarantee module promo — corner card, desktop and mobile
 * ========================================================================== */
.pshu-eut {
    position: fixed;
    right: 20px;
    /* A lebego kosar-gomb fole emelkedik, ha az eppen lathato (--eut-lift). */
    bottom: calc(20px + var(--eut-lift, 0px));
    z-index: 950;
    width: 360px;
    max-width: calc(100vw - 32px);
    padding: 20px 22px 22px;
    border-radius: var(--ph-radius-lg, 18px);
    background: #1D1A47;
    color: #fff;
    box-shadow: 0 18px 44px rgba(20, 20, 15, .3);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .24s ease, transform .24s ease, bottom .2s ease;
}
.pshu-eut.is-visible { opacity: 1; transform: translateY(0); }
.pshu-eut__close {
    position: absolute; top: 8px; right: 10px;
    width: 32px; height: 32px;
    border: 0; background: transparent; color: rgba(255,255,255,.66);
    font-size: 24px; line-height: 1; cursor: pointer; border-radius: 50%;
}
.pshu-eut__close:hover { color: #fff; background: rgba(255,255,255,.12); }
.pshu-eut__kicker {
    display: inline-block;
    background: var(--ph-danger, #d63a2a);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.pshu-eut__title {
    margin: 0 0 6px;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.01em;
}
.pshu-eut__copy {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255,255,255,.72);
}
.pshu-eut__cta {
    display: inline-block;
    background: var(--ph-brand, #17994f);
    color: #fff;
    font-size: 14px;
    font-weight: 650;
    padding: 11px 18px;
    border-radius: var(--ph-radius-pill, 999px);
    text-decoration: none;
}
.pshu-eut__cta:hover { filter: brightness(1.08); color: #fff; text-decoration: none; }
@media (max-width: 600px) {
    .pshu-eut {
        right: 12px; left: 12px;
        bottom: calc(12px + var(--eut-lift, 0px));
        width: auto;
        padding: 18px 18px 20px;
    }
    .pshu-eut__title { font-size: 17px; }
    .pshu-eut__copy { font-size: 13px; margin-bottom: 14px; }
}
