/* ===== Floating button + popup ===== */
.vd-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #1a365d;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 14px;
    line-height: 1.25;
    box-shadow: 0 12px 30px rgba(26,54,93,.4), 0 4px 10px rgba(0,0,0,.15);
    transition: all .25s ease;
    border: 2px solid rgba(255,255,255,.2);
}
.vd-float:hover {
    background: #d97706;
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 40px rgba(217,119,6,.4), 0 6px 14px rgba(0,0,0,.2);
    text-decoration: none;
}
.vd-float-icon {
    font-size: 22px;
    line-height: 1;
}
.vd-float-text strong {
    font-weight: 800;
}
@media (max-width: 600px) {
    .vd-float {
        bottom: 16px;
        right: 16px;
        padding: 11px 14px;
        font-size: 13px;
    }
    .vd-float-icon { font-size: 20px; }
    .vd-float-text { font-size: 13px; }
}

/* ===== Popup ===== */
.vd-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15,23,42,.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: vdpopFade .25s ease;
}
.vd-popup[hidden] { display: none !important; }
@keyframes vdpopFade { from { opacity: 0; } to { opacity: 1; } }
.vd-popup-card {
    background: #fff;
    max-width: 440px;
    width: 100%;
    padding: 36px 28px 28px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
    position: relative;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    animation: vdpopSlide .3s ease;
}
@keyframes vdpopSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.vd-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    border: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #1a202c;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}
.vd-popup-close:hover { background: #1a365d; color: #fff; transform: rotate(90deg); }
.vd-popup-emoji { font-size: 48px; margin-bottom: 8px; line-height: 1; }
.vd-popup-card h3 {
    margin: 4px 0 8px 0;
    color: #1a365d;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}
.vd-popup-card p {
    margin: 0 0 22px 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}
.vd-popup-card p strong { color: #d97706; }
.vd-popup-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #1a365d;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    transition: all .15s;
}
.vd-popup-btn:hover {
    background: #d97706;
    color: #fff;
    transform: translateY(-1px);
}
.vd-popup-skip {
    background: transparent;
    border: 0;
    color: #94a3b8;
    font-family: inherit;
    font-size: 13px;
    padding: 6px 12px;
    cursor: pointer;
    text-decoration: underline;
}
.vd-popup-skip:hover { color: #1a202c; }
