/* Meinhof Kauf-Popups - Design nach MeinhofProofV1-Tokens (Papier/Ink/Karner-Rot). */

.mh-rp {
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1035;
    pointer-events: none;
}

.mh-rp-card {
    position: relative;
    width: 300px;
    max-width: calc(100vw - 32px);
    background: #fffdf9;
    border: 1px solid rgba(34, 32, 29, 0.16);
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(34, 32, 29, 0.18);
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.mh-rp.is-visible .mh-rp-card {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.mh-rp[data-reduce-motion="1"] .mh-rp-card {
    transition: opacity 0.2s linear;
    transform: none;
}

.mh-rp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 32px 10px 10px;
    text-decoration: none;
    color: #22201d;
}

.mh-rp-link:hover,
.mh-rp-link:focus {
    text-decoration: none;
    color: #22201d;
}

.mh-rp-thumb {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 8px;
    background: #f7f3ec;
    border: 1px solid rgba(34, 32, 29, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mh-rp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mh-rp-body {
    display: block;
    min-width: 0;
}

.mh-rp-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c41818;
}

.mh-rp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c41818;
    animation: mhRpPulse 1.6s ease-in-out infinite;
}

.mh-rp[data-reduce-motion="1"] .mh-rp-dot {
    animation: none;
}

@keyframes mhRpPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.mh-rp-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 2px 0;
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    color: #22201d;
}

.mh-rp-meta {
    display: block;
    font-size: 12px;
    color: #625b54;
}

.mh-rp-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #8b847c;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    border-radius: 6px;
}

.mh-rp-close:hover,
.mh-rp-close:focus {
    background: #f7f3ec;
    color: #22201d;
}

/* Mobil: kompakte Mini-Karte, rueckt ueber die mobile Kaufleiste. */
@media (max-width: 767px) {
    .mh-rp {
        left: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    }

    body.meinhof-mobile-buybar-visible .mh-rp {
        bottom: calc(106px + env(safe-area-inset-bottom, 0px));
    }

    .mh-rp-card {
        width: auto;
        max-width: min(76vw, 264px);
    }

    .mh-rp-link {
        gap: 8px;
        padding: 7px 26px 7px 8px;
    }

    .mh-rp-thumb {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        border-radius: 6px;
    }

    .mh-rp-label {
        font-size: 10px;
    }

    .mh-rp-name {
        -webkit-line-clamp: 1;
        margin: 1px 0;
        font-size: 12.5px;
    }

    .mh-rp-meta {
        font-size: 11px;
    }

    .mh-rp-close {
        top: 3px;
        right: 3px;
        width: 24px;
        height: 24px;
        font-size: 15px;
    }
}

@media print {
    .mh-rp {
        display: none;
    }
}
