#ovz-destil-popup {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99999;
    width: min(300px, calc(100vw - 32px));
    border-radius: 10px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    font-family: Arial, Helvetica, sans-serif;
}

#ovz-destil-popup.ovz-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#ovz-destil-popup .ovz-popup-link {
    display: block;
    line-height: 0;
}

#ovz-destil-popup img {
    display: block;
    width: 100%;
    height: auto;
}

#ovz-destil-popup .ovz-popup-btn {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    display: inline-block;
    white-space: nowrap;
    background: #1c1c1c;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    padding: 12px 22px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.2s ease, transform 0.2s ease;
}

#ovz-destil-popup .ovz-popup-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateX(-50%) scale(1.05);
    text-decoration: none;
}

#ovz-destil-popup .ovz-popup-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

#ovz-destil-popup .ovz-popup-close:hover {
    background: rgba(0, 0, 0, 0.85);
}

@media (max-width: 768px) {
    #ovz-destil-popup {
        width: min(220px, calc(100vw - 24px));
        right: 12px;
        bottom: 12px;
    }

    #ovz-destil-popup .ovz-popup-btn {
        font-size: 11px;
        padding: 9px 14px;
    }
}