.vdb-install-popup {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    max-width: 430px;
    margin: 0 auto;
    padding: 1rem;
    color: #28233a;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(54, 44, 88, 0.12);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(20, 14, 40, 0.28);
    opacity: 0;
    transform: translateY(24px) scale(.97);
    transition: opacity .22s ease, transform .28s cubic-bezier(.2, .8, .2, 1);
}

.vdb-install-popup--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.vdb-install-popup__top {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
}

.vdb-install-popup__icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 6px 16px rgba(91, 78, 179, .2);
}

.vdb-install-popup__copy {
    min-width: 0;
    padding-right: .2rem;
}

.vdb-install-popup__eyebrow {
    display: block;
    margin-bottom: .15rem;
    color: #6f63b4;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.vdb-install-popup__title {
    margin: 0;
    color: #29213d;
    font-size: 1rem;
    line-height: 1.2;
}

.vdb-install-popup__description {
    margin: .3rem 0 0;
    color: #6c667b;
    font-size: .8rem;
    line-height: 1.4;
}

.vdb-install-popup__close {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: #827b91;
    background: #f4f2f8;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.vdb-install-popup__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .65rem;
    margin-top: .9rem;
}

.vdb-install-popup__later,
.vdb-install-popup__install {
    min-height: 40px;
    padding: .62rem 1rem;
    border-radius: 999px;
    font: inherit;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.vdb-install-popup__later {
    border: 1px solid #e3dfeb;
    color: #6d667a;
    background: #fff;
}

.vdb-install-popup__install {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #6f63c5, #4e429d);
    box-shadow: 0 6px 16px rgba(78, 66, 157, .28);
}

.vdb-install-popup--mujer .vdb-install-popup__eyebrow {
    color: #bd4f79;
}

.vdb-install-popup--mujer .vdb-install-popup__install {
    background: linear-gradient(135deg, #e8547a, #8058ae);
    box-shadow: 0 6px 16px rgba(191, 66, 117, .28);
}

.vdb-install-popup__later:focus-visible,
.vdb-install-popup__close:focus-visible,
.vdb-install-popup__install:focus-visible {
    outline: 3px solid rgba(232, 84, 122, .5);
    outline-offset: 2px;
}

@media (min-width: 700px) {
    .vdb-install-popup { display: none !important; }
}

@media (max-width: 360px) {
    .vdb-install-popup { padding: .85rem; }
    .vdb-install-popup__icon { width: 48px; height: 48px; flex-basis: 48px; }
    .vdb-install-popup__actions { gap: .45rem; }
    .vdb-install-popup__later,
    .vdb-install-popup__install { padding-inline: .75rem; }
}