/* Enlace flotante "Compartir ➜" abajo a la derecha */

.ryf-share-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;

    /* estilo de texto sin fondo */
    background: transparent;
    border: none;
    box-shadow: none;

    color: #111;  /* Cambia a #fff si quieres texto blanco */
    font-size: 20px;   /* Aumentado +35% (antes 15px) */
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    cursor: pointer;
    padding: 0;
    margin: 0;

    display: inline-flex;
    align-items: center;

    transition: transform 0.15s ease, opacity 0.15s ease;
    z-index: 9999;
}

/* Hover en PC */
.ryf-share-btn:hover {
    transform: translateY(-1px);
    opacity: 0.8;
}

/* Versión móvil */
@media (max-width: 768px) {
    .ryf-share-btn {
        bottom: 16px;
        right: 16px;
        font-size: 18px;  /* +35% también */
    }
}
