.a2hs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f8f9fa;
    border-top: 1px solid #ddd;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, system-ui;
}

/* Mostrar SOLO en mobile */
@media (max-width: 768px) {
    .a2hs {
        display: block;
    }
}

/* Forzar oculto */
.a2hs.hidden {
    display: none !important;
}

/* =========================
   CONTENIDO
========================= */
.a2hs-content {
    max-width: 720px;
    margin: auto;
    padding: .9rem 1rem;
}

.a2hs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .a2hs-header strong {
        font-size: .95rem;
    }

    .a2hs-header button {
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
    }

/* =========================
   BODY
========================= */
.a2hs-body p {
    font-size: .9rem;
    margin: .5rem 0;
}

.a2hs-steps {
    padding-left: 1.2rem;
    font-size: .9rem;
    margin: .4rem 0;
}

    .a2hs-steps li {
        margin-bottom: .3rem;
    }

/* =========================
   FOOTER
========================= */
.a2hs-footer {
    text-align: right;
    margin-top: .5rem;
}

.a2hs-btn {
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: .45rem .9rem;
    border-radius: 8px;
    font-size: .85rem;
    cursor: pointer;
}



.a2hs-icon {
    font-size: 1.1rem;
    margin: 0 .2rem;
}

/* Mostrar pasos según SO */
.a2hs-step-ios {
    display: none;
}

.a2hs-step-android {
    display: none;
}

/* iOS */
@supports (-webkit-touch-callout: none) {
    .a2hs-step-ios {
        display: list-item;
    }
}

/* Android / Chrome */
@supports not (-webkit-touch-callout: none) {
    .a2hs-step-android {
        display: list-item;
    }
}
